blueness    14/11/21 11:55:15

  Added:                metadata.xml ChangeLog
                        libbitcoinconsensus-9999.ebuild
  Log:
  Initial commit, needed for bitcoins
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  Changes    Path
1.1                  net-libs/libbitcoinconsensus/metadata.xml

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libbitcoinconsensus/metadata.xml?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libbitcoinconsensus/metadata.xml?rev=1.1&content-type=text/plain

Index: metadata.xml
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
<pkgmetadata>
        <maintainer>
                <email>[email protected]</email>
                <name>Luke Dashjr</name>
        </maintainer>
</pkgmetadata>



1.1                  net-libs/libbitcoinconsensus/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libbitcoinconsensus/ChangeLog?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libbitcoinconsensus/ChangeLog?rev=1.1&content-type=text/plain

Index: ChangeLog
===================================================================
# ChangeLog for <CATEGORY>/<PACKAGE_NAME>
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libbitcoinconsensus/ChangeLog,v 1.1 
2014/11/21 11:55:15 blueness Exp $




1.1                  
net-libs/libbitcoinconsensus/libbitcoinconsensus-9999.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libbitcoinconsensus/libbitcoinconsensus-9999.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libbitcoinconsensus/libbitcoinconsensus-9999.ebuild?rev=1.1&content-type=text/plain

Index: libbitcoinconsensus-9999.ebuild
===================================================================
# Copyright 2010-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-libs/libbitcoinconsensus/libbitcoinconsensus-9999.ebuild,v
 1.1 2014/11/21 11:55:15 blueness Exp $

EAPI=5

inherit autotools eutils git-2 user versionator

MyPV="${PV/_/}"
MyPN="bitcoin"
MyP="${MyPN}-${MyPV}"

DESCRIPTION="Bitcoin Core consensus library"
HOMEPAGE="http://bitcoin.org/";
SRC_URI="
"
EGIT_PROJECT='bitcoin'
EGIT_REPO_URI="git://github.com/bitcoin/bitcoin.git 
https://github.com/bitcoin/bitcoin.git";

LICENSE="MIT ISC GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="test"

RDEPEND="
        >=dev-libs/boost-1.52.0[threads(+)]
        dev-libs/openssl:0[-bindist]
"
DEPEND="${RDEPEND}
        dev-libs/libsecp256k1
"

src_prepare() {
        epatch "${FILESDIR}/0.9.0-sys_leveldb.patch"
        epatch "${FILESDIR}/${PV}-sys_libsecp256k1.patch"
        rm -r src/leveldb src/secp256k1
        eautoreconf
}

src_configure() {
        econf \
                --disable-ccache \
                --disable-static \
                --without-miniupnpc \
                $(use_enable test tests)  \
                --disable-wallet  \
                --with-system-leveldb  \
                --without-daemon \
                --without-utils  \
                --without-gui
}

src_test() {
        emake check
}

src_install() {
        emake DESTDIR="${D}" install
        prune_libtool_files

        dodoc doc/README.md doc/release-notes.md
}




Reply via email to