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 BAA85138334 for ; Wed, 12 Jun 2019 12:50:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0F08E09A1; Wed, 12 Jun 2019 12:50:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 86708E09B1 for ; Wed, 12 Jun 2019 12:50:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F24D2345F3C for ; Wed, 12 Jun 2019 12:50:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 00660608 for ; Wed, 12 Jun 2019 12:50:32 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1560343820.09861985306c4122c5b8e2f2a9d2c7c621f420ba.asturm@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-r3.ebuild X-VCS-Directories: dev-php/pecl-haru/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 09861985306c4122c5b8e2f2a9d2c7c621f420ba X-VCS-Branch: master Date: Wed, 12 Jun 2019 12:50:32 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fc88f991-4fb1-4ef8-8e3a-1efc9bca1e09 X-Archives-Hash: 4aba0b21d501fe52b7f8ecdaa322b52e commit: 09861985306c4122c5b8e2f2a9d2c7c621f420ba Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Jun 12 12:49:37 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Jun 12 12:50:20 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09861985 dev-php/pecl-haru: Drop USE png, zlib media-libs/libharu-2.3.0-r2 lost these flags for some reason. Package-Manager: Portage-2.3.67, Repoman-2.3.14 RepoMan-Options: --force Signed-off-by: Andreas Sturmlechner gentoo.org> dev-php/pecl-haru/pecl-haru-1.0.4-r3.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dev-php/pecl-haru/pecl-haru-1.0.4-r3.ebuild b/dev-php/pecl-haru/pecl-haru-1.0.4-r3.ebuild new file mode 100644 index 00000000000..44313c4831b --- /dev/null +++ b/dev-php/pecl-haru/pecl-haru-1.0.4-r3.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +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="" + +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=( + --with-png-dir=/usr + --with-zlib-dir=/usr + ) + + php-ext-source-r3_src_configure +}