diff options
author | Ole Markus With <olemarkus@gentoo.org> | 2014-09-28 12:28:12 +0000 |
---|---|---|
committer | Ole Markus With <olemarkus@gentoo.org> | 2014-09-28 12:28:12 +0000 |
commit | 82a9775218fbd7aa975d7540b6d2c86306c9b32b (patch) | |
tree | fcbcd83be6fbab36db875fc28bb821848a550288 /dev-php/pecl-memcached | |
parent | Help co-maintaining this as more and more gnome apps need this (diff) | |
download | gentoo-2-82a9775218fbd7aa975d7540b6d2c86306c9b32b.tar.gz gentoo-2-82a9775218fbd7aa975d7540b6d2c86306c9b32b.tar.bz2 gentoo-2-82a9775218fbd7aa975d7540b6d2c86306c9b32b.zip |
Version bump
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key C4A92BF5)
Diffstat (limited to 'dev-php/pecl-memcached')
-rw-r--r-- | dev-php/pecl-memcached/ChangeLog | 10 | ||||
-rw-r--r-- | dev-php/pecl-memcached/pecl-memcached-2.2.0.ebuild | 48 |
2 files changed, 56 insertions, 2 deletions
diff --git a/dev-php/pecl-memcached/ChangeLog b/dev-php/pecl-memcached/ChangeLog index 7ba4794006a9..8293f8a05717 100644 --- a/dev-php/pecl-memcached/ChangeLog +++ b/dev-php/pecl-memcached/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-php/pecl-memcached -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-memcached/ChangeLog,v 1.14 2013/12/16 08:12:13 robbat2 Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-memcached/ChangeLog,v 1.15 2014/09/28 12:28:12 olemarkus Exp $ + +*pecl-memcached-2.2.0 (28 Sep 2014) + + 28 Sep 2014; Ole Markus With <olemarkus@gentoo.org> + +pecl-memcached-2.2.0.ebuild: + Version bump *pecl-memcached-2.1.0-r3 (16 Dec 2013) diff --git a/dev-php/pecl-memcached/pecl-memcached-2.2.0.ebuild b/dev-php/pecl-memcached/pecl-memcached-2.2.0.ebuild new file mode 100644 index 000000000000..6ff6cc139d04 --- /dev/null +++ b/dev-php/pecl-memcached/pecl-memcached-2.2.0.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-memcached/pecl-memcached-2.2.0.ebuild,v 1.1 2014/09/28 12:28:12 olemarkus Exp $ + +EAPI="4" +PHP_EXT_NAME="memcached" +PHP_EXT_INI="yes" +PHP_EXT_ZENDEXT="no" +DOCS="README" + +USE_PHP="php5-5 php5-6 php5-4" + +inherit base php-ext-pecl-r2 + +KEYWORDS="~amd64 ~x86" + +DESCRIPTION="PHP extension for interfacing with memcached via libmemcached library" +LICENSE="PHP-3" +SLOT="0" +IUSE="+session igbinary json sasl" + +DEPEND="|| ( >=dev-libs/libmemcached-1.0.14 >=dev-libs/libmemcached-1.0[sasl?] ) + sys-libs/zlib + dev-lang/php[session?,json?] + igbinary? ( dev-php/igbinary[php_targets_php5-5?,php_targets_php5-4?,php_targets_php5-3?] )" +RDEPEND="${DEPEND}" + +src_prepare() { + local slot orig_s="${S}" + for slot in $(php_get_slots); do + export S="${WORKDIR}/${slot}" + cd "${S}" + base_src_prepare + done + export S="${orig_s}" + cd "${S}" + php-ext-source-r2_src_prepare +} + +src_configure() { + my_conf="--enable-memcached + $(use_enable session memcached-session) + $(use_enable sasl memcached-sasl) + $(use_enable json memcached-json) + $(use_enable igbinary memcached-igbinary)" + + php-ext-source-r2_src_configure +} |