mr_bones_ 15/06/25 03:25:19 Modified: d0_blind_id-0.5.ebuild ChangeLog Log: fix out-of-source build with modified patch from Nikoli (bug #477310) (Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path 1.6 dev-libs/d0_blind_id/d0_blind_id-0.5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/d0_blind_id/d0_blind_id-0.5.ebuild?rev=1.6&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/d0_blind_id/d0_blind_id-0.5.ebuild?rev=1.6&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/d0_blind_id/d0_blind_id-0.5.ebuild?r1=1.5&r2=1.6 Index: d0_blind_id-0.5.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/d0_blind_id/d0_blind_id-0.5.ebuild,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- d0_blind_id-0.5.ebuild 4 May 2012 18:35:54 -0000 1.5 +++ d0_blind_id-0.5.ebuild 25 Jun 2015 03:25:18 -0000 1.6 @@ -1,8 +1,9 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/d0_blind_id/d0_blind_id-0.5.ebuild,v 1.5 2012/05/04 18:35:54 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/d0_blind_id/d0_blind_id-0.5.ebuild,v 1.6 2015/06/25 03:25:18 mr_bones_ Exp $ -EAPI=4 +EAPI=5 +AUTOTOOLS_AUTORECONF=1 inherit autotools-utils DESCRIPTION="Blind-ID library for user identification using RSA blind signatures" @@ -14,24 +15,26 @@ KEYWORDS="amd64 x86" IUSE="static-libs" -RDEPEND="dev-libs/gmp" +RDEPEND="dev-libs/gmp:0" DEPEND="${RDEPEND} virtual/pkgconfig" DOCS=( d0_blind_id.txt ) -AUTOTOOLS_IN_SOURCE_BUILD=1 +src_prepare() { + # fix out-of-source build + sed -i \ + -e 's, d0_rijndael.c, "$srcdir/d0_rijndael.c",' \ + configure.ac || die + + autotools-utils_src_prepare +} src_configure() { local myeconfargs=( --enable-rijndael --without-openssl --without-tommath - $(use_enable static-libs static) ) autotools-utils_src_configure } - -src_install() { - autotools-utils_src_install -} 1.13 dev-libs/d0_blind_id/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/d0_blind_id/ChangeLog?rev=1.13&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/d0_blind_id/ChangeLog?rev=1.13&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/d0_blind_id/ChangeLog?r1=1.12&r2=1.13 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/d0_blind_id/ChangeLog,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- ChangeLog 30 Jan 2013 22:58:37 -0000 1.12 +++ ChangeLog 25 Jun 2015 03:25:18 -0000 1.13 @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/d0_blind_id -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/d0_blind_id/ChangeLog,v 1.12 2013/01/30 22:58:37 mr_bones_ Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/d0_blind_id/ChangeLog,v 1.13 2015/06/25 03:25:18 mr_bones_ Exp $ + + 25 Jun 2015; Michael Sterrett <[email protected]> d0_blind_id-0.5.ebuild: + fix out-of-source build with modified patch from Nikoli (bug #477310) 30 Jan 2013; Michael Sterrett <[email protected]> -d0_blind_id-0.3.ebuild: old
