diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2003-05-14 10:12:40 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2003-05-14 10:12:40 +0000 |
commit | 467a984ee53f420f4cd4a93122239de8acf726cb (patch) | |
tree | aedf2d20ec7969f85a3bc52526774b3adcdb5512 /dev-php | |
parent | License for use in dev-java/jdbc-oracle. (diff) | |
download | gentoo-2-467a984ee53f420f4cd4a93122239de8acf726cb.tar.gz gentoo-2-467a984ee53f420f4cd4a93122239de8acf726cb.tar.bz2 gentoo-2-467a984ee53f420f4cd4a93122239de8acf726cb.zip |
Fix for /etc/php4/lib symlink under apache2
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/mod_php/ChangeLog | 5 | ||||
-rw-r--r-- | dev-php/mod_php/Manifest | 4 | ||||
-rw-r--r-- | dev-php/mod_php/mod_php-4.3.1-r3.ebuild | 5 |
3 files changed, 9 insertions, 5 deletions
diff --git a/dev-php/mod_php/ChangeLog b/dev-php/mod_php/ChangeLog index e822fcc13e4a..26710d35d91d 100644 --- a/dev-php/mod_php/ChangeLog +++ b/dev-php/mod_php/ChangeLog @@ -1,9 +1,12 @@ # ChangeLog for dev-php/mod_php # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/mod_php/ChangeLog,v 1.63 2003/05/13 09:46:07 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/mod_php/ChangeLog,v 1.64 2003/05/14 10:12:37 robbat2 Exp $ *mod_php-4.3.1-r3 (23 Apr 2003) + 14 May 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.1-r3.ebuild: + Fix symlink for /etc/php4/lib under Apache2. Thanks to Bluesman on IRC. + 13 May 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.1-r3.ebuild: More cleanups, nearly ready for ~x86. diff --git a/dev-php/mod_php/Manifest b/dev-php/mod_php/Manifest index 009e089f919a..acb751f58044 100644 --- a/dev-php/mod_php/Manifest +++ b/dev-php/mod_php/Manifest @@ -1,9 +1,9 @@ -MD5 991fc6f963ee328e37efb3ae9ba2f9ef mod_php-4.3.1-r3.ebuild 2362 +MD5 e8814dae7dbfd92ac9789660ba2abd5d mod_php-4.3.1-r3.ebuild 2415 MD5 8a10662c67b87c1c40d3eedb598280bf mod_php-4.3.1.ebuild 8922 MD5 c99a00bf82ec9a082399ab1dd931c415 mod_php-4.3.1-r2.ebuild 9241 MD5 6de98d80b82a71ed8845884b0bd5676e mod_php-4.2.3-r2.ebuild 8071 MD5 dfc6bd16160024127fa9b0c242fc8ab5 mod_php-4.3.0-r2.ebuild 8634 -MD5 c7aed18cbd3128eec686145cf7527728 ChangeLog 14984 +MD5 aa189df444bb1bbd089070a3c6d91cb9 ChangeLog 15137 MD5 c585d6d5154fe64839f25db957301433 mod_php-4.3.1-r1.ebuild 9135 MD5 cceddd5c262e0ffef31d45b7da269851 files/mod_php.conf 148 MD5 6cf293d9a0faa0e7e5d86d9fd2d47131 files/70_mod_php.conf 329 diff --git a/dev-php/mod_php/mod_php-4.3.1-r3.ebuild b/dev-php/mod_php/mod_php-4.3.1-r3.ebuild index b9656303d643..fd416d68bf94 100644 --- a/dev-php/mod_php/mod_php-4.3.1-r3.ebuild +++ b/dev-php/mod_php/mod_php-4.3.1-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/mod_php/mod_php-4.3.1-r3.ebuild,v 1.5 2003/05/13 09:46:07 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/mod_php/mod_php-4.3.1-r3.ebuild,v 1.6 2003/05/14 10:12:37 robbat2 Exp $ inherit php eutils @@ -45,15 +45,16 @@ src_install() { cp php.ini-dist php.ini insinto /etc/php4 doins php.ini - dosym /usr/lib/apache-extramodules /etc/php4/lib if [ "`use apache2`" ] ; then + dosym /usr/lib/apache2-extramodules /etc/php4/lib exeinto /usr/lib/apache2-extramodules doexe .libs/libphp4.so insinto /etc/apache2/conf/modules.d doins ${FILESDIR}/70_mod_php.conf dosym /etc/php4/php.ini /etc/apache2/conf/php.ini else + dosym /usr/lib/apache-extramodules /etc/php4/lib exeinto /usr/lib/apache-extramodules doexe .libs/libphp4.so insinto /etc/apache/conf/addon-modules |