commit:     1f80400cb6fa7db95c34495a165c820e13182669
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  2 08:54:58 2017 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Jan  2 08:54:58 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f80400c

net-dns/nsd: ebuild code refactoring.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-dns/nsd/nsd-4.1.14.ebuild | 51 ++++++++++++++++++++++++-------------------
 1 file changed, 28 insertions(+), 23 deletions(-)

diff --git a/net-dns/nsd/nsd-4.1.14.ebuild b/net-dns/nsd/nsd-4.1.14.ebuild
index 3719d0f..aa80470 100644
--- a/net-dns/nsd/nsd-4.1.14.ebuild
+++ b/net-dns/nsd/nsd-4.1.14.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -23,7 +23,10 @@ IUSE="bind8-stats ipv6 libevent minimal-responses mmap munin 
+nsec3 ratelimit ro
 RDEPEND="
        virtual/yacc
        libevent? ( dev-libs/libevent )
-       ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( 
dev-libs/libressl:= ) )
+       ssl? (
+               !libressl? ( dev-libs/openssl:0= )
+               libressl? ( dev-libs/libressl:= )
+       )
        munin? ( net-analyzer/munin )
 "
 DEPEND="
@@ -38,28 +41,30 @@ src_prepare() {
 }
 
 src_configure() {
-       econf \
-               --enable-pie \
-               --enable-relro-now \
-               --enable-largefile \
-               --with-logfile="${EPREFIX}"/var/log/nsd.log \
-               --with-pidfile="${EPREFIX}"/run/nsd/nsd.pid \
-               --with-dbfile="${EPREFIX}"/var/db/nsd/nsd.db \
-               --with-xfrdir="${EPREFIX}"/var/db/nsd \
-               --with-xfrdfile="${EPREFIX}"/var/db/nsd/xfrd.state \
-               --with-zonelistfile="${EPREFIX}"/var/db/nsd/zone.list \
-               --with-zonesdir="${EPREFIX}"/var/lib/nsd \
-               $(use_enable bind8-stats) \
-               $(use_enable bind8-stats zone-stats) \
-               $(use_enable ipv6) \
-               $(use_enable minimal-responses) \
-               $(use_enable mmap) \
-               $(use_enable nsec3) \
-               $(use_enable ratelimit) \
-               $(use_enable root-server) \
-               $(use_enable runtime-checks checking) \
-               $(use_with libevent) \
+       myeconfargs=(
+               --enable-pie
+               --enable-relro-now
+               --enable-largefile
+               --with-logfile="${EPREFIX}"/var/log/nsd.log
+               --with-pidfile="${EPREFIX}"/run/nsd/nsd.pid
+               --with-dbfile="${EPREFIX}"/var/db/nsd/nsd.db
+               --with-xfrdir="${EPREFIX}"/var/db/nsd
+               --with-xfrdfile="${EPREFIX}"/var/db/nsd/xfrd.state
+               --with-zonelistfile="${EPREFIX}"/var/db/nsd/zone.list
+               --with-zonesdir="${EPREFIX}"/var/lib/nsd
+               $(use_enable bind8-stats)
+               $(use_enable bind8-stats zone-stats)
+               $(use_enable ipv6)
+               $(use_enable minimal-responses)
+               $(use_enable mmap)
+               $(use_enable nsec3)
+               $(use_enable ratelimit)
+               $(use_enable root-server)
+               $(use_enable runtime-checks checking)
+               $(use_with libevent)
                $(use_with ssl)
+       )
+       econf "${myeconfargs[@]}"
 }
 
 src_install() {

Reply via email to