# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit autotools flag-o-matic toolchain-funcs MY_PN=${PN//-tools} MY_PV=${PV/_p/-P} MY_PV=${MY_PV/_rc/rc} MY_P="${MY_PN}-${MY_PV}" DESCRIPTION="bind tools: dig, nslookup, host, nsupdate, dnssec-keygen" HOMEPAGE="https://www.isc.org/software/bind" SRC_URI="https://downloads.isc.org/isc/bind9/${PV}/${MY_P}.tar.gz" LICENSE="Apache-2.0 BSD BSD-2 GPL-2 HPND ISC MPL-2.0" SLOT="0" KEYWORDS="" IUSE="+caps doc gssapi idn ipv6 libedit libressl readline xml" # no PKCS11 currently as it requires OpenSSL to be patched, also see bug 409687 COMMON_DEPEND=" caps? ( sys-libs/libcap ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) xml? ( dev-libs/libxml2 ) idn? ( net-dns/libidn2:= ) gssapi? ( virtual/krb5 ) libedit? ( dev-libs/libedit ) !libedit? ( readline? ( sys-libs/readline:0= ) )" DEPEND="${COMMON_DEPEND}" RDEPEND="${COMMON_DEPEND} !> config.h } src_compile() { local AR=$(tc-getAR) emake AR="${AR}" -C lib/ emake AR="${AR}" -C bin/delv/ emake AR="${AR}" -C bin/dig/ emake AR="${AR}" -C bin/nsupdate/ emake AR="${AR}" -C bin/dnssec/ } src_install() { dodoc README CHANGES cd "${S}"/bin/delv || die dobin delv doman delv.1 cd "${S}"/bin/dig || die dobin dig host nslookup doman {dig,host,nslookup}.1 cd "${S}"/bin/nsupdate || die dobin nsupdate doman nsupdate.1 if use doc; then docinto html dodoc nsupdate.html fi cd "${S}"/bin/dnssec || die for tool in dsfromkey importkey keyfromlabel keygen \ revoke settime signzone verify; do dobin dnssec-"${tool}" doman dnssec-"${tool}".8 if use doc; then docinto html dodoc dnssec-"${tool}".html fi done }