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 3BC7E1396D0 for ; Mon, 7 Aug 2017 06:55:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 515981FC002; Mon, 7 Aug 2017 06:55:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 283291FC002 for ; Mon, 7 Aug 2017 06:55:49 +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 BB61E34173E for ; Mon, 7 Aug 2017 06:55:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 399FA75F4 for ; Mon, 7 Aug 2017 06:55:47 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1502088939.c7df77dd6b7ff45292a57c4b461cd02a70daae8b.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/gd/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/gd/gd-2.2.4.ebuild X-VCS-Directories: media-libs/gd/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: c7df77dd6b7ff45292a57c4b461cd02a70daae8b X-VCS-Branch: master Date: Mon, 7 Aug 2017 06:55:47 +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: 6436dc4c-05ef-4c01-beb7-b2905223d7bc X-Archives-Hash: 55e757e42b35fcb90c74d881d7e9ff63 commit: c7df77dd6b7ff45292a57c4b461cd02a70daae8b Author: Lars Wendler gentoo org> AuthorDate: Mon Aug 7 06:54:24 2017 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Aug 7 06:55:39 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7df77dd media-libs/gd: Minor code beautification. Package-Manager: Portage-2.3.6, Repoman-2.3.3 media-libs/gd/gd-2.2.4.ebuild | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/media-libs/gd/gd-2.2.4.ebuild b/media-libs/gd/gd-2.2.4.ebuild index d1305fbd5ba..7cdcb905a45 100644 --- a/media-libs/gd/gd-2.2.4.ebuild +++ b/media-libs/gd/gd-2.2.4.ebuild @@ -39,20 +39,21 @@ multilib_src_configure() { # we aren't actually {en,dis}abling X here ... the configure # script uses it just to add explicit -I/-L paths which we # don't care about on Gentoo systems. - ECONF_SOURCE=${S} \ - econf \ - --disable-werror \ - --without-x \ - --without-liq \ - $(use_enable static-libs static) \ - $(use_with fontconfig) \ - $(use_with png) \ - $(use_with tiff) \ - $(use_with truetype freetype) \ - $(use_with jpeg) \ - $(use_with webp) \ - $(use_with xpm) \ + local myeconfargs=( + --disable-werror + --without-x + --without-liq + $(use_enable static-libs static) + $(use_with fontconfig) + $(use_with png) + $(use_with tiff) + $(use_with truetype freetype) + $(use_with jpeg) + $(use_with webp) + $(use_with xpm) $(use_with zlib) + ) + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" } multilib_src_install_all() {