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 DCAE2139085 for ; Fri, 6 Jan 2017 05:00:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EBB62E0D95; Fri, 6 Jan 2017 05:00:34 +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 BF804E0D95 for ; Fri, 6 Jan 2017 05:00:34 +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 7FC863413B7 for ; Fri, 6 Jan 2017 05:00:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D2B22601 for ; Fri, 6 Jan 2017 05:00:32 +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: <1483678802.f0345eba426341ea384cf2a5fbb2edcd39bef0b7.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-mongodb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/pecl-mongodb/pecl-mongodb-1.1.8.ebuild X-VCS-Directories: dev-php/pecl-mongodb/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: f0345eba426341ea384cf2a5fbb2edcd39bef0b7 X-VCS-Branch: master Date: Fri, 6 Jan 2017 05:00: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-Archives-Salt: 6cfbab49-12f8-42e4-a9d1-2c0adb2fa2c1 X-Archives-Hash: 39bf0b50ef34f10be1b1e2534b54af26 commit: f0345eba426341ea384cf2a5fbb2edcd39bef0b7 Author: Michael Orlitzky gentoo org> AuthorDate: Fri Jan 6 05:00:02 2017 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Fri Jan 6 05:00:02 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0345eba dev-php/pecl-mongodb: minor ebuild cleanup. Package-Manager: portage-2.3.0 dev-php/pecl-mongodb/pecl-mongodb-1.1.8.ebuild | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/dev-php/pecl-mongodb/pecl-mongodb-1.1.8.ebuild b/dev-php/pecl-mongodb/pecl-mongodb-1.1.8.ebuild index 9c0db98..37965d8 100644 --- a/dev-php/pecl-mongodb/pecl-mongodb-1.1.8.ebuild +++ b/dev-php/pecl-mongodb/pecl-mongodb-1.1.8.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -31,7 +31,12 @@ RDEPEND=" DEPEND="${RDEPEND} virtual/pkgconfig" src_configure() { - local PHP_EXT_ECONF_ARGS=( --enable-mongodb --with-libbson --with-libmongoc ) - PHP_EXT_ECONF_ARGS+=( --with-pcre-dir=$(usex pcre yes no) --with-mongodb-sasl=$(usex sasl yes no) ) + local PHP_EXT_ECONF_ARGS=( + --enable-mongodb + --with-libbson + --with-libmongoc + --with-pcre-dir=$(usex pcre) + --with-mongodb-sasl=$(usex sasl) + ) php-ext-source-r3_src_configure }