diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2024-06-22 21:52:22 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2024-06-22 22:00:14 +0200 |
commit | d6104c3c1c06b5776e93d9a4ce8f72f4e59a982f (patch) | |
tree | 2936e2ff973c043f54716d123802b24426e1fd51 /net-dns | |
parent | net-dns/ddclient: drop 3.11.1 (diff) | |
download | gentoo-d6104c3c1c06b5776e93d9a4ce8f72f4e59a982f.tar.gz gentoo-d6104c3c1c06b5776e93d9a4ce8f72f4e59a982f.tar.bz2 gentoo-d6104c3c1c06b5776e93d9a4ce8f72f4e59a982f.zip |
net-dns/dnssec-validator: drop 2.2.3-r3
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 | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/net-dns/dnssec-validator/dnssec-validator-2.2.3-r3.ebuild b/net-dns/dnssec-validator/dnssec-validator-2.2.3-r3.ebuild deleted file mode 100644 index 20a94d1e224c..000000000000 --- a/net-dns/dnssec-validator/dnssec-validator-2.2.3-r3.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2023 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 +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 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" - ) - - 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 -} |