diff options
author | Sebastian Bergmann <sebastian@gentoo.org> | 2005-07-12 17:12:30 +0000 |
---|---|---|
committer | Sebastian Bergmann <sebastian@gentoo.org> | 2005-07-12 17:12:30 +0000 |
commit | 7e9911c85d0af481e2a7df71db33970db6f5436a (patch) | |
tree | 746c543ca601f26f27d06dfa1b4acbb73219d946 /dev-php | |
parent | Version bump; 2.0.14 stable on x86,sparc. Tidy old ebuilds. (diff) | |
download | gentoo-2-7e9911c85d0af481e2a7df71db33970db6f5436a.tar.gz gentoo-2-7e9911c85d0af481e2a7df71db33970db6f5436a.tar.bz2 gentoo-2-7e9911c85d0af481e2a7df71db33970db6f5436a.zip |
Fix bug 98276.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/eaccelerator/ChangeLog | 6 | ||||
-rw-r--r-- | dev-php/eaccelerator/eaccelerator-0.9.3-r1.ebuild | 21 |
2 files changed, 16 insertions, 11 deletions
diff --git a/dev-php/eaccelerator/ChangeLog b/dev-php/eaccelerator/ChangeLog index a7def265f4d4..0c622d314a17 100644 --- a/dev-php/eaccelerator/ChangeLog +++ b/dev-php/eaccelerator/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-php/eaccelerator # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/eaccelerator/ChangeLog,v 1.14 2005/07/02 05:42:10 sebastian Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/eaccelerator/ChangeLog,v 1.15 2005/07/12 17:12:30 sebastian Exp $ + + 12 Jul 2005; Sebastian Bergmann <sebastian@gentoo.org> + eaccelerator-0.9.3-r1.ebuild: + Fix bug 98276. *eaccelerator-0.9.3-r1 (02 Jul 2005) diff --git a/dev-php/eaccelerator/eaccelerator-0.9.3-r1.ebuild b/dev-php/eaccelerator/eaccelerator-0.9.3-r1.ebuild index 547d8c84a47a..8c6d11df5c14 100644 --- a/dev-php/eaccelerator/eaccelerator-0.9.3-r1.ebuild +++ b/dev-php/eaccelerator/eaccelerator-0.9.3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/eaccelerator/eaccelerator-0.9.3-r1.ebuild,v 1.1 2005/07/02 05:42:10 sebastian Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/eaccelerator/eaccelerator-0.9.3-r1.ebuild,v 1.2 2005/07/12 17:12:30 sebastian Exp $ PHP_EXT_NAME="eaccelerator" PHP_EXT_ZENDEXT="yes" @@ -87,18 +87,19 @@ src_install() { php-ext-base_addtoinifiles "eaccelerator.keys" '"shm_and_disk"' php-ext-base_addtoinifiles "eaccelerator.sessions" '"shm_and_disk"' php-ext-base_addtoinifiles "eaccelerator.content" '"shm_and_disk"' - php-ext-base_addtoinifiles "eaccelerator.admin.name" '"yourusername"' - php-ext-base_addtoinifiles "eaccelerator.admin.password" '"yourpassword"' + php-ext-base_addtoinifiles ";eaccelerator.admin.name" '"username"' + php-ext-base_addtoinifiles ";eaccelerator.admin.password" '"hashed_password"' } pkg_postinst () { - einfo "You need to restart Apache to activate eAccelerator" + einfo "You need to restart your webserver to activate eAccelerator." einfo - einfo 'A web interface is available to manage the eAccelerator cache.' - einfo 'Copy /usr/share/eaccelerator/*.php to somewhere' - einfo 'where your web server can see it.' + einfo "A web interface is available to manage the eAccelerator cache." + einfo "Copy /usr/share/eaccelerator/*.php to somewhere" + einfo "where your web server can see it. See the documentation on how" + einfo "to secure this web interface with authentication." einfo - einfo 'A PHP script encoder is available to encode your PHP scripts.' - einfo 'The encoder is available as /usr/share/eaccelerator/encoder.php' - einfo 'The encoded file format is not yet considered stable' + einfo "A PHP script encoder is available to encode your PHP scripts." + einfo "The encoder is available as /usr/share/eaccelerator/encoder.php" + einfo "The encoded file format is not yet considered stable." } |