diff options
author | Pacho Ramos <pacho@gentoo.org> | 2013-02-16 12:53:23 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2013-02-16 12:53:23 +0000 |
commit | 24ec18fb71a4e80ef145bbdcac71acda9a905092 (patch) | |
tree | 3b99c5960f8c06ae6f8bf2fc0bf5a18c9af3e82e /net-libs/udns | |
parent | Cleanup due bug #96436 (diff) | |
download | gentoo-2-24ec18fb71a4e80ef145bbdcac71acda9a905092.tar.gz gentoo-2-24ec18fb71a4e80ef145bbdcac71acda9a905092.tar.bz2 gentoo-2-24ec18fb71a4e80ef145bbdcac71acda9a905092.zip |
Cleanup due bug #96436
(Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'net-libs/udns')
-rw-r--r-- | net-libs/udns/ChangeLog | 8 | ||||
-rw-r--r-- | net-libs/udns/metadata.xml | 3 | ||||
-rw-r--r-- | net-libs/udns/udns-0.0.9.ebuild | 36 |
3 files changed, 6 insertions, 41 deletions
diff --git a/net-libs/udns/ChangeLog b/net-libs/udns/ChangeLog index 26298dbb0985..69f7500c810f 100644 --- a/net-libs/udns/ChangeLog +++ b/net-libs/udns/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-libs/udns -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/udns/ChangeLog,v 1.26 2012/09/05 15:51:52 jer Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/udns/ChangeLog,v 1.27 2013/02/16 12:53:23 pacho Exp $ + + 16 Feb 2013; Pacho Ramos <pacho@gentoo.org> -udns-0.0.9.ebuild, metadata.xml: + Cleanup due bug #96436 *udns-0.2 (05 Sep 2012) @@ -93,4 +96,3 @@ +udns-0.0.9.ebuild: Initial commit, ebuild by Simon Arlott <bugzilla.gentoo.simon@arlott.org>, see bug #222741. - diff --git a/net-libs/udns/metadata.xml b/net-libs/udns/metadata.xml index a0005ca21d52..c17b3ae5b967 100644 --- a/net-libs/udns/metadata.xml +++ b/net-libs/udns/metadata.xml @@ -2,8 +2,7 @@ <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> <maintainer> - <email>pva@gentoo.org</email> - <name>Peter Volkov</name> + <email>maintainer-needed@gentoo.org</email> </maintainer> <longdescription> UDNS is a stub DNS resolver library with ability to perform both syncronous and asyncronous DNS queries. diff --git a/net-libs/udns/udns-0.0.9.ebuild b/net-libs/udns/udns-0.0.9.ebuild deleted file mode 100644 index b074503da5bc..000000000000 --- a/net-libs/udns/udns-0.0.9.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/udns/udns-0.0.9.ebuild,v 1.14 2011/12/18 18:14:16 armin76 Exp $ - -inherit multilib - -DESCRIPTION="Async-capable DNS stub resolver library" -HOMEPAGE="http://www.corpit.ru/mjt/udns.html" -SRC_URI="http://www.corpit.ru/mjt/udns/${P/-/_}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 ~hppa ppc sparc x86" -IUSE="ipv6 static" - -# Yes, this doesn't depend on any other library beside "system" set -DEPEND="" -RDEPEND="" - -src_compile() { - # Uses non-standard configure script, econf doesn't work - ./configure $(use_enable ipv6) || die "Configure failed" - emake sharedlib staticlib || die "compilation failed" -} - -src_install() { - dolib.so libudns.so.0 || die "dolib.so failed" - dosym libudns.so.0 "/usr/$(get_libdir)/libudns.so" || die "dosym failed" - dolib.a libudns.a || die "dolib.a failed" - - insinto /usr/include - doins udns.h || die "doins failed" - - doman udns.3 || die "doman failed" - dodoc TODO NOTES || die "dodoc failed" -} |