summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKacper Kowalik <xarthisius@gentoo.org>2011-11-02 16:24:17 +0000
committerKacper Kowalik <xarthisius@gentoo.org>2011-11-02 16:24:17 +0000
commit68efee44c6d2c1833a842c0279939a138cadd691 (patch)
tree15b7e2a2607296577e76bb9ad20e98760dae0381 /net-libs
parentAdd 0.12.7 from the gnome overlay. Used by gnome-3.2. Lots of changes and imp... (diff)
downloadgentoo-2-68efee44c6d2c1833a842c0279939a138cadd691.tar.gz
gentoo-2-68efee44c6d2c1833a842c0279939a138cadd691.tar.bz2
gentoo-2-68efee44c6d2c1833a842c0279939a138cadd691.zip
Marked stable on AMD64 based on arch testing by Agostino ago Sarubbo & Ian Delaney in bug #389125. ppc stable, drop old
(Portage version: 2.2.0_alpha69/cvs/Linux x86_64)
Diffstat (limited to 'net-libs')
-rw-r--r--net-libs/net6/ChangeLog7
-rw-r--r--net-libs/net6/files/net6-1.3.9-libgnutls.patch22
-rw-r--r--net-libs/net6/net6-1.3.9.ebuild38
3 files changed, 6 insertions, 61 deletions
diff --git a/net-libs/net6/ChangeLog b/net-libs/net6/ChangeLog
index a5318cb766d7..970aea04882c 100644
--- a/net-libs/net6/ChangeLog
+++ b/net-libs/net6/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-libs/net6
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/net6/ChangeLog,v 1.44 2011/11/02 14:46:24 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/net6/ChangeLog,v 1.45 2011/11/02 16:24:17 xarthisius Exp $
+
+ 02 Nov 2011; Kacper Kowalik <xarthisius@gentoo.org> -net6-1.3.9.ebuild,
+ -files/net6-1.3.9-libgnutls.patch:
+ Marked stable on AMD64 based on arch testing by Agostino ago Sarubbo & Ian
+ Delaney in bug #389125. ppc stable, drop old
02 Nov 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> net6-1.3.14.ebuild:
x86 stable wrt bug #389125
diff --git a/net-libs/net6/files/net6-1.3.9-libgnutls.patch b/net-libs/net6/files/net6-1.3.9-libgnutls.patch
deleted file mode 100644
index 85143ea5e35a..000000000000
--- a/net-libs/net6/files/net6-1.3.9-libgnutls.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff -Naur net6-1.3.9.old/configure.ac net6-1.3.9/configure.ac
---- net6-1.3.9.old/configure.ac 2009-07-18 17:19:58.000000000 -0400
-+++ net6-1.3.9/configure.ac 2009-07-18 17:21:24.000000000 -0400
-@@ -73,17 +73,7 @@
-
- # Checks for libraries.
- PKG_CHECK_MODULES([libnet6], [sigc++-2.0])
--
--AM_PATH_LIBGNUTLS( 1.0.0,, AC_MSG_ERROR([[
--***
--*** libgnutls was not found. You may want to get it by using the
--*** package manager of your distribution or by compiling the source
--*** from ftp://ftp.gnutls.org/pub/gnutls/. This dependency is
--*** now mandatory.
--]]))
--addlibs="$addlibs $LIBGNUTLS_LIBS"
--addcflags="$LIBGNUTLS_CFLAGS"
--AC_SUBST(addcflags)
-+PKG_CHECK_MODULES([LIBGNUTLS], [gnutls])
-
- # gettext / i18n
- AM_GNU_GETTEXT([external])
diff --git a/net-libs/net6/net6-1.3.9.ebuild b/net-libs/net6/net6-1.3.9.ebuild
deleted file mode 100644
index 0ed686d17200..000000000000
--- a/net-libs/net6/net6-1.3.9.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/net6/net6-1.3.9.ebuild,v 1.5 2009/11/23 14:41:53 maekke Exp $
-
-EAPI="2"
-
-inherit eutils autotools
-
-DESCRIPTION="Network access framework for IPv4/IPv6 written in C++"
-HOMEPAGE="http://gobby.0x539.de/"
-SRC_URI="http://releases.0x539.de/${PN}/${P}.tar.gz"
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 hppa ppc x86"
-IUSE="nls"
-
-RDEPEND="dev-libs/libsigc++:2
- >=net-libs/gnutls-1.2.10"
-DEPEND="${RDEPEND}
- >=dev-util/pkgconfig-0.20
- nls? ( sys-devel/gettext )"
-
-src_prepare() {
- #bug #271989
- epatch "${FILESDIR}"/net6-1.3.9-libgnutls.patch
- #bug #271994
- sed -i -e 's:@addcflags@::g' net6-1.3.pc.in || die
- eautoreconf
-}
-
-src_configure() {
- econf $(use_enable nls)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog NEWS README
-}