diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2022-02-09 22:05:04 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-02-09 23:56:14 +0100 |
commit | 296fb2dacd5b568d9c41aef9bb803144616e1d5f (patch) | |
tree | 83639cfc5269e6097bfe361dbf87d6876210539f /net-dns | |
parent | net-dns/ddclient: drop 3.9.1-r1 (diff) | |
download | gentoo-296fb2dacd5b568d9c41aef9bb803144616e1d5f.tar.gz gentoo-296fb2dacd5b568d9c41aef9bb803144616e1d5f.tar.bz2 gentoo-296fb2dacd5b568d9c41aef9bb803144616e1d5f.zip |
net-dns/dnssec-validator: update EAPI 7 -> 8
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-r2.ebuild | 60 |
1 files changed, 60 insertions, 0 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-r2.ebuild new file mode 100644 index 000000000000..ca5e3e389089 --- /dev/null +++ b/net-dns/dnssec-validator/dnssec-validator-2.2.3-r2.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Tools to ease the validation of DNSSEC related technologies" +HOMEPAGE="https://www.dnssec-tools.org/" +SRC_URI="https://github.com/DNSSEC-Tools/DNSSEC-Tools/archive/dnssec-tools-${PV}.tar.gz" +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" + +RDEPEND=">=dev-libs/openssl-1.1.0:0=" +DEPEND="${RDEPEND}" + +# Tests fail due "Cannot create context: -7" +RESTRICT="test" + +PATCHES=( + # Users LDFLAGS are not respected + # See https://github.com/DNSSEC-Tools/DNSSEC-Tools/pull/9 + "${FILESDIR}/${P}-ldflags.patch" +) + +src_prepare() { + default + + mv configure.in configure.ac || die + eautoreconf +} + +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-resolv-conf="${EPREFIX}/etc/dnssec-tools/resolv.conf" + --with-root-hints="${EPREFIX}/etc/dnssec-tools/root.hints" + ) + + econf "${myeconfargs[@]}" +} + +src_install() { + # Install fails with MAKEOPTS > -j1 + # See https://github.com/DNSSEC-Tools/DNSSEC-Tools/issues/8 + emake -j1 DESTDIR="${D}" install + + einstalldocs + + find "${D}" -name '*.la' -delete || die +} |