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 C6BDE138334 for ; Wed, 19 Jun 2019 17:20:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F04F8E08BE; Wed, 19 Jun 2019 17:20:21 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 D76D5E08BE for ; Wed, 19 Jun 2019 17:20:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 36B5C3464F2 for ; Wed, 19 Jun 2019 17:20:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA49B471 for ; Wed, 19 Jun 2019 17:20:08 +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: <1560964787.f57ba45625fd92e45a2afbdd1eb4d188cd265a69.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-stomp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-stomp/pecl-stomp-2.0.2.ebuild X-VCS-Directories: dev-php/pecl-stomp/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: f57ba45625fd92e45a2afbdd1eb4d188cd265a69 X-VCS-Branch: master Date: Wed, 19 Jun 2019 17:20:08 +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: ea11a4d6-15df-4b3e-83fe-3350fe441b20 X-Archives-Hash: c4200243b43ee58e9894427847230ea7 commit: f57ba45625fd92e45a2afbdd1eb4d188cd265a69 Author: Brian Evans gentoo org> AuthorDate: Wed Jun 19 17:19:47 2019 +0000 Commit: Brian Evans gentoo org> CommitDate: Wed Jun 19 17:19:47 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f57ba456 dev-php/pecl-stomp: Fix build error finding OpenSSL Closes: https://bugs.gentoo.org/688360 Package-Manager: Portage-2.3.67, Repoman-2.3.14 Signed-off-by: Brian Evans gentoo.org> dev-php/pecl-stomp/pecl-stomp-2.0.2.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-php/pecl-stomp/pecl-stomp-2.0.2.ebuild b/dev-php/pecl-stomp/pecl-stomp-2.0.2.ebuild index d808c2c1b91..99522e6709c 100644 --- a/dev-php/pecl-stomp/pecl-stomp-2.0.2.ebuild +++ b/dev-php/pecl-stomp/pecl-stomp-2.0.2.ebuild @@ -27,6 +27,8 @@ DEPEND="${DEPEND} RDEPEND="${DEPEND} php_targets_php5-6? ( dev-php/pecl-stomp:0 )" +DEPEND="virtual/pkgconfig ${DEPEND}" + src_prepare() { if use php_targets_php7-1 || use php_targets_php7-2 || use php_targets_php7-3 ; then php-ext-source-r3_src_prepare @@ -39,7 +41,7 @@ src_configure() { if use php_targets_php7-1 || use php_targets_php7-2 || use php_targets_php7-3 ; then local PHP_EXT_ECONF_ARGS=( --enable-stomp - --with-openssl-dir=$(usex ssl "${EPREFIX}/usr") + --with-openssl-dir=$(usex ssl yes no) ) php-ext-source-r3_src_configure fi