parlay

yet another gentoo overlay
git clone https://git.parazyd.org/parlay
Log | Files | Refs | README

commit 84b4dcff152abe7d11970ee28e89db6b46119eee
parent 9e7e8db844d7c58d69edb3e2d6a41de362e09f79
Author: parazyd <parazyd@dyne.org>
Date:   Mon,  8 Feb 2021 15:04:11 +0100

net-p2p/libbitcoin-node: Add 9999 ebuild.

Diffstat:
Anet-p2p/libbitcoin-node/libbitcoin-node-9999.ebuild | 35+++++++++++++++++++++++++++++++++++
Anet-p2p/libbitcoin-node/metadata.xml | 7+++++++
2 files changed, 42 insertions(+), 0 deletions(-)

diff --git a/net-p2p/libbitcoin-node/libbitcoin-node-9999.ebuild b/net-p2p/libbitcoin-node/libbitcoin-node-9999.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools git-r3 + +DESCRIPTION="Bitcoin full node based on libbitcoin-blockchain" +HOMEPAGE="https://libbitcoin.info" +EGIT_REPO_URI="https://github.com/libbitcoin/${PN}" + +LICENSE="AGPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="static-libs debug test" + +DEPEND=" + >=dev-libs/boost-1.62.0:=[threads(+)] + =net-p2p/libbitcoin-blockchain-${PV} + =net-p2p/libbitcoin-network-${PV} +" +RDEPEND="${DEPEND}" + +src_prepare() { + eautoreconf + default +} + +src_configure() { + econf \ + --with-console \ + $(use_with test tests) \ + $(use_enable static-libs static) \ + $(use_enable debug ndebug) +} diff --git a/net-p2p/libbitcoin-node/metadata.xml b/net-p2p/libbitcoin-node/metadata.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer type="person"> + <email>parazyd@dyne.org</email> +</maintainer> +</pkgmetadata>