diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2009-12-09 08:34:51 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2009-12-09 08:34:51 +0000 |
commit | 6c7df668da40565caf37b23c75175b8740876d1f (patch) | |
tree | c1d361a817e2d005f1151648142e9b3c33b398a1 /dev-php5 | |
parent | Version bump, fix switch_root issues #293178, & remove system deps (diff) | |
download | gentoo-2-6c7df668da40565caf37b23c75175b8740876d1f.tar.gz gentoo-2-6c7df668da40565caf37b23c75175b8740876d1f.tar.bz2 gentoo-2-6c7df668da40565caf37b23c75175b8740876d1f.zip |
remove blocker on ZendOptimizer wrt #258736
(Portage version: 2.2_rc55/cvs/Linux i686)
Diffstat (limited to 'dev-php5')
-rw-r--r-- | dev-php5/xcache/ChangeLog | 6 | ||||
-rw-r--r-- | dev-php5/xcache/xcache-1.2.2.ebuild | 6 | ||||
-rw-r--r-- | dev-php5/xcache/xcache-1.3.0.ebuild | 29 |
3 files changed, 21 insertions, 20 deletions
diff --git a/dev-php5/xcache/ChangeLog b/dev-php5/xcache/ChangeLog index 867d1375cb46..7027cc79b25f 100644 --- a/dev-php5/xcache/ChangeLog +++ b/dev-php5/xcache/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-php5/xcache # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/xcache/ChangeLog,v 1.17 2009/08/30 06:45:20 hollow Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php5/xcache/ChangeLog,v 1.18 2009/12/09 08:34:51 hollow Exp $ + + 09 Dec 2009; Benedikt Böhm <hollow@gentoo.org> xcache-1.2.2.ebuild, + xcache-1.3.0.ebuild: + remove blocker on ZendOptimizer wrt #258736 *xcache-1.3.0 (30 Aug 2009) diff --git a/dev-php5/xcache/xcache-1.2.2.ebuild b/dev-php5/xcache/xcache-1.2.2.ebuild index 26b6aee96782..7e845c94155f 100644 --- a/dev-php5/xcache/xcache-1.2.2.ebuild +++ b/dev-php5/xcache/xcache-1.2.2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/xcache/xcache-1.2.2.ebuild,v 1.3 2008/03/08 19:42:07 pva Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php5/xcache/xcache-1.2.2.ebuild,v 1.4 2009/12/09 08:34:51 hollow Exp $ PHP_EXT_NAME="xcache" PHP_EXT_INI="yes" @@ -21,7 +21,7 @@ IUSE="" # make test would just run php's test and as such need the full php source RESTRICT="test" -DEPEND="!dev-php5/eaccelerator !dev-php5/pecl-apc !dev-php5/ZendOptimizer" +DEPEND="!dev-php5/eaccelerator !dev-php5/pecl-apc" RDEPEND="${DEPEND}" need_php_by_category diff --git a/dev-php5/xcache/xcache-1.3.0.ebuild b/dev-php5/xcache/xcache-1.3.0.ebuild index 783ca7022cbe..491e4f2406c5 100644 --- a/dev-php5/xcache/xcache-1.3.0.ebuild +++ b/dev-php5/xcache/xcache-1.3.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/xcache/xcache-1.3.0.ebuild,v 1.1 2009/08/30 06:45:20 hollow Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php5/xcache/xcache-1.3.0.ebuild,v 1.2 2009/12/09 08:34:51 hollow Exp $ PHP_EXT_NAME="xcache" PHP_EXT_INI="yes" @@ -9,19 +9,19 @@ PHPSAPILIST="apache2 cgi" inherit php-ext-source-r1 confutils -KEYWORDS="~amd64 ~x86" - DESCRIPTION="A fast and stable PHP opcode cacher" HOMEPAGE="http://xcache.lighttpd.net/" SRC_URI="http://xcache.lighttpd.net/pub/Releases/${PV}/${P}.tar.bz2" + LICENSE="BSD" SLOT="0" +KEYWORDS="~amd64 ~x86" IUSE="" # make test would just run php's test and as such need the full php source RESTRICT="test" -DEPEND="!dev-php5/eaccelerator !dev-php5/pecl-apc !dev-php5/ZendOptimizer" +DEPEND="!dev-php5/eaccelerator !dev-php5/pecl-apc" RDEPEND="${DEPEND}" need_php_by_category @@ -49,8 +49,12 @@ src_install() { php-ext-source-r1_src_install dodoc-php AUTHORS ChangeLog NEWS README THANKS - php-ext-base-r1_addtoinifiles "auto_globals_jit" '"0"' - php-ext-base-r1_addtoinifiles "xcache.size" '"32M"' + php-ext-base-r1_addtoinifiles "xcache.admin.enable_auth" '"On"' + php-ext-base-r1_addtoinifiles "xcache.admin.user" '"admin"' + php-ext-base-r1_addtoinifiles "xcache.admin.pass" '""' + + php-ext-base-r1_addtoinifiles "xcache.cacher" '"On"' + php-ext-base-r1_addtoinifiles "xcache.size" '"64M"' php-ext-base-r1_addtoinifiles "xcache.count" '"2"' php-ext-base-r1_addtoinifiles "xcache.slots" '"8k"' php-ext-base-r1_addtoinifiles "xcache.ttl" '"0"' @@ -61,20 +65,13 @@ src_install() { php-ext-base-r1_addtoinifiles "xcache.var_ttl" '"0"' php-ext-base-r1_addtoinifiles "xcache.var_maxttl" '"0"' php-ext-base-r1_addtoinifiles "xcache.var_gc_interval" '"600"' - php-ext-base-r1_addtoinifiles "xcache.readonly_protection" '"0"' - php-ext-base-r1_addtoinifiles "xcache.shm_schema" '"mmap"' + php-ext-base-r1_addtoinifiles "xcache.readonly_protection" '"Off"' php-ext-base-r1_addtoinifiles "xcache.mmap_path" '"/dev/zero"' - php-ext-base-r1_addtoinifiles "xcache.readyonly_protection" '"Off"' - php-ext-base-r1_addtoinifiles "xcache.cacher" '"On"' - php-ext-base-r1_addtoinifiles "xcache.stat" '"On"' + php-ext-base-r1_addtoinifiles "xcache.coverager" '"Off"' php-ext-base-r1_addtoinifiles "xcache.coveragedump_directory" '""' + php-ext-base-r1_addtoinifiles "xcache.optimizer" '"Off"' - php-ext-base-r1_addtoinifiles "xcache.admin.enable_auth" '"1"' - php-ext-base-r1_addtoinifiles "xcache.admin.user" '"m0o"' - php-ext-base-r1_addtoinifiles "xcache.admin.pass" '""' - php-ext-base-r1_addtoinifiles "xcache.test" '"Off"' - php-ext-base-r1_addtoinifiles "xcache.experimental" '"Off"' insinto "${PHP_EXT_SHARED_DIR}" doins Decompiler.class.php |