diff options
author | Sebastian Bergmann <sebastian@gentoo.org> | 2006-10-11 14:02:16 +0000 |
---|---|---|
committer | Sebastian Bergmann <sebastian@gentoo.org> | 2006-10-11 14:02:16 +0000 |
commit | 4c5bcd260879c637e853b790fd3c0b8af8e9fb54 (patch) | |
tree | e26f63bde185b989d4a03b1555c143b59224b001 /dev-php4 | |
parent | Version bump, remove release candidate. (diff) | |
download | historical-4c5bcd260879c637e853b790fd3c0b8af8e9fb54.tar.gz historical-4c5bcd260879c637e853b790fd3c0b8af8e9fb54.tar.bz2 historical-4c5bcd260879c637e853b790fd3c0b8af8e9fb54.zip |
Version bump, remove release candidate.
Package-Manager: portage-2.1.2_pre2-r8
Diffstat (limited to 'dev-php4')
-rw-r--r-- | dev-php4/eaccelerator/ChangeLog | 8 | ||||
-rw-r--r-- | dev-php4/eaccelerator/eaccelerator-0.9.5.ebuild | 101 | ||||
-rw-r--r-- | dev-php4/eaccelerator/files/digest-eaccelerator-0.9.5 | 3 |
3 files changed, 111 insertions, 1 deletions
diff --git a/dev-php4/eaccelerator/ChangeLog b/dev-php4/eaccelerator/ChangeLog index 3e56d86137ba..33336925374e 100644 --- a/dev-php4/eaccelerator/ChangeLog +++ b/dev-php4/eaccelerator/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-php4/eaccelerator # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php4/eaccelerator/ChangeLog,v 1.12 2006/09/29 13:46:48 sebastian Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php4/eaccelerator/ChangeLog,v 1.13 2006/10/11 14:02:16 sebastian Exp $ + +*eaccelerator-0.9.5 (11 Oct 2006) + + 11 Oct 2006; Sebastian Bergmann <sebastian@gentoo.org> + -eaccelerator-0.9.5_rc1.ebuild, +eaccelerator-0.9.5.ebuild: + Version bump, remove release candidate. 29 Sep 2006; Sebastian Bergmann <sebastian@gentoo.org> -eaccelerator-0.9.3.ebuild, -eaccelerator-0.9.4.ebuild: diff --git a/dev-php4/eaccelerator/eaccelerator-0.9.5.ebuild b/dev-php4/eaccelerator/eaccelerator-0.9.5.ebuild new file mode 100644 index 000000000000..2039aa8d40e3 --- /dev/null +++ b/dev-php4/eaccelerator/eaccelerator-0.9.5.ebuild @@ -0,0 +1,101 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php4/eaccelerator/eaccelerator-0.9.5.ebuild,v 1.1 2006/10/11 14:02:16 sebastian Exp $ + +PHP_EXT_NAME="eaccelerator" +PHP_EXT_INI="yes" +PHP_EXT_ZENDEXT="yes" + +[[ -z "${EACCELERATOR_CACHEDIR}" ]] && EACCELERATOR_CACHEDIR="/var/cache/eaccelerator" + +inherit php-ext-source-r1 + +KEYWORDS="~amd64 ~ppc64 ~x86" +DESCRIPTION="A PHP Accelerator & Encoder." +HOMEPAGE="http://www.eaccelerator.net/" +SRC_URI="mirror://sourceforge/eaccelerator/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +IUSE="contentcache disassembler inode session sharedmem" + +DEPEND="${DEPEND} + !dev-php4/pecl-apc" + +# Webserver user and group, here for Apache. +HTTPD_USER="apache" +HTTPD_GROUP="apache" + +need_php_by_category + +pkg_setup() { + has_php + + require_php_sapi_from cgi apache apache2 + + if use session ; then + require_php_with_use session zlib + else + require_php_with_use zlib + fi +} + +src_compile() { + has_php + + my_conf="--enable-eaccelerator=shared" + + use contentcache && my_conf="${my_conf} --with-eaccelerator-content-caching" + use disassembler && my_conf="${my_conf} --with-eaccelerator-disassembler" + use session && my_conf="${my_conf} --with-eaccelerator-sessions" + use sharedmem && my_conf="${my_conf} --with-eaccelerator-shared-memory" + use !inode && my_conf="${my_conf} --without-eaccelerator-use-inode" + + php-ext-source-r1_src_compile +} + +src_install() { + php-ext-source-r1_src_install + + keepdir "${EACCELERATOR_CACHEDIR}" + fowners ${HTTPD_USER}:${HTTPD_GROUP} "${EACCELERATOR_CACHEDIR}" + fperms 750 "${EACCELERATOR_CACHEDIR}" + + insinto "/usr/share/${PN}" + doins doc/php/* + dodoc-php AUTHORS ChangeLog COPYING NEWS README README.eLoader + + php-ext-base-r1_addtoinifiles "eaccelerator.shm_size" '"28"' + php-ext-base-r1_addtoinifiles "eaccelerator.cache_dir" "\"${EACCELERATOR_CACHEDIR}\"" + php-ext-base-r1_addtoinifiles "eaccelerator.enable" '"1"' + php-ext-base-r1_addtoinifiles "eaccelerator.optimizer" '"1"' + php-ext-base-r1_addtoinifiles "eaccelerator.check_mtime" '"1"' + php-ext-base-r1_addtoinifiles "eaccelerator.debug" '"0"' + php-ext-base-r1_addtoinifiles "eaccelerator.filter" '""' + php-ext-base-r1_addtoinifiles "eaccelerator.shm_max" '"0"' + php-ext-base-r1_addtoinifiles "eaccelerator.shm_ttl" '"0"' + php-ext-base-r1_addtoinifiles "eaccelerator.shm_prune_period" '"0"' + php-ext-base-r1_addtoinifiles "eaccelerator.shm_only" '"0"' + php-ext-base-r1_addtoinifiles "eaccelerator.compress" '"1"' + php-ext-base-r1_addtoinifiles "eaccelerator.compress_level" '"9"' + php-ext-base-r1_addtoinifiles "eaccelerator.keys" '"shm_and_disk"' + php-ext-base-r1_addtoinifiles "eaccelerator.sessions" '"shm_and_disk"' + php-ext-base-r1_addtoinifiles "eaccelerator.content" '"shm_and_disk"' + php-ext-base-r1_addtoinifiles ";eaccelerator.allowed_admin_path" '"/path/where/admin/files/shall/be/allowed"' +} + +pkg_postinst() { + has_php + + # You only need to restart the webserver if you're using mod_php. + if built_with_use =${PHP_PKG} apache || built_with_use =${PHP_PKG} apache2 ; then + einfo + einfo "You need to restart your Apache webserver to activate eAccelerator." + einfo + fi + + einfo + einfo "Please see the files in /usr/share/${PN} for some examples" + einfo "and information on how to use the functions that" + einfo "eAccelerator adds to PHP." + einfo +} diff --git a/dev-php4/eaccelerator/files/digest-eaccelerator-0.9.5 b/dev-php4/eaccelerator/files/digest-eaccelerator-0.9.5 new file mode 100644 index 000000000000..4ac966e128b1 --- /dev/null +++ b/dev-php4/eaccelerator/files/digest-eaccelerator-0.9.5 @@ -0,0 +1,3 @@ +MD5 dad54af67488b83a2af6e30f661f613b eaccelerator-0.9.5.tar.bz2 121791 +RMD160 3c3e6acfa53113581c52c1c70420059ace9346ce eaccelerator-0.9.5.tar.bz2 121791 +SHA256 9118cda6f7a8013bb22621304f783ecb629fcc9c556f182e3caf0913dc7294cf eaccelerator-0.9.5.tar.bz2 121791 |