commit: 045e9fcbb0f3cbc277ecfb1ebe59d8ad1332bc62
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 29 19:00:13 2021 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Fri Oct 29 19:00:40 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=045e9fcb
net-misc/ipv6calc: convert econf args to a bash array
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
net-misc/ipv6calc/ipv6calc-4.0.0-r1.ebuild | 39 ++++++++++++++++--------------
1 file changed, 21 insertions(+), 18 deletions(-)
diff --git a/net-misc/ipv6calc/ipv6calc-4.0.0-r1.ebuild
b/net-misc/ipv6calc/ipv6calc-4.0.0-r1.ebuild
index 9b30664564c..a5d7e8e70ae 100644
--- a/net-misc/ipv6calc/ipv6calc-4.0.0-r1.ebuild
+++ b/net-misc/ipv6calc/ipv6calc-4.0.0-r1.ebuild
@@ -30,26 +30,29 @@ src_configure() {
# okay because we want then force enabled.
# --disable-db-as-registry
# --disable-db-cc-registry
+ local myeconfargs=(
+ --disable-bundled-getopt
+ --disable-bundled-md5
+ --enable-shared
+ --enable-dynamic-load
+ --enable-db-ieee
+ --enable-db-ipv4
+ --enable-db-ipv6
+ --disable-dbip
+ --disable-dbip2
+ --disable-external
+ --disable-ip2location
+ --enable-openssl-evp-md5
+ --enable-openssl-md5
+ $(use_enable geoip)
+ $(use_enable cgi mod_ipv6calc )
+ )
+
if use geoip; then
- myconf=$(use_enable geoip)
- myconf+=" --with-geoip-db=${EPREFIX}/usr/share/GeoIP"
+ myeconfargs+=( "--with-geoip-db=${EPREFIX}/usr/share/GeoIP" )
fi
- econf \
- --disable-bundled-getopt \
- --disable-bundled-md5 \
- --enable-shared \
- --enable-dynamic-load \
- --enable-db-ieee \
- --enable-db-ipv4 \
- --enable-db-ipv6 \
- --disable-dbip \
- --disable-dbip2 \
- --disable-external \
- --disable-ip2location \
- --enable-openssl-evp-md5 \
- --enable-openssl-md5 \
- $(use_enable cgi mod_ipv6calc ) \
- ${myconf}
+
+ econf "${myeconfargs[@]}"
}
src_compile() {