diff options
author | Donny Davies <woodchip@gentoo.org> | 2002-08-27 01:06:19 +0000 |
---|---|---|
committer | Donny Davies <woodchip@gentoo.org> | 2002-08-27 01:06:19 +0000 |
commit | 16065214e3599671b4cdeeacc3420f632fb15c90 (patch) | |
tree | 0673d8b9e3aaa24e4408a9a26a00f15852d2b2b8 /dev-php | |
parent | update - gqmpeg-0.17.0.ebuild (diff) | |
download | gentoo-2-16065214e3599671b4cdeeacc3420f632fb15c90.tar.gz gentoo-2-16065214e3599671b4cdeeacc3420f632fb15c90.tar.bz2 gentoo-2-16065214e3599671b4cdeeacc3420f632fb15c90.zip |
little bitta pkg_postinst cleanup
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/mod_php/ChangeLog | 6 | ||||
-rw-r--r-- | dev-php/mod_php/mod_php-4.2.2-r1.ebuild | 17 |
2 files changed, 15 insertions, 8 deletions
diff --git a/dev-php/mod_php/ChangeLog b/dev-php/mod_php/ChangeLog index 9a19413cbe87..1f25b88fe6f3 100644 --- a/dev-php/mod_php/ChangeLog +++ b/dev-php/mod_php/ChangeLog @@ -1,9 +1,13 @@ # ChangeLog for dev-lang/php # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-php/mod_php/ChangeLog,v 1.11 2002/08/26 20:15:19 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/mod_php/ChangeLog,v 1.12 2002/08/27 01:06:19 woodchip Exp $ *mod_php-4.2.2-r1 (18 Aug 2002) + 26 Aug 2002; Donny Davies <woodchip@gentoo.org> mod_php-4.2.2-r1.ebuild : + + Clarified/cleaned pkg_postinst, cosmetic-only fix. + 26 Aug 2002; Ryan Phillips <rphillips@gentoo.org> mod_php-4.2.2-r1.ebuild : Added support for multibyte strings. Fixes #6747 diff --git a/dev-php/mod_php/mod_php-4.2.2-r1.ebuild b/dev-php/mod_php/mod_php-4.2.2-r1.ebuild index ecc8a583dcff..fef31d134f2c 100644 --- a/dev-php/mod_php/mod_php-4.2.2-r1.ebuild +++ b/dev-php/mod_php/mod_php-4.2.2-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 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.2.2-r1.ebuild,v 1.2 2002/08/26 20:15:19 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/mod_php/mod_php-4.2.2-r1.ebuild,v 1.3 2002/08/27 01:06:19 woodchip Exp $ MY_P=php-${PV} S=${WORKDIR}/${MY_P} @@ -206,14 +206,18 @@ src_install() { pkg_postinst() { einfo - einfo "Execute ebuild /var/db/pkg/${CATEGORY}/${PF}/${PF}.ebuild config" - einfo "to have your apache.conf auto-updated for use with this module." - einfo "You should then edit your /etc/conf.d/apache file to suit." + einfo "To have Apache run php programs, please do the following:" + einfo "1. Execute the command:" + einfo " \"ebuild /var/db/pkg/dev-php/${PF}/${PF}.ebuild config\"" + einfo "2. Edit /etc/conf.d/apache and add \"-D PHP4\"" + einfo + einfo "That will add the php mime types in your apache.conf file" + einfo "automagically and setup Apache to load php when it starts." einfo einfo "Please remeber:" einfo "This install of PHP has set register_globals = On (lower security)" - einfo "Please read http://www.php.net/release_4_1_2.php (Section: External variables)" - einfo "for further informations." + einfo "Please read http://www.php.net/release_4_1_2.php" + einfo "(Section: External variables) for further information." einfo } @@ -224,4 +228,3 @@ pkg_config() { before=perl define=PHP4 addconf=conf/addon-modules/mod_php.conf :; } - |