summaryrefslogtreecommitdiff
path: root/eclass/bitcoincore.eclass
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2016-07-01 17:53:05 +0000
committerAnthony G. Basile <blueness@gentoo.org>2016-07-01 19:31:36 -0400
commitce92b12a18de101035723bf6b7714e29b2a60247 (patch)
tree8b9f0eb49735757d5445eb106038b328152b9644 /eclass/bitcoincore.eclass
parentce59a1c91c470fb4313cc319e246251086dfc661 (diff)
downloadgentoo-ce92b12a18de101035723bf6b7714e29b2a60247.tar.gz
gentoo-ce92b12a18de101035723bf6b7714e29b2a60247.tar.xz
Bugfix: libbitcoinconsensus depends on univalue/boost only with USE=test
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'eclass/bitcoincore.eclass')
-rw-r--r--eclass/bitcoincore.eclass9
1 files changed, 8 insertions, 1 deletions
diff --git a/eclass/bitcoincore.eclass b/eclass/bitcoincore.eclass
index c040c3435bd..7022117ff33 100644
--- a/eclass/bitcoincore.eclass
+++ b/eclass/bitcoincore.eclass
@@ -198,7 +198,14 @@ fi
if [ "${BITCOINCORE_NEED_LIBSECP256K1}" = "1" ]; then
BITCOINCORE_COMMON_DEPEND="${BITCOINCORE_COMMON_DEPEND} $LIBSECP256K1_DEPEND"
fi
-if [ "${PN}" != "libbitcoinconsensus" ]; then
+if [ "${PN}" = "libbitcoinconsensus" ]; then
+ BITCOINCORE_COMMON_DEPEND="${BITCOINCORE_COMMON_DEPEND}
+ test? (
+ ${UNIVALUE_DEPEND}
+ >=dev-libs/boost-1.52.0[threads(+)]
+ )
+ "
+else
BITCOINCORE_COMMON_DEPEND="${BITCOINCORE_COMMON_DEPEND}
${UNIVALUE_DEPEND}
>=dev-libs/boost-1.52.0[threads(+)]