diff options
author | Michael Palimaka <kensington@gentoo.org> | 2015-08-03 13:22:08 +0000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2015-08-03 13:22:08 +0000 |
commit | 10957f9d4538b7763a1cd60a3d7884e82b47996c (patch) | |
tree | 7863471c845484a1da4597318c4a7c89bc9258a3 /net-libs | |
parent | Version bump (bug #544212) (diff) | |
download | gentoo-2-10957f9d4538b7763a1cd60a3d7884e82b47996c.tar.gz gentoo-2-10957f9d4538b7763a1cd60a3d7884e82b47996c.tar.bz2 gentoo-2-10957f9d4538b7763a1cd60a3d7884e82b47996c.zip |
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/udns/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/udns/files/udns-0.1-respect-LDFLAGS.patch | 13 | ||||
-rw-r--r-- | net-libs/udns/udns-0.1.ebuild | 43 |
3 files changed, 5 insertions, 57 deletions
diff --git a/net-libs/udns/ChangeLog b/net-libs/udns/ChangeLog index 13f60f74c474..2a27d2eb315b 100644 --- a/net-libs/udns/ChangeLog +++ b/net-libs/udns/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-libs/udns # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/udns/ChangeLog,v 1.35 2015/08/02 18:36:17 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/udns/ChangeLog,v 1.36 2015/08/03 13:22:08 kensington Exp $ + + 03 Aug 2015; Michael Palimaka <kensington@gentoo.org> + -files/udns-0.1-respect-LDFLAGS.patch, -udns-0.1.ebuild: + Remove old. 02 Aug 2015; Agostino Sarubbo <ago@gentoo.org> udns-0.4.ebuild: Stable for x86, wrt bug #517792 diff --git a/net-libs/udns/files/udns-0.1-respect-LDFLAGS.patch b/net-libs/udns/files/udns-0.1-respect-LDFLAGS.patch deleted file mode 100644 index c7afaf8192b2..000000000000 --- a/net-libs/udns/files/udns-0.1-respect-LDFLAGS.patch +++ /dev/null @@ -1,13 +0,0 @@ -=== modified file 'Makefile.in' ---- Makefile.in 2011-10-02 18:48:41 +0000 -+++ Makefile.in 2011-10-02 18:50:00 +0000 -@@ -72,7 +72,7 @@ - sharedlib: $(SOLIBV) - - $(SOLIBV): $(SOBJS) -- $(CC) -shared -Wl,--soname,$(SOLIBV) -o $@ $(SOBJS) -+ $(CC) $(LDFLAGS) -shared -Wl,--soname,$(SOLIBV) -o $@ $(SOBJS) - $(SOLIB): $(SOLIBV) - rm -f $@ - ln -s $(SOLIBV) $@ - diff --git a/net-libs/udns/udns-0.1.ebuild b/net-libs/udns/udns-0.1.ebuild deleted file mode 100644 index 8a15153e9175..000000000000 --- a/net-libs/udns/udns-0.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/udns/udns-0.1.ebuild,v 1.7 2012/07/21 02:21:38 blueness Exp $ - -EAPI="4" -inherit eutils 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 ~ppc64 sparc x86 ~x86-fbsd" -IUSE="ipv6 static" - -# Yes, this doesn't depend on any other library beside "system" set -DEPEND="" -RDEPEND="" - -src_prepare() { - epatch "${FILESDIR}/${PN}-0.1-respect-LDFLAGS.patch" -} - -src_configure() { - # Uses non-standard configure script, econf doesn't work - ./configure $(use_enable ipv6) || die "Configure failed" -} - -src_compile() { - emake sharedlib -} - -src_install() { - dolib.so libudns.so.0 || die "dolib.so failed" - dosym libudns.so.0 "/usr/$(get_libdir)/libudns.so" || die "dosym failed" - - insinto /usr/include - doins udns.h - - doman udns.3 - dodoc TODO NOTES -} |