diff options
author | Ole Markus With <olemarkus@gentoo.org> | 2012-02-09 17:25:47 +0000 |
---|---|---|
committer | Ole Markus With <olemarkus@gentoo.org> | 2012-02-09 17:25:47 +0000 |
commit | a17c77ba584038313e83ea7e0f800a25bf8b0c0e (patch) | |
tree | 6cbba1e66d9ed6ed30f4680116fcfc5cf3efbf0b /dev-php/pecl-libevent | |
parent | Tweak libusb-1 patch to fix runtime misbehavior. (diff) | |
download | gentoo-2-a17c77ba584038313e83ea7e0f800a25bf8b0c0e.tar.gz gentoo-2-a17c77ba584038313e83ea7e0f800a25bf8b0c0e.tar.bz2 gentoo-2-a17c77ba584038313e83ea7e0f800a25bf8b0c0e.zip |
Added initial ebuild for PHP libevent wrapper
(Portage version: 2.1.10.41/cvs/Linux x86_64)
Diffstat (limited to 'dev-php/pecl-libevent')
-rw-r--r-- | dev-php/pecl-libevent/ChangeLog | 10 | ||||
-rw-r--r-- | dev-php/pecl-libevent/metadata.xml | 10 | ||||
-rw-r--r-- | dev-php/pecl-libevent/pecl-libevent-0.0.4.ebuild | 21 |
3 files changed, 41 insertions, 0 deletions
diff --git a/dev-php/pecl-libevent/ChangeLog b/dev-php/pecl-libevent/ChangeLog new file mode 100644 index 000000000000..4153b40fa087 --- /dev/null +++ b/dev-php/pecl-libevent/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-php/pecl-libevent +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-libevent/ChangeLog,v 1.1 2012/02/09 17:25:47 olemarkus Exp $ + +*pecl-libevent-0.0.4 (09 Feb 2012) + + 09 Feb 2012; Ole Markus With <olemarkus@gentoo.org> +metadata.xml, + +pecl-libevent-0.0.4.ebuild: + Added initial ebuild for PHP libevent wrapper + diff --git a/dev-php/pecl-libevent/metadata.xml b/dev-php/pecl-libevent/metadata.xml new file mode 100644 index 000000000000..35fcff406276 --- /dev/null +++ b/dev-php/pecl-libevent/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>php</herd> +<maintainer> +<email>olemarkus@gentoo.org</email> +<name>Ole Markus With</name> +</maintainer> +</pkgmetadata> + diff --git a/dev-php/pecl-libevent/pecl-libevent-0.0.4.ebuild b/dev-php/pecl-libevent/pecl-libevent-0.0.4.ebuild new file mode 100644 index 000000000000..f2fae434f3a6 --- /dev/null +++ b/dev-php/pecl-libevent/pecl-libevent-0.0.4.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-libevent/pecl-libevent-0.0.4.ebuild,v 1.1 2012/02/09 17:25:47 olemarkus Exp $ + +EAPI=4 +PHP_EXT_NAME="libevent" +PHP_EXT_INI="yes" +PHP_EXT_ZENDEXT="no" + +USE_PHP="php5-3 php5-4" +inherit php-ext-pecl-r2 + +KEYWORDS="~amd64 ~x86" + +DESCRIPTION="PHP wrapper for libevent" +LICENSE="PHP-3" +SLOT="0" +IUSE="" + +DEPEND=">=dev-libs/libevent-1.4.0" +RDEPEND="${DEPEND}" |