From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C7D45138CEE for ; Thu, 25 Jun 2015 03:25:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2C633E0884; Thu, 25 Jun 2015 03:25:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 67852E0884 for ; Thu, 25 Jun 2015 03:25:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3C8EC3408E5 for ; Thu, 25 Jun 2015 03:25:21 +0000 (UTC) Received: by oystercatcher.gentoo.org (Postfix, from userid 665) id 0D884A51; Thu, 25 Jun 2015 03:25:19 +0000 (UTC) From: "Michael Sterrett (mr_bones_)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, mr_bones_@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/d0_blind_id: d0_blind_id-0.5.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: d0_blind_id-0.5.ebuild ChangeLog X-VCS-Directories: dev-libs/d0_blind_id X-VCS-Committer: mr_bones_ X-VCS-Committer-Name: Michael Sterrett Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20150625032519.0D884A51@oystercatcher.gentoo.org> Date: Thu, 25 Jun 2015 03:25:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1fd01d78-1c5a-4518-b8ec-95b027ef4284 X-Archives-Hash: d3729c3df58c8d866abe34d34dbff5da 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 d0_blind_id-0.5.ebuild: + fix out-of-source build with modified patch from Nikoli (bug #477310) 30 Jan 2013; Michael Sterrett -d0_blind_id-0.3.ebuild: old