From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 405BD13881E for ; Fri, 25 Sep 2015 19:05:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AB93021C00D; Fri, 25 Sep 2015 19:05:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4FD0B21C00D for ; Fri, 25 Sep 2015 19:05:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 51D0C34070F for ; Fri, 25 Sep 2015 19:05:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5FD33189 for ; Fri, 25 Sep 2015 19:05:21 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1443207889.f132fe99279b38eae0d175c6b0f615261d26bbb2.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-event/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-event/pecl-event-1.11.1-r1.ebuild X-VCS-Directories: dev-php/pecl-event/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: f132fe99279b38eae0d175c6b0f615261d26bbb2 X-VCS-Branch: master Date: Fri, 25 Sep 2015 19:05:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 87d08b24-4ff4-43f0-97e5-5bf2304d7edf X-Archives-Hash: 71bf409455318745218f746170531edb commit: f132fe99279b38eae0d175c6b0f615261d26bbb2 Author: Michael Orlitzky gentoo org> AuthorDate: Fri Sep 25 19:04:24 2015 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Fri Sep 25 19:04:49 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f132fe99 dev-php/pecl-event: revbump to fix incorrect DOCS. Package-Manager: portage-2.2.20.1 dev-php/pecl-event/pecl-event-1.11.1-r1.ebuild | 42 ++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/dev-php/pecl-event/pecl-event-1.11.1-r1.ebuild b/dev-php/pecl-event/pecl-event-1.11.1-r1.ebuild new file mode 100644 index 0000000..5d32114 --- /dev/null +++ b/dev-php/pecl-event/pecl-event-1.11.1-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +PHP_EXT_NAME="event" +PHP_EXT_INI="yes" +PHP_EXT_ZENDEXT="no" +DOCS="README.md" + +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 +}