summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Ruppert <idl0r@gentoo.org>2011-03-10 18:15:41 +0000
committerChristian Ruppert <idl0r@gentoo.org>2011-03-10 18:15:41 +0000
commit9dc332d374b5d1cd27b9049cf7ada9dfce085b85 (patch)
tree0e7fca5b26ac536ace4d6157aef36206b851dc68 /net-dns
parentnet-dns/bind-tools-9.6.2_p2-r2 and 9.7.2_p2-r2 ppc64 for bug 337638 (diff)
downloadgentoo-2-9dc332d374b5d1cd27b9049cf7ada9dfce085b85.tar.gz
gentoo-2-9dc332d374b5d1cd27b9049cf7ada9dfce085b85.tar.bz2
gentoo-2-9dc332d374b5d1cd27b9049cf7ada9dfce085b85.zip
Remove 9.6.2_p2 and 9.7.1 as well.
(Portage version: 2.2.0_alpha26/cvs/Linux x86_64)
Diffstat (limited to 'net-dns')
-rw-r--r--net-dns/bind-tools/ChangeLog6
-rw-r--r--net-dns/bind-tools/bind-tools-9.6.2_p2.ebuild91
-rw-r--r--net-dns/bind-tools/bind-tools-9.7.1.ebuild95
3 files changed, 5 insertions, 187 deletions
diff --git a/net-dns/bind-tools/ChangeLog b/net-dns/bind-tools/ChangeLog
index b61b90d2b79e..c7053571f27e 100644
--- a/net-dns/bind-tools/ChangeLog
+++ b/net-dns/bind-tools/ChangeLog
@@ -1,6 +1,10 @@
# 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.186 2011/03/10 18:11:54 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/bind-tools/ChangeLog,v 1.187 2011/03/10 18:15:41 idl0r Exp $
+
+ 10 Mar 2011; Christian Ruppert <idl0r@gentoo.org>
+ -bind-tools-9.6.2_p2.ebuild, -bind-tools-9.7.1.ebuild:
+ Remove 9.6.2_p2 and 9.7.1 as well.
10 Mar 2011; Brent Baude <ranger@gentoo.org>
bind-tools-9.6.2_p2-r2.ebuild, bind-tools-9.7.2_p2-r2.ebuild:
diff --git a/net-dns/bind-tools/bind-tools-9.6.2_p2.ebuild b/net-dns/bind-tools/bind-tools-9.6.2_p2.ebuild
deleted file mode 100644
index 071a76cefd08..000000000000
--- a/net-dns/bind-tools/bind-tools-9.6.2_p2.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2010 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.2_p2.ebuild,v 1.7 2010/11/06 17:45:41 maekke Exp $
-
-inherit eutils autotools
-
-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 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
-
- # bug 278364 (workaround)
- epatch "${FILESDIR}/${PN}-9.6.1-parallel.patch"
-
- eautoreconf
-}
-
-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
-}
diff --git a/net-dns/bind-tools/bind-tools-9.7.1.ebuild b/net-dns/bind-tools/bind-tools-9.7.1.ebuild
deleted file mode 100644
index a8c860035a82..000000000000
--- a/net-dns/bind-tools/bind-tools-9.7.1.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright 1999-2010 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.1.ebuild,v 1.7 2010/11/06 17:47:46 maekke Exp $
-
-EAPI="3"
-
-inherit eutils autotools
-
-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
-
- 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
-}