diff options
Diffstat (limited to 'dev-libs/nettle')
-rw-r--r-- | dev-libs/nettle/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/nettle/files/nettle-2.0-asneeded.patch | 13 | ||||
-rw-r--r-- | dev-libs/nettle/nettle-2.0.ebuild | 41 | ||||
-rw-r--r-- | dev-libs/nettle/nettle-2.1.ebuild | 39 | ||||
-rw-r--r-- | dev-libs/nettle/nettle-2.2.ebuild | 37 |
5 files changed, 5 insertions, 131 deletions
diff --git a/dev-libs/nettle/ChangeLog b/dev-libs/nettle/ChangeLog index dda4a8459228..f674d4c8b81b 100644 --- a/dev-libs/nettle/ChangeLog +++ b/dev-libs/nettle/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/nettle # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.57 2012/03/19 18:54:05 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.58 2012/03/20 02:10:10 radhermit Exp $ + + 20 Mar 2012; Tim Harder <radhermit@gentoo.org> -nettle-2.0.ebuild, + -files/nettle-2.0-asneeded.patch, -nettle-2.1.ebuild, -nettle-2.2.ebuild: + Remove old. 19 Mar 2012; Raúl Porcel <armin76@gentoo.org> nettle-2.4.ebuild: alpha/ia64/s390/sh/sparc stable wrt #400019 diff --git a/dev-libs/nettle/files/nettle-2.0-asneeded.patch b/dev-libs/nettle/files/nettle-2.0-asneeded.patch deleted file mode 100644 index 05e87bd95aae..000000000000 --- a/dev-libs/nettle/files/nettle-2.0-asneeded.patch +++ /dev/null @@ -1,13 +0,0 @@ -http://bugs.gentoo.org/show_bug.cgi?id=285747 - ---- configure.ac -+++ configure.ac -@@ -206,7 +206,7 @@ - LIBHOGWEED_FILE='$(LIBHOGWEED_SONAME).$(LIBHOGWEED_MINOR)' - LIBHOGWEED_LINK='$(CC) $(LDFLAGS) -shared -Wl,-soname=$(LIBHOGWEED_SONAME)' - # FIXME: It might make some sense to link with -lnettle -lgmp -- LIBHOGWEED_LIBS='' -+ LIBHOGWEED_LIBS='-L. -lnettle $(LIBS)' - ;; - esac - diff --git a/dev-libs/nettle/nettle-2.0.ebuild b/dev-libs/nettle/nettle-2.0.ebuild deleted file mode 100644 index 141ed4c6fbdd..000000000000 --- a/dev-libs/nettle/nettle-2.0.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.0.ebuild,v 1.9 2012/01/01 16:13:42 slyfox Exp $ - -EAPI=2 -inherit autotools eutils - -DESCRIPTION="cryptographic library that is designed to fit easily in any context" -HOMEPAGE="http://www.lysator.liu.se/~nisse/nettle/" -SRC_URI="http://www.lysator.liu.se/~nisse/archive/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc s390 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -IUSE="gmp ssl" - -DEPEND="gmp? ( dev-libs/gmp ) - ssl? ( dev-libs/openssl ) - " -RDEPEND="${DEPEND}" - -src_prepare() { - epatch "${FILESDIR}"/${P}-asneeded.patch - epatch "${FILESDIR}"/${P}-binutils-2.22.patch #bug 396659 - sed -i \ - -e '/CFLAGS/s:-ggdb3::' \ - configure.ac || die - eautoreconf -} - -src_configure() { - econf \ - --enable-shared \ - $(use_enable gmp public-key) \ - $(use_enable ssl openssl) -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc AUTHORS ChangeLog NEWS README -} diff --git a/dev-libs/nettle/nettle-2.1.ebuild b/dev-libs/nettle/nettle-2.1.ebuild deleted file mode 100644 index 364a8804b0bb..000000000000 --- a/dev-libs/nettle/nettle-2.1.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.1.ebuild,v 1.13 2012/01/01 16:13:42 slyfox Exp $ - -EAPI=2 -inherit autotools eutils - -DESCRIPTION="cryptographic library that is designed to fit easily in any context" -HOMEPAGE="http://www.lysator.liu.se/~nisse/nettle/" -SRC_URI="http://www.lysator.liu.se/~nisse/archive/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -IUSE="gmp ssl" - -DEPEND="gmp? ( dev-libs/gmp ) - ssl? ( dev-libs/openssl ) - " -RDEPEND="${DEPEND}" - -src_prepare() { - sed -i \ - -e '/CFLAGS/s:-ggdb3::' \ - configure.ac || die - eautoreconf -} - -src_configure() { - econf \ - --enable-shared \ - $(use_enable gmp public-key) \ - $(use_enable ssl openssl) -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc AUTHORS ChangeLog NEWS README -} diff --git a/dev-libs/nettle/nettle-2.2.ebuild b/dev-libs/nettle/nettle-2.2.ebuild deleted file mode 100644 index 27e24513d479..000000000000 --- a/dev-libs/nettle/nettle-2.2.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.2.ebuild,v 1.1 2011/08/08 17:09:53 hwoarang Exp $ - -EAPI="4" - -inherit autotools - -DESCRIPTION="Low-level cryptographic library" -HOMEPAGE="http://www.lysator.liu.se/~nisse/nettle/" -SRC_URI="http://www.lysator.liu.se/~nisse/archive/${P}.tar.gz" - -LICENSE="|| ( LGPL-3 LGPL-2.1 )" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -IUSE="gmp ssl" - -DEPEND="gmp? ( dev-libs/gmp ) - ssl? ( dev-libs/openssl )" -RDEPEND="${DEPEND}" - -src_prepare() { - sed -e "/CFLAGS=/s: -ggdb3::" -i configure.ac || die "sed failed" - eautoreconf -} - -src_configure() { - econf \ - --enable-shared \ - $(use_enable gmp public-key) \ - $(use_enable ssl openssl) -} - -src_install() { - emake DESTDIR="${D}" install - dodoc ChangeLog NEWS README -} |