diff options
author | Marc Schiffbauer <mschiff@gentoo.org> | 2019-09-25 19:09:30 +0200 |
---|---|---|
committer | Marc Schiffbauer <mschiff@gentoo.org> | 2019-09-25 19:10:06 +0200 |
commit | e98b691267f4f28b155c00d1c987ceb9e951a5fe (patch) | |
tree | 011ebf89f4e7c48526fe9f87a1a189f13ab3f6fa /net-dns/ldns-utils/ldns-utils-1.7.1.ebuild | |
parent | net-libs/ldns: bump version (diff) | |
download | gentoo-e98b691267f4f28b155c00d1c987ceb9e951a5fe.tar.gz gentoo-e98b691267f4f28b155c00d1c987ceb9e951a5fe.tar.bz2 gentoo-e98b691267f4f28b155c00d1c987ceb9e951a5fe.zip |
net-dns/ldns-utils: bump version
Package-Manager: Portage-2.3.66, Repoman-2.3.16
Signed-off-by: Marc Schiffbauer <mschiff@gentoo.org>
Diffstat (limited to 'net-dns/ldns-utils/ldns-utils-1.7.1.ebuild')
-rw-r--r-- | net-dns/ldns-utils/ldns-utils-1.7.1.ebuild | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/net-dns/ldns-utils/ldns-utils-1.7.1.ebuild b/net-dns/ldns-utils/ldns-utils-1.7.1.ebuild new file mode 100644 index 000000000000..6a6ba48f563a --- /dev/null +++ b/net-dns/ldns-utils/ldns-utils-1.7.1.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +MY_P=${P/-utils} + +DESCRIPTION="Set of utilities to simplify various dns(sec) tasks" +HOMEPAGE="http://www.nlnetlabs.nl/projects/ldns/" +SRC_URI="http://www.nlnetlabs.nl/downloads/ldns/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="+dane ecdsa ed25519 ed448 examples gost ssl" + +REQUIRED_USE=" + ecdsa? ( ssl ) + ed25519? ( ssl ) + ed448? ( ssl ) + dane? ( ssl ) + gost? ( ssl ) +" + +DEPEND=">=net-libs/ldns-${PV}[dane?,ecdsa?,ed25519?,ed448?,gost?] + examples? ( net-libs/libpcap )" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${MY_P} + +src_configure() { + # >=openssl-1.1.0 required for dane-ta + if has_version "<dev-libs/openssl-1.1.0"; then + local dane_ta_usage="--disable-dane-ta-usage" + else + local dane_ta_usage="" + fi + + ECONF_SOURCE=${S} \ + econf \ + --with-drill \ + $(use_with ssl) \ + $(use_with examples) \ + $(use_enable dane) \ + $(use_enable ecdsa) \ + $(use_enable ed25519) \ + $(use_enable ed448) \ + $(use_enable gost) \ + $(use_enable ssl sha2) \ + $dane_ta_usage +} + +src_compile() { + default +} + +src_install() { + #cd "${S}"/drill + emake DESTDIR="${D}" install-drill + dodoc drill/{ChangeLog.22-nov-2005,README,REGRESSIONS} + + if use examples; then + emake DESTDIR="${D}" install-examples + newdoc examples/README README.examples + fi +} |