diff options
author | 2011-02-15 18:17:31 +0000 | |
---|---|---|
committer | 2011-02-15 18:17:31 +0000 | |
commit | d611e0c7c255aa81e926cc9df68777aaf74569c9 (patch) | |
tree | 1f80c0fc7fa997d030e0f21ca6bbdbca415fa5cf /net-dns/bind-tools | |
parent | Lastrite app-office/qbankmanager and xfce-extra/xfce4-xkb-plugin. (diff) | |
download | historical-d611e0c7c255aa81e926cc9df68777aaf74569c9.tar.gz historical-d611e0c7c255aa81e926cc9df68777aaf74569c9.tar.bz2 historical-d611e0c7c255aa81e926cc9df68777aaf74569c9.zip |
Version bump to 9.7.3
Package-Manager: portage-2.2.0_alpha23/cvs/Linux x86_64
Diffstat (limited to 'net-dns/bind-tools')
-rw-r--r-- | net-dns/bind-tools/ChangeLog | 7 | ||||
-rw-r--r-- | net-dns/bind-tools/bind-tools-9.7.3.ebuild | 98 |
2 files changed, 104 insertions, 1 deletions
diff --git a/net-dns/bind-tools/ChangeLog b/net-dns/bind-tools/ChangeLog index a0df344bb4bd..242afc04aee4 100644 --- a/net-dns/bind-tools/ChangeLog +++ b/net-dns/bind-tools/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-dns/bind-tools # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/bind-tools/ChangeLog,v 1.181 2011/02/05 13:45:38 idl0r Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/bind-tools/ChangeLog,v 1.182 2011/02/15 18:15:21 idl0r Exp $ + +*bind-tools-9.7.3 (15 Feb 2011) + + 15 Feb 2011; Christian Ruppert <idl0r@gentoo.org> +bind-tools-9.7.3.ebuild: + Version bump to 9.7.3 *bind-tools-9.6.3 (05 Feb 2011) diff --git a/net-dns/bind-tools/bind-tools-9.7.3.ebuild b/net-dns/bind-tools/bind-tools-9.7.3.ebuild new file mode 100644 index 000000000000..57385229b437 --- /dev/null +++ b/net-dns/bind-tools/bind-tools-9.7.3.ebuild @@ -0,0 +1,98 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dns/bind-tools/bind-tools-9.7.3.ebuild,v 1.1 2011/02/15 18:15:21 idl0r Exp $ + +EAPI="3" + +inherit eutils autotools flag-o-matic + +MY_PN=${PN//-tools} +MY_PV=${PV/_p/-P} +MY_P="${MY_PN}-${MY_PV}" + +DESCRIPTION="bind tools: dig, nslookup, host, nsupdate, dnssec-keygen" +HOMEPAGE="http://www.isc.org/software/bind" +SRC_URI="ftp://ftp.isc.org/isc/bind9/${MY_PV}/${MY_P}.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="doc idn ipv6 ssl urandom xml" + +DEPEND="ssl? ( dev-libs/openssl ) + xml? ( dev-libs/libxml2 ) + idn? ( + || ( sys-libs/glibc dev-libs/libiconv ) + net-dns/idnkit + )" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + # bug 122597 + use idn && { + cd "${S}"/contrib/idn/idnkit-1.0-src + epatch "${FILESDIR}"/${PN}-configure.patch + cd "${S}" + } + + # bug 231247 + epatch "${FILESDIR}"/${PN}-9.5.0_p1-lwconfig.patch + + eautoreconf +} + +src_configure() { + local myconf= + + has_version sys-libs/glibc || myconf="${myconf} --with-iconv" + + if use urandom; then + myconf="${myconf} --with-randomdev=/dev/urandom" + else + myconf="${myconf} --with-randomdev=/dev/random" + fi + + # bug 344029 + append-cflags "-DDIG_SIGCHASE" + + econf \ + $(use_enable ipv6) \ + $(use_with idn) \ + $(use_with ssl openssl) \ + $(use_with xml libxml2) \ + ${myconf} + + # bug #151839 + echo '#undef SO_BSDCOMPAT' >> config.h +} + +src_compile() { + emake -C lib/ || die "emake lib failed" + emake -C bin/dig/ || die "emake bin/dig failed" + emake -C bin/nsupdate/ || die "emake bin/nsupdate failed" + emake -C bin/dnssec/ || die "emake bin/dnssec failed" +} + +src_install() { + dodoc README CHANGES FAQ || die + + cd "${S}"/bin/dig + dobin dig host nslookup || die + doman {dig,host,nslookup}.1 || die + + cd "${S}"/bin/nsupdate + dobin nsupdate || die + doman nsupdate.1 || die + if use doc; then + dohtml nsupdate.html || die + fi + + cd "${S}"/bin/dnssec + dobin dnssec-keygen || die + doman dnssec-keygen.8 || die + if use doc; then + dohtml dnssec-keygen.html || die + fi +} |