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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6158A158020 for ; Sat, 15 Oct 2022 14:01:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D487E0937; Sat, 15 Oct 2022 14:01:01 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 58472E0937 for ; Sat, 15 Oct 2022 14:01:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 58969340EA7 for ; Sat, 15 Oct 2022 14:01:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5752A620 for ; Sat, 15 Oct 2022 14:00:57 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1665842427.0c97b29d234036020443f986974178f899f4e440.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/pdns/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/pdns/pdns-4.6.3.ebuild X-VCS-Directories: net-dns/pdns/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0c97b29d234036020443f986974178f899f4e440 X-VCS-Branch: master Date: Sat, 15 Oct 2022 14:00:57 +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: 9b868c73-ba71-4cec-b548-18785bccfa1e X-Archives-Hash: c31b8ab16c446e957c1d11171ca9922f commit: 0c97b29d234036020443f986974178f899f4e440 Author: Sam James gentoo org> AuthorDate: Sat Oct 15 14:00:27 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Oct 15 14:00:27 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c97b29d net-dns/pdns: fix EbuildReservedName Signed-off-by: Sam James gentoo.org> net-dns/pdns/pdns-4.6.3.ebuild | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/net-dns/pdns/pdns-4.6.3.ebuild b/net-dns/pdns/pdns-4.6.3.ebuild index add3480e94f9..2b4c63c5d4cb 100644 --- a/net-dns/pdns/pdns-4.6.3.ebuild +++ b/net-dns/pdns/pdns-4.6.3.ebuild @@ -55,20 +55,20 @@ pkg_setup() { } src_configure() { - local dynmodules="pipe bind" # the default backends, always enabled - - #use db2 && dynmodules+=" db2" - use ldap && dynmodules+=" ldap" - use lmdb && dynmodules+=" lmdb" - use mydns && dynmodules+=" mydns" - use mysql && dynmodules+=" gmysql" - #use oracle && dynmodules+=" goracle oracle" - use postgres && dynmodules+=" gpgsql" - use remote && dynmodules+=" remote" - use sqlite && dynmodules+=" gsqlite3" - use tinydns && dynmodules+=" tinydns" - use geoip && dynmodules+=" geoip" - #use xdb && dynmodules+=" xdb" + local cnf_dynmodules="pipe bind" # the default backends, always enabled + + #use db2 && cnf_dynmodules+=" db2" + use ldap && cnf_dynmodules+=" ldap" + use lmdb && cnf_dynmodules+=" lmdb" + use mydns && cnf_dynmodules+=" mydns" + use mysql && cnf_dynmodules+=" gmysql" + #use oracle && cnf_dynmodules+=" goracle oracle" + use postgres && cnf_dynmodules+=" gpgsql" + use remote && cnf_dynmodules+=" remote" + use sqlite && cnf_dynmodules+=" gsqlite3" + use tinydns && cnf_dynmodules+=" tinydns" + use geoip && cnf_dynmodules+=" geoip" + #use xdb && cnf_dynmodules+=" xdb" econf \ --disable-static \ @@ -77,7 +77,7 @@ src_configure() { --with-service-user=pdns \ --with-service-group=pdns \ --with-modules= \ - --with-dynmodules="${dynmodules}" \ + --with-dynmodules="${cnf_dynmodules}" \ --with-mysql-lib=/usr/$(get_libdir) \ --with-lua="${ELUA}" \ $(use_enable debug verbose-logging) \