diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2014-11-19 18:22:38 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2014-11-19 18:22:38 +0000 |
commit | 886b2225e49d56fdcc5ff4c332a2fe14f6662b84 (patch) | |
tree | 5a6efe4149fd44e98b81c0c1b39fb58af309fa6c /dev-php | |
parent | Remove mask for app-emacs/csharp-mode. Package is fixed and won't be removed. (diff) | |
download | gentoo-2-886b2225e49d56fdcc5ff4c332a2fe14f6662b84.tar.gz gentoo-2-886b2225e49d56fdcc5ff4c332a2fe14f6662b84.tar.bz2 gentoo-2-886b2225e49d56fdcc5ff4c332a2fe14f6662b84.zip |
Version bump thanks to Ruslan Osmanov
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 09BF4F54C2BA7F3C!)
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/pecl-event/ChangeLog | 7 | ||||
-rw-r--r-- | dev-php/pecl-event/pecl-event-1.11.1.ebuild | 42 |
2 files changed, 48 insertions, 1 deletions
diff --git a/dev-php/pecl-event/ChangeLog b/dev-php/pecl-event/ChangeLog index ca5989d53ab9..54107f774bed 100644 --- a/dev-php/pecl-event/ChangeLog +++ b/dev-php/pecl-event/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-php/pecl-event # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-event/ChangeLog,v 1.5 2014/01/18 18:36:40 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-event/ChangeLog,v 1.6 2014/11/19 18:22:38 hwoarang Exp $ + +*pecl-event-1.11.1 (19 Nov 2014) + + 19 Nov 2014; Markos Chandras <hwoarang@gentoo.org> +pecl-event-1.11.1.ebuild: + Version bump thanks to Ruslan Osmanov 18 Jan 2014; Pacho Ramos <pacho@gentoo.org> pecl-event-1.8.0.ebuild: amd64 stable, bug #487120 diff --git a/dev-php/pecl-event/pecl-event-1.11.1.ebuild b/dev-php/pecl-event/pecl-event-1.11.1.ebuild new file mode 100644 index 000000000000..0aa75937020f --- /dev/null +++ b/dev-php/pecl-event/pecl-event-1.11.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-event/pecl-event-1.11.1.ebuild,v 1.1 2014/11/19 18:22:38 hwoarang Exp $ + +EAPI="5" + +PHP_EXT_NAME="event" +PHP_EXT_INI="yes" +PHP_EXT_ZENDEXT="no" +DOCS="CREDITS EXPERIMENTAL INSTALL.md README.md LICENSE" + +USE_PHP="php5-4 php5-5 php5-6" + +inherit php-ext-pecl-r2 confutils eutils + +KEYWORDS="~amd64 ~ia64 ~x86" +LICENSE="PHP-3.01" + +DESCRIPTION="PHP wrapper for libevent2" +LICENSE="PHP-3" +SLOT="0" + +DEPEND=" + >=dev-libs/libevent-2.0.2 + !dev-php/pecl-libevent + sockets? ( dev-lang/php[sockets] )" + +RDEPEND="${DEPEND}" + +IUSE="debug +extra +ssl threads +sockets examples" + +src_configure() { + my_conf="--with-event-core" + enable_extension_enable "event-debug" "debug" 0 + + enable_extension_with "event-extra" "extra" 1 + enable_extension_with "event-openssl" "ssl" 1 + enable_extension_with "event-pthreads" "threads" 0 + enable_extension_enable "event-sockets" "sockets" 1 + + php-ext-source-r2_src_configure +} |