From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F31111395E3 for ; Mon, 28 Nov 2016 20:57:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3F09E0A72; Mon, 28 Nov 2016 20:57:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AAC4CE0A61 for ; Mon, 28 Nov 2016 20:57:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D144D3414A6 for ; Mon, 28 Nov 2016 20:57:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EFD6824AB for ; Mon, 28 Nov 2016 20:57:54 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1480366645.a241f29e3b7bc1a0d76f140de27d9df6d3863215.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-haru/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-haru/pecl-haru-1.0.4-r2.ebuild X-VCS-Directories: dev-php/pecl-haru/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: a241f29e3b7bc1a0d76f140de27d9df6d3863215 X-VCS-Branch: master Date: Mon, 28 Nov 2016 20:57:54 +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: f5f89877-ab63-42dc-aadd-2ba23c142a4c X-Archives-Hash: c7120ff7fe4cd8b64bac61226b5e1c71 commit: a241f29e3b7bc1a0d76f140de27d9df6d3863215 Author: Brian Evans gentoo org> AuthorDate: Mon Nov 28 20:40:04 2016 +0000 Commit: Brian Evans gentoo org> CommitDate: Mon Nov 28 20:57:25 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a241f29e dev-php/pecl-haru: Revbump to drop php 5.5 dependencies Package-Manager: portage-2.3.2 dev-php/pecl-haru/pecl-haru-1.0.4-r2.ebuild | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/dev-php/pecl-haru/pecl-haru-1.0.4-r2.ebuild b/dev-php/pecl-haru/pecl-haru-1.0.4-r2.ebuild new file mode 100644 index 00000000..54bd863 --- /dev/null +++ b/dev-php/pecl-haru/pecl-haru-1.0.4-r2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +USE_PHP="php5-6" + +inherit php-ext-pecl-r3 + +DESCRIPTION="An interface to libharu, a PDF generator" + +LICENSE="PHP-3.01" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="png zlib" + +DEPEND="media-libs/libharu[png?,zlib?]" +RDEPEND="${DEPEND}" + +src_configure() { + # config.m4 is broken checking paths, so we need to override it + local PHP_EXT_ECONF_ARGS=( + $(usex png '--with-png-dir=/usr' '') + $(usex zlib '--with-zlib-dir=/usr' '') + ) + + php-ext-source-r3_src_configure +}