diff options
author | Luca Longinotti <chtekk@gentoo.org> | 2006-07-14 16:02:36 +0000 |
---|---|---|
committer | Luca Longinotti <chtekk@gentoo.org> | 2006-07-14 16:02:36 +0000 |
commit | a0a6615cd04216256d2f49b7c3f669ff5ed5ff58 (patch) | |
tree | af56a54ac3e686e735483bde275c0c97af1d003e /eclass/php-common-r1.eclass | |
parent | ppc stable, bug #139612 (diff) | |
download | historical-a0a6615cd04216256d2f49b7c3f669ff5ed5ff58.tar.gz historical-a0a6615cd04216256d2f49b7c3f669ff5ed5ff58.tar.bz2 historical-a0a6615cd04216256d2f49b7c3f669ff5ed5ff58.zip |
Update PHP eclasses, better ebuild/eclass separation, accomodate for new features.
Diffstat (limited to 'eclass/php-common-r1.eclass')
-rw-r--r-- | eclass/php-common-r1.eclass | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/eclass/php-common-r1.eclass b/eclass/php-common-r1.eclass index fa31c7749fb4..6d7794c0b35d 100644 --- a/eclass/php-common-r1.eclass +++ b/eclass/php-common-r1.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/php-common-r1.eclass,v 1.7 2006/04/18 12:21:14 chtekk Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php-common-r1.eclass,v 1.8 2006/07/14 16:02:36 chtekk Exp $ # ######################################################################## # @@ -115,16 +115,18 @@ php_install_java() { # We put these into /usr/lib so that they cannot conflict with # other versions of PHP (e.g. PHP 4 & PHP 5) insinto "${PHPEXTDIR}" + + einfo "Installing PHP java extension" + doins "modules/java.so" + + einfo "Creating PHP java extension symlink" + dosym "${PHPEXTDIR}/java.so" "${PHPEXTDIR}/libphp_java.so" + einfo "Installing JAR for PHP" doins "ext/java/php_java.jar" einfo "Installing Java test page" newins "ext/java/except.php" "java-test.php" - - einfo "Installing Java extension for PHP" - doins "modules/java.so" - - dosym "${PHPEXTDIR}/java.so" "${PHPEXTDIR}/libphp_java.so" } php_install_java_inifile() { |