commit: c7df77dd6b7ff45292a57c4b461cd02a70daae8b
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 7 06:54:24 2017 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> 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() {