diff options
author | Christian Ruppert <idl0r@gentoo.org> | 2009-07-19 18:40:15 +0000 |
---|---|---|
committer | Christian Ruppert <idl0r@gentoo.org> | 2009-07-19 18:40:15 +0000 |
commit | 2107e5db6e0cc78702b50dd9c73f362f02f79918 (patch) | |
tree | 22e9d0b2e3cfacd0053bcbe57ad33f7f92c26d50 /net-dns | |
parent | ~ppc #276593 (diff) | |
download | gentoo-2-2107e5db6e0cc78702b50dd9c73f362f02f79918.tar.gz gentoo-2-2107e5db6e0cc78702b50dd9c73f362f02f79918.tar.bz2 gentoo-2-2107e5db6e0cc78702b50dd9c73f362f02f79918.zip |
Version bump to 9.6.1, bug 274494. Added ssl, xml and doc useflag. Fix HOMEPAGE. append-flags -D_GNU_SOURCE is not needed anymore since it has been fixed by upstream. Cleanup.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'net-dns')
-rw-r--r-- | net-dns/bind-tools/ChangeLog | 12 | ||||
-rw-r--r-- | net-dns/bind-tools/bind-tools-9.6.1.ebuild | 86 |
2 files changed, 96 insertions, 2 deletions
diff --git a/net-dns/bind-tools/ChangeLog b/net-dns/bind-tools/ChangeLog index 898d1635cbbf..c6a6561b312d 100644 --- a/net-dns/bind-tools/ChangeLog +++ b/net-dns/bind-tools/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for net-dns/bind-tools -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/bind-tools/ChangeLog,v 1.129 2009/04/15 19:49:25 maekke Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-dns/bind-tools/ChangeLog,v 1.130 2009/07/19 18:40:15 idl0r Exp $ + +*bind-tools-9.6.1 (19 Jul 2009) + + 19 Jul 2009; Christian Ruppert <idl0r@gentoo.org> + +bind-tools-9.6.1.ebuild: + Version bump to 9.6.1, bug 274494. Added ssl, xml and doc useflag. Fix + HOMEPAGE. append-flags -D_GNU_SOURCE is not needed anymore since it has + been fixed by upstream. Cleanup. 15 Apr 2009; Markus Meier <maekke@gentoo.org> bind-tools-9.4.3_p2.ebuild: amd64 stable, bug #264301 diff --git a/net-dns/bind-tools/bind-tools-9.6.1.ebuild b/net-dns/bind-tools/bind-tools-9.6.1.ebuild new file mode 100644 index 000000000000..c8fb5f1b4e29 --- /dev/null +++ b/net-dns/bind-tools/bind-tools-9.6.1.ebuild @@ -0,0 +1,86 @@ +# Copyright 1999-2009 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.6.1.ebuild,v 1.1 2009/07/19 18:40:15 idl0r Exp $ + +inherit eutils + +MY_PN=${PN//-tools} +MY_PV=${PV/_p1/-P1} +MY_P="${MY_PN}-${MY_PV}" + +DESCRIPTION="bind tools: dig, nslookup, host, nsupdate, dnssec-keygen" +HOMEPAGE="https://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 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_unpack() { + unpack ${A} + cd "${S}" + + use idn && { + cd "${S}"/contrib/idn/idnkit-1.0-src + epatch "${FILESDIR}"/${PN}-configure.patch + cd - + } + + epatch "${FILESDIR}"/${PN}-9.5.0_p1-lwconfig.patch + + # bug #151839 + sed -i -e \ + 's:struct isc_socket {:#undef SO_BSDCOMPAT\n\nstruct isc_socket {:' \ + lib/isc/unix/socket.c || die +} + +src_compile() { + local myconf= + + has_version sys-libs/glibc || myconf="${myconf} --with-iconv" + + econf \ + $(use_enable ipv6) \ + $(use_with idn) \ + $(use_with ssl openssl) \ + $(use_with xml libxml2) \ + ${myconf} + + 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 +} |