blueness    15/03/04 12:39:27

  Modified:             libsecp256k1-9999.ebuild ChangeLog
  Log:
  Update 9999.  Make dep on gmp optional.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  Changes    Path
1.2                  dev-libs/libsecp256k1/libsecp256k1-9999.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsecp256k1/libsecp256k1-9999.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsecp256k1/libsecp256k1-9999.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsecp256k1/libsecp256k1-9999.ebuild?r1=1.1&r2=1.2

Index: libsecp256k1-9999.ebuild
===================================================================
RCS file: 
/var/cvsroot/gentoo-x86/dev-libs/libsecp256k1/libsecp256k1-9999.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libsecp256k1-9999.ebuild    21 Nov 2014 11:42:50 -0000      1.1
+++ libsecp256k1-9999.ebuild    4 Mar 2015 12:39:27 -0000       1.2
@@ -1,11 +1,11 @@
-# Copyright 1999-2014 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/libsecp256k1/libsecp256k1-9999.ebuild,v 1.1 
2014/11/21 11:42:50 blueness Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/libsecp256k1/libsecp256k1-9999.ebuild,v 1.2 
2015/03/04 12:39:27 blueness Exp $
 
 EAPI=5
 
 EGIT_REPO_URI="https://github.com/bitcoin/secp256k1.git";
-inherit git-2 autotools
+inherit git-2 autotools eutils
 
 DESCRIPTION="Optimized C library for EC operations on curve secp256k1"
 HOMEPAGE="https://github.com/bitcoin/secp256k1";
@@ -13,18 +13,17 @@
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS=""
-IUSE="asm doc endomorphism test"
+IUSE="asm doc endomorphism gmp test"
 
 REQUIRED_USE="
        asm? ( amd64 )
 "
 RDEPEND="
-       dev-libs/gmp
+       gmp? ( dev-libs/gmp )
 "
 DEPEND="${RDEPEND}
        virtual/pkgconfig
        >=sys-devel/gcc-4.7
-       asm? ( dev-lang/yasm )
        test? ( dev-libs/openssl )
 "
 
@@ -33,11 +32,22 @@
 }
 
 src_configure() {
+       local field
+       if use gmp && ! use asm; then
+               field=gmp
+       elif use amd64; then
+               field=64bit
+       else
+               field=32bit
+       fi
+
        econf \
                --disable-benchmark \
                $(use_enable test tests) \
                $(use_enable endomorphism)  \
-               --with-field=$(usex asm 64bit_asm $(usex amd64 64bit gmp)) \
+               --with-asm=$(usex asm auto no) \
+               --with-bignum=$(usex gmp gmp no) \
+               --with-field=${field} \
                --disable-static
 }
 



1.3                  dev-libs/libsecp256k1/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsecp256k1/ChangeLog?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsecp256k1/ChangeLog?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsecp256k1/ChangeLog?r1=1.2&r2=1.3

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libsecp256k1/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   23 Feb 2015 21:46:44 -0000      1.2
+++ ChangeLog   4 Mar 2015 12:39:27 -0000       1.3
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libsecp256k1
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsecp256k1/ChangeLog,v 1.2 
2015/02/23 21:46:44 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsecp256k1/ChangeLog,v 1.3 
2015/03/04 12:39:27 blueness Exp $
+
+  04 Mar 2015; Anthony G. Basile <[email protected]> 
libsecp256k1-9999.ebuild:
+  Update 9999.  Make dep on gmp optional.
 
 *libsecp256k1-0.0.0_pre20141212 (23 Feb 2015)
 




Reply via email to