diff options
author | 2011-05-27 19:03:47 +0000 | |
---|---|---|
committer | 2011-05-27 19:03:47 +0000 | |
commit | fbd43f095058fa29a4f33ba41bc3fff81005d5d6 (patch) | |
tree | 820e265d7df4cd16d643f7b0ecc73c23133d6122 | |
parent | Remove 9.6.x. (diff) | |
download | gentoo-2-fbd43f095058fa29a4f33ba41bc3fff81005d5d6.tar.gz gentoo-2-fbd43f095058fa29a4f33ba41bc3fff81005d5d6.tar.bz2 gentoo-2-fbd43f095058fa29a4f33ba41bc3fff81005d5d6.zip |
Remove 9.6.x.
(Portage version: 2.2.0_alpha37/cvs/Linux x86_64)
-rw-r--r-- | net-dns/bind-tools/ChangeLog | 7 | ||||
-rw-r--r-- | net-dns/bind-tools/bind-tools-9.6.2_p2-r2.ebuild | 101 | ||||
-rw-r--r-- | net-dns/bind-tools/bind-tools-9.6.3.ebuild | 98 | ||||
-rw-r--r-- | net-dns/bind-tools/files/bind-tools-9.6.1-parallel.patch | 13 |
4 files changed, 6 insertions, 213 deletions
diff --git a/net-dns/bind-tools/ChangeLog b/net-dns/bind-tools/ChangeLog index 0b39f77ddd5b..65f8265b740a 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.194 2011/04/28 17:22:00 idl0r Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/bind-tools/ChangeLog,v 1.195 2011/05/27 19:03:47 idl0r Exp $ + + 27 May 2011; Christian Ruppert <idl0r@gentoo.org> + -bind-tools-9.6.2_p2-r2.ebuild, -bind-tools-9.6.3.ebuild, + -files/bind-tools-9.6.1-parallel.patch: + Remove 9.6.x. 28 Apr 2011; Christian Ruppert <idl0r@gentoo.org> -bind-tools-9.7.2_p2-r2.ebuild: diff --git a/net-dns/bind-tools/bind-tools-9.6.2_p2-r2.ebuild b/net-dns/bind-tools/bind-tools-9.6.2_p2-r2.ebuild deleted file mode 100644 index d899f960e254..000000000000 --- a/net-dns/bind-tools/bind-tools-9.6.2_p2-r2.ebuild +++ /dev/null @@ -1,101 +0,0 @@ -# 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.6.2_p2-r2.ebuild,v 1.9 2011/03/10 18:11:54 ranger 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 - - # bug 278364 (workaround) - epatch "${FILESDIR}/${PN}-9.6.1-parallel.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 -} diff --git a/net-dns/bind-tools/bind-tools-9.6.3.ebuild b/net-dns/bind-tools/bind-tools-9.6.3.ebuild deleted file mode 100644 index e523a57e419c..000000000000 --- a/net-dns/bind-tools/bind-tools-9.6.3.ebuild +++ /dev/null @@ -1,98 +0,0 @@ -# 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.6.3.ebuild,v 1.1 2011/02/05 13:45:38 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 -} diff --git a/net-dns/bind-tools/files/bind-tools-9.6.1-parallel.patch b/net-dns/bind-tools/files/bind-tools-9.6.1-parallel.patch deleted file mode 100644 index b1da99d9a805..000000000000 --- a/net-dns/bind-tools/files/bind-tools-9.6.1-parallel.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- bind-9.6.1/lib/isc/Makefile.in.orig 2009-02-16 02:02:58.000000000 +0100 -+++ bind-9.6.1/lib/isc/Makefile.in 2009-07-22 01:07:13.000000000 +0200 -@@ -80,6 +80,10 @@ - - LIBS = @LIBS@ - -+# Note: the order of SUBDIRS is important. -+# Attempt to disable parallel processing. -+.NOTPARALLEL: -+.NO_PARALLEL: - SUBDIRS = include unix nls @ISC_THREAD_DIR@ @ISC_ARCH_DIR@ - TARGETS = timestamp - |