parlay

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

commit 43af73ec85aae9a218758e566f1dab2437d266a5
parent 504221c10241aea68e7250e419e55d7a99943403
Author: parazyd <parazyd@dyne.org>
Date:   Mon,  8 Feb 2021 15:10:40 +0100

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

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

diff --git a/net-p2p/libbitcoin-system/libbitcoin-system-9999.ebuild b/net-p2p/libbitcoin-system/libbitcoin-system-9999.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools git-r3 + +DESCRIPTION="The Bitcoin Development Library" +HOMEPAGE="https://libbitcoin.info" +EGIT_REPO_URI="https://github.com/libbitcoin/${PN}" + +LICENSE="AGPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="static-libs debug +icu test +doc +png" + +DEPEND=" + png? ( + >=media-libs/libpng-1.6.37:= + >=media-gfx/qrencode-3.4.4:= + ) + icu? ( + >=dev-libs/icu-51.2:= + >=dev-libs/boost-1.62.0:=[threads(+),icu(+)] + ) + >=dev-libs/boost-1.62.0:=[threads(+)] + >dev-libs/libsecp256k1-0.1_pre20200911:=[recovery,schnorr] +" +RDEPEND="${DEPEND}" + +src_prepare() { + eautoreconf + default +} + +src_configure() { + econf \ + $(use_with icu) \ + $(use_with test tests) \ + $(use_with doc examples) \ + $(use_with png) \ + $(use_with png qrencode) \ + $(use_enable static-libs static) \ + $(use_enable debug ndebug) +} diff --git a/net-p2p/libbitcoin-system/metadata.xml b/net-p2p/libbitcoin-system/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>