diff options
author | Pacho Ramos <pacho@gentoo.org> | 2013-02-03 12:29:16 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2013-02-03 12:29:16 +0000 |
commit | 005a0b6e530097f8e6f7f9000333df6e97af4924 (patch) | |
tree | 78b60bf7331f868f76f07cefa9309f71d3731925 /net-dns/ldns-utils | |
parent | Cleanup due #22900 (diff) | |
download | gentoo-2-005a0b6e530097f8e6f7f9000333df6e97af4924.tar.gz gentoo-2-005a0b6e530097f8e6f7f9000333df6e97af4924.tar.bz2 gentoo-2-005a0b6e530097f8e6f7f9000333df6e97af4924.zip |
Cleanup due #22900
(Portage version: 2.1.11.50/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'net-dns/ldns-utils')
-rw-r--r-- | net-dns/ldns-utils/ChangeLog | 6 | ||||
-rw-r--r-- | net-dns/ldns-utils/files/1.6.10-cflags.patch | 24 | ||||
-rw-r--r-- | net-dns/ldns-utils/ldns-utils-1.6.11.ebuild | 61 | ||||
-rw-r--r-- | net-dns/ldns-utils/ldns-utils-1.6.13.ebuild | 63 | ||||
-rw-r--r-- | net-dns/ldns-utils/metadata.xml | 2 |
5 files changed, 6 insertions, 150 deletions
diff --git a/net-dns/ldns-utils/ChangeLog b/net-dns/ldns-utils/ChangeLog index 6323cb150587..ae378db7609f 100644 --- a/net-dns/ldns-utils/ChangeLog +++ b/net-dns/ldns-utils/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-dns/ldns-utils # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/ldns-utils/ChangeLog,v 1.22 2013/01/22 02:42:49 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/ldns-utils/ChangeLog,v 1.23 2013/02/03 12:29:16 pacho Exp $ + + 03 Feb 2013; Pacho Ramos <pacho@gentoo.org> -files/1.6.10-cflags.patch, + -ldns-utils-1.6.11.ebuild, -ldns-utils-1.6.13.ebuild, metadata.xml: + Cleanup due #22900 *ldns-utils-1.6.16 (22 Jan 2013) diff --git a/net-dns/ldns-utils/files/1.6.10-cflags.patch b/net-dns/ldns-utils/files/1.6.10-cflags.patch deleted file mode 100644 index baa3e7a82b33..000000000000 --- a/net-dns/ldns-utils/files/1.6.10-cflags.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff -Naur ldns-1.6.10.orig/drill/configure.ac ldns-1.6.10/drill/configure.ac ---- ldns-1.6.10.orig/drill/configure.ac 2011-03-14 21:43:56.000000000 +0900 -+++ ldns-1.6.10/drill/configure.ac 2011-06-01 17:45:30.391357378 +0900 -@@ -33,7 +33,7 @@ - ACX_CHECK_COMPILER_FLAG(xc99, [C99FLAG="-xc99"]) - - AC_TYPE_SIZE_T --ACX_CHECK_COMPILER_FLAG(O2, [CFLAGS="$CFLAGS -O2"]) -+ACX_CHECK_COMPILER_FLAG(O2, [CFLAGS="-O2 $CFLAGS"]) - - ACX_CHECK_COMPILER_FLAG_NEEDED($C99FLAG -D__EXTENSIONS__ -D_BSD_SOURCE -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600, - [ -diff -Naur ldns-1.6.10.orig/examples/configure.ac ldns-1.6.10/examples/configure.ac ---- ldns-1.6.10.orig/examples/configure.ac 2011-03-14 21:43:56.000000000 +0900 -+++ ldns-1.6.10/examples/configure.ac 2011-06-01 17:45:29.662354668 +0900 -@@ -31,7 +31,7 @@ - - - AC_TYPE_SIZE_T --ACX_CHECK_COMPILER_FLAG(O2, [CFLAGS="$CFLAGS -O2"]) -+ACX_CHECK_COMPILER_FLAG(O2, [CFLAGS="-O2 $CFLAGS"]) - - ACX_CHECK_COMPILER_FLAG_NEEDED($C99FLAG -D__EXTENSIONS__ -D_BSD_SOURCE -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600, - [ diff --git a/net-dns/ldns-utils/ldns-utils-1.6.11.ebuild b/net-dns/ldns-utils/ldns-utils-1.6.11.ebuild deleted file mode 100644 index 93f906ad52c6..000000000000 --- a/net-dns/ldns-utils/ldns-utils-1.6.11.ebuild +++ /dev/null @@ -1,61 +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/ldns-utils/ldns-utils-1.6.11.ebuild,v 1.3 2011/10/06 14:41:11 chainsaw Exp $ - -EAPI="3" -inherit autotools eutils - -MY_P="${P/-utils}" -DESCRIPTION="Set of utilities to simplify various dns(sec) tasks." -HOMEPAGE="http://www.nlnetlabs.nl/projects/ldns/" -SRC_URI="http://www.nlnetlabs.nl/downloads/ldns/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="examples gost ssl" - -DEPEND=">=net-libs/ldns-${PV}[gost?,ssl?] - examples? ( net-libs/libpcap )" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - # bug #369339 - epatch "${FILESDIR}/1.6.10-cflags.patch" - - eautoreconf -} - -src_configure() { - cd "${S}"/drill - econf $(use_with ssl) || die - - if use examples; then - cd "${S}"/examples - econf \ - $(use_enable gost) \ - $(use_enable ssl sha2) \ - $(use_with ssl) || die - fi -} - -src_compile() { - emake -C drill || die "emake for drill failed" - if use examples; then - emake -C examples || die "emake for examples failed" - fi -} - -src_install() { - cd "${S}"/drill - emake DESTDIR="${D}" install || die "emake install for drill failed" - dodoc ChangeLog.22-nov-2005 README REGRESSIONS || die - - if use examples; then - cd "${S}"/examples - emake DESTDIR="${D}" install || die "emake install for examples failed" - newdoc README README.examples || die - fi -} diff --git a/net-dns/ldns-utils/ldns-utils-1.6.13.ebuild b/net-dns/ldns-utils/ldns-utils-1.6.13.ebuild deleted file mode 100644 index d54e450cf224..000000000000 --- a/net-dns/ldns-utils/ldns-utils-1.6.13.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/ldns-utils/ldns-utils-1.6.13.ebuild,v 1.6 2012/12/19 18:26:11 ago Exp $ - -EAPI="3" -inherit autotools eutils - -MY_P="${P/-utils}" -DESCRIPTION="Set of utilities to simplify various dns(sec) tasks." -HOMEPAGE="http://www.nlnetlabs.nl/projects/ldns/" -SRC_URI="http://www.nlnetlabs.nl/downloads/ldns/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86" -IUSE="ecdsa examples gost ssl" - -DEPEND=">=net-libs/ldns-${PV}[ecdsa?,gost?,ssl?] - examples? ( net-libs/libpcap )" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - # bug #369339 - epatch "${FILESDIR}/1.6.12-cflags.patch" - - ( cd drill && eautoreconf ) - ( cd examples && eautoreconf ) -} - -src_configure() { - cd "${S}"/drill - econf $(use_with ssl) || die - - if use examples; then - cd "${S}"/examples - econf \ - $(use_enable ecdsa) \ - $(use_enable gost) \ - $(use_enable ssl sha2) \ - $(use_with ssl) || die - fi -} - -src_compile() { - emake -C drill || die "emake for drill failed" - if use examples; then - emake -C examples || die "emake for examples failed" - fi -} - -src_install() { - cd "${S}"/drill - emake DESTDIR="${D}" install || die "emake install for drill failed" - dodoc ChangeLog.22-nov-2005 README REGRESSIONS || die - - if use examples; then - cd "${S}"/examples - emake DESTDIR="${D}" install || die "emake install for examples failed" - newdoc README README.examples || die - fi -} diff --git a/net-dns/ldns-utils/metadata.xml b/net-dns/ldns-utils/metadata.xml index cb94a7e24c82..2cc2524bc94c 100644 --- a/net-dns/ldns-utils/metadata.xml +++ b/net-dns/ldns-utils/metadata.xml @@ -2,7 +2,7 @@ <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> <maintainer> -<email>matsuu@gentoo.org</email> +<email>maintainer-needed@gentoo.org</email> </maintainer> <longdescription lang="en"> ldns is a library with the aim to simplify DNS programing in C. All |