1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00
freebsd-ports/net-p2p/bitcoin-utils/Makefile
Vasil Dimov 65c6bc94ff net-p2p/bitcoin*: remove db48 dependency
In r465909 [1], 2 years ago, we added the option to link
net-p2p/bitcoin* against db 5 or 6, still allowing to link against db
4.8 which is long time EOL and has been deprecated and marked for
deletion in 2014 [2].

Now remove the option to link net-p2p/bitcoin* against db48, so the
former does not depend on the latter anymore and db48 can be eventually
removed from the ports tree.

[1]
https://svnweb.freebsd.org/ports?view=revision&revision=465909
68892c7487

[2]
b011342171 (diff-9385162ec22da88a3a66c47891cbde67R19)

PR:		245220
Submitted by:	vd
Approved by:	kbowling (maintainer timeout)
2020-05-01 16:56:33 +00:00

24 lines
507 B
Makefile

# $FreeBSD$
MASTERDIR= ${.CURDIR}/../bitcoin
PKGNAMESUFFIX= -utils
COMMENT= Virtual Peer-to-Peer Currency (CLI and Utilities)
SLAVE_PORT= yes
OPTIONS_DEFINE= DEBUG HARDENING TESTS
OPTIONS_DEFAULT= HARDENING TESTS
CONFIGURE_ARGS= --without-daemon \
--without-gui \
--without-libs \
--without-qrencode \
--without-miniupnpc \
--with-utils \
--disable-wallet
PLIST_FILES= bin/bitcoin-cli bin/bitcoin-tx \
man/man1/bitcoin-cli.1.gz man/man1/bitcoin-tx.1.gz
.include "${MASTERDIR}/Makefile"