65c6bc94ff
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 https://github.com/freebsd/freebsd-ports/commit/68892c74876772806eaca3a9ecc1308e9459acea [2] https://github.com/freebsd/freebsd-ports/commit/b0113421712e3e2543fa9e1e0726502ef475e372#diff-9385162ec22da88a3a66c47891cbde67R19 PR: 245220 Submitted by: vd Approved by: kbowling (maintainer timeout)
24 lines
507 B
Makefile
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"
|