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 9822D138332 for ; Mon, 19 Feb 2018 10:17:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FC6AE0AF8; Mon, 19 Feb 2018 10:17:23 +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 7B519E0AD0 for ; Mon, 19 Feb 2018 10:17:23 +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 C7D00335C04 for ; Mon, 19 Feb 2018 10:17:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 428B4215 for ; Mon, 19 Feb 2018 10:17:20 +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: <1519035424.aaa83777f168cbf2115f660bdda0afc973b46ebf.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libdc1394/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libdc1394/libdc1394-2.2.5-r1.ebuild X-VCS-Directories: media-libs/libdc1394/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: aaa83777f168cbf2115f660bdda0afc973b46ebf X-VCS-Branch: master Date: Mon, 19 Feb 2018 10:17:20 +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: 568b6e3e-67db-4ed5-bd04-a29de51f711d X-Archives-Hash: a465fc14cd998a90575ec629dcd2f80c commit: aaa83777f168cbf2115f660bdda0afc973b46ebf Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Feb 18 22:37:38 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Feb 19 10:17:04 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaa83777 media-libs/libdc1394: Cleanup src_configure, use myeconfargs array Package-Manager: Portage-2.3.24, Repoman-2.3.6 media-libs/libdc1394/libdc1394-2.2.5-r1.ebuild | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/media-libs/libdc1394/libdc1394-2.2.5-r1.ebuild b/media-libs/libdc1394/libdc1394-2.2.5-r1.ebuild index 100614100ce..2d692ec33d7 100644 --- a/media-libs/libdc1394/libdc1394-2.2.5-r1.ebuild +++ b/media-libs/libdc1394/libdc1394-2.2.5-r1.ebuild @@ -30,15 +30,16 @@ src_prepare() { } multilib_src_configure() { - local myconf="$(use_enable doc doxygen-html)" - multilib_is_native_abi || myconf="--disable-doxygen-html --disable-examples" - - # X is only useful for examples that are not installed. - ECONF_SOURCE="${S}" econf \ - $(use_enable static-libs static) \ - --program-suffix=2 \ - --without-x \ - ${myconf} + local myeconfargs=( + $(use_enable doc doxygen-html) + $(use_enable static-libs static) + --program-suffix=2 + --without-x # only useful for (disabled) examples + ) + + multilib_is_native_abi || myeconfargs+=( --disable-doxygen-html --disable-examples ) + + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" } multilib_src_compile() {