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 0D15D138334 for ; Sun, 7 Jul 2019 11:49:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 132F9E083D; Sun, 7 Jul 2019 11:49:24 +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 EE3E8E083D for ; Sun, 7 Jul 2019 11:49:23 +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 AC51C3472B6 for ; Sun, 7 Jul 2019 11:49:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A12336A1 for ; Sun, 7 Jul 2019 11:49:20 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1562500149.47b7b000c375d7be5c730486c40adf237d118095.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/guitarix/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/guitarix/guitarix-0.38.1-r1.ebuild X-VCS-Directories: media-sound/guitarix/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 47b7b000c375d7be5c730486c40adf237d118095 X-VCS-Branch: master Date: Sun, 7 Jul 2019 11:49: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fca12aac-ed1a-4fcc-ad28-e605a047bbab X-Archives-Hash: 6d0399160e7f0a7a0e6b02841a7c50c8 commit: 47b7b000c375d7be5c730486c40adf237d118095 Author: Alexander Tsoy tsoy me> AuthorDate: Thu Jun 6 16:25:25 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jul 7 11:49:09 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47b7b000 media-sound/guitarix: use array to pass configure args Package-Manager: Portage-2.3.66, Repoman-2.3.11 Signed-off-by: Alexander Tsoy tsoy.me> Closes: https://github.com/gentoo/gentoo/pull/12212 Signed-off-by: Michał Górny gentoo.org> media-sound/guitarix/guitarix-0.38.1-r1.ebuild | 32 ++++++++++++++------------ 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/media-sound/guitarix/guitarix-0.38.1-r1.ebuild b/media-sound/guitarix/guitarix-0.38.1-r1.ebuild index f087100afca..ce38767c1e0 100644 --- a/media-sound/guitarix/guitarix-0.38.1-r1.ebuild +++ b/media-sound/guitarix/guitarix-0.38.1-r1.ebuild @@ -54,20 +54,22 @@ DEPEND="${COMMON_DEPEND} DOCS=( changelog README ) src_configure() { - waf-utils_src_configure \ - --cxxflags-debug="" \ - --cxxflags-release="-DNDEBUG" \ - --ldflags="${LDFLAGS}" \ - --enable-lfs \ - --lib-dev \ - --no-desktop-update \ - --no-faust \ - --no-ldconfig \ - --shared-lib \ - $(use_enable nls) \ - $(usex bluetooth "" "--no-bluez") \ - $(usex debug "--debug" "") \ - $(usex lv2 "--lv2dir=${EPREFIX}/usr/$(get_libdir)/lv2" "--no-lv2 --no-lv2-gui") \ - $(usex standalone "" "--no-standalone") \ + local myconf=( + --cxxflags-debug="" + --cxxflags-release="-DNDEBUG" + --ldflags="${LDFLAGS}" + --enable-lfs + --lib-dev + --no-desktop-update + --no-faust + --no-ldconfig + --shared-lib + $(use_enable nls) + $(usex bluetooth "" "--no-bluez") + $(usex debug "--debug" "") + $(usex lv2 "--lv2dir=${EPREFIX}/usr/$(get_libdir)/lv2" "--no-lv2 --no-lv2-gui") + $(usex standalone "" "--no-standalone") $(usex zeroconf "" "--no-avahi") + ) + waf-utils_src_configure "${myconf[@]}" }