summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gilbert <floppym@gentoo.org>2012-03-16 16:36:03 +0000
committerMike Gilbert <floppym@gentoo.org>2012-03-16 16:36:03 +0000
commit3bb424a8fc40c535f56b59a8ae379cdc5b0849a6 (patch)
treedc0f99562484e7fdedaff44203a2ef15492d6265 /www-apps/davical/files/inc_path.patch
parentdev-python/factory_boy: Switch to EAPI=4 for dev-python/factory_boy, thanks t... (diff)
downloadsunrise-3bb424a8fc40c535f56b59a8ae379cdc5b0849a6.tar.gz
sunrise-3bb424a8fc40c535f56b59a8ae379cdc5b0849a6.tar.bz2
sunrise-3bb424a8fc40c535f56b59a8ae379cdc5b0849a6.zip
www-apps/davical: Moved to gentoo-x86 by patrick as a proxy.
svn path=/sunrise/; revision=12808
Diffstat (limited to 'www-apps/davical/files/inc_path.patch')
-rw-r--r--www-apps/davical/files/inc_path.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/www-apps/davical/files/inc_path.patch b/www-apps/davical/files/inc_path.patch
deleted file mode 100644
index 2230249df..000000000
--- a/www-apps/davical/files/inc_path.patch
+++ /dev/null
@@ -1,28 +0,0 @@
---- htdocs/always.php.orig 2012-01-05 21:28:16.382878446 +0100
-+++ htdocs/always.php 2012-01-05 21:30:06.828431957 +0100
-@@ -48,7 +48,7 @@
- // $c->default_locale = array('es_MX', 'es_AR', 'es', 'pt'); // An array of locales to try, or just a single locale
- // $c->local_tzid = 'Pacific/Auckland'; // Perhaps we should read from /etc/timezone - I wonder how standard that is?
- $c->default_locale = 'en';
--$c->locale_path = '../locale';
-+$c->locale_path = '../../davical/locale';
- $c->base_url = preg_replace('#/[^/]+\.php.*$#', '', $_SERVER['SCRIPT_NAME']);
- $c->base_directory = preg_replace('#/[^/]*$#', '', $_SERVER['DOCUMENT_ROOT']);
- $c->default_privileges = array('read-free-busy', 'schedule-deliver');
-@@ -80,6 +80,7 @@
- '../../awl/inc'
- , '/usr/share/awl/inc' // Where it ends up on Debian
- , '/usr/share/php/awl/inc' // Fedora's standard for PHP libraries
-+ , '/usr/share/php5/awl/inc' // Gentoo's standard for PHP5 libraries
- , '/usr/local/share/awl/inc'
- );
- foreach( $try_paths AS $awl_include_path ) {
-@@ -95,7 +96,7 @@
- }
-
- // Ensure that ../inc is in our included paths as early as possible
--set_include_path( '../inc'. PATH_SEPARATOR. get_include_path());
-+set_include_path( '../../davical/inc'. PATH_SEPARATOR. get_include_path());
-
-
- /** We actually discovered this and worked around it earlier, but we can't log it until the utilties are loaded */