diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2023-08-06 00:11:51 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2023-08-06 00:39:55 +0200 |
commit | c40982e711f0e106dfcc9c23666009aa31e97a70 (patch) | |
tree | 3cee4b065289f2925a9195adce7e23a21c942e79 /net-dns | |
parent | net-im/transwhat: fix ExcessiveLineLength (diff) | |
download | gentoo-c40982e711f0e106dfcc9c23666009aa31e97a70.tar.gz gentoo-c40982e711f0e106dfcc9c23666009aa31e97a70.tar.bz2 gentoo-c40982e711f0e106dfcc9c23666009aa31e97a70.zip |
net-dns/dnssec-validator: fix QA UseFlagWithoutDeps
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-dns')
-rw-r--r-- | net-dns/dnssec-validator/dnssec-validator-2.2.3-r3.ebuild (renamed from net-dns/dnssec-validator/dnssec-validator-2.2.3-r2.ebuild) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net-dns/dnssec-validator/dnssec-validator-2.2.3-r2.ebuild b/net-dns/dnssec-validator/dnssec-validator-2.2.3-r3.ebuild index ca5e3e389089..20a94d1e224c 100644 --- a/net-dns/dnssec-validator/dnssec-validator-2.2.3-r2.ebuild +++ b/net-dns/dnssec-validator/dnssec-validator-2.2.3-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -13,7 +13,7 @@ S="${WORKDIR}/DNSSEC-Tools-dnssec-tools-${PV}/dnssec-tools/validator" LICENSE="BSD" SLOT="0" KEYWORDS="amd64 arm ~arm64 x86" -IUSE="dlv +ipv6 +nsec3 static-libs +threads" +IUSE="dlv +nsec3 static-libs +threads" RDEPEND=">=dev-libs/openssl-1.1.0:0=" DEPEND="${RDEPEND}" @@ -37,11 +37,11 @@ src_prepare() { src_configure() { local myeconfargs=( $(use_with dlv) - $(use_with ipv6) $(use_with nsec3) $(use_enable static-libs static) $(use_with threads) --with-dnsval-conf="${EPREFIX}/etc/dnssec-tools/dnsval.conf" + --with-ipv6 --with-resolv-conf="${EPREFIX}/etc/dnssec-tools/resolv.conf" --with-root-hints="${EPREFIX}/etc/dnssec-tools/root.hints" ) |