grobian 14/11/10 19:35:40 Modified: nettle-2.7.1-r1.ebuild ChangeLog Log: Fix for static-only platforms, such as FreeMiNT, bug #528794 (Portage version: 2.2.14_rc1-prefix/cvs/Darwin i386, signed Manifest commit with key 0x5F75F607C5C74E89)
Revision Changes Path 1.6 dev-libs/nettle/nettle-2.7.1-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/nettle-2.7.1-r1.ebuild?rev=1.6&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/nettle-2.7.1-r1.ebuild?rev=1.6&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/nettle-2.7.1-r1.ebuild?r1=1.5&r2=1.6 Index: nettle-2.7.1-r1.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.7.1-r1.ebuild,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- nettle-2.7.1-r1.ebuild 10 Jun 2014 00:41:07 -0000 1.5 +++ nettle-2.7.1-r1.ebuild 10 Nov 2014 19:35:40 -0000 1.6 @@ -1,10 +1,10 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.7.1-r1.ebuild,v 1.5 2014/06/10 00:41:07 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-2.7.1-r1.ebuild,v 1.6 2014/11/10 19:35:40 grobian Exp $ EAPI=5 -inherit eutils autotools-multilib multilib +inherit eutils autotools-multilib multilib toolchain-funcs DESCRIPTION="Low-level cryptographic library" HOMEPAGE="http://www.lysator.liu.se/~nisse/nettle/" @@ -12,7 +12,7 @@ LICENSE="|| ( LGPL-3 LGPL-2.1 )" SLOT="0/4" # subslot = libnettle soname version -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x86-solaris" IUSE="doc +gmp neon static-libs test" DEPEND="gmp? ( dev-libs/gmp )" @@ -23,7 +23,7 @@ )" src_prepare() { - epatch "${FILESDIR}"/${PN}-2.7-shared.patch + tc-is-static-only || epatch "${FILESDIR}"/${PN}-2.7-shared.patch sed -e '/CFLAGS=/s: -ggdb3::' \ -e 's/solaris\*)/sunldsolaris*)/' \ @@ -42,6 +42,7 @@ $(use_enable gmp public-key) \ $(use_enable static-libs static) \ --disable-openssl \ + $(tc-is-static-only && echo --disable-shared) \ $(use_enable doc documentation) \ $(use_enable neon arm-neon) } 1.109 dev-libs/nettle/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/ChangeLog?rev=1.109&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/ChangeLog?rev=1.109&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nettle/ChangeLog?r1=1.108&r2=1.109 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v retrieving revision 1.108 retrieving revision 1.109 diff -u -r1.108 -r1.109 --- ChangeLog 10 Jun 2014 00:41:07 -0000 1.108 +++ ChangeLog 10 Nov 2014 19:35:40 -0000 1.109 @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/nettle # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.108 2014/06/10 00:41:07 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/ChangeLog,v 1.109 2014/11/10 19:35:40 grobian Exp $ + + 10 Nov 2014; Fabian Groffen <[email protected]> nettle-2.7.1-r1.ebuild: + Fix for static-only platforms, such as FreeMiNT, bug #528794 10 Jun 2014; Mike Frysinger <[email protected]> nettle-2.7.1-r1.ebuild, nettle-2.7.1.ebuild:
