diff options
author | Li-Wen Hsu <lwhsu@FreeBSD.org> | 2017-08-01 16:45:32 +0000 |
---|---|---|
committer | Li-Wen Hsu <lwhsu@FreeBSD.org> | 2017-08-01 16:45:32 +0000 |
commit | 67ff3911521ef6338aa79a7b07e263baadd6fcf2 (patch) | |
tree | cd42b5654657230c51bab1c5481568068575f3fe /net-p2p/bitcoin-daemon | |
parent | 3449a6fb9215d844376d38563f0edd4ac7ead907 (diff) |
Notes
Diffstat (limited to 'net-p2p/bitcoin-daemon')
-rw-r--r-- | net-p2p/bitcoin-daemon/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net-p2p/bitcoin-daemon/Makefile b/net-p2p/bitcoin-daemon/Makefile index 95e32bf0a629..bc08adba22f2 100644 --- a/net-p2p/bitcoin-daemon/Makefile +++ b/net-p2p/bitcoin-daemon/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ MASTERDIR= ${.CURDIR}/../bitcoin -PORTREVISION= 6 +PORTREVISION= 7 PKGNAMESUFFIX= -daemon COMMENT= Virtual Peer-to-Peer Currency (Daemon) @@ -14,6 +14,9 @@ ONLY_FOR_ARCHS_REASON= does not support big-endian architectures OPTIONS_DEFINE= DEBUG HARDENING TESTS UPNP WALLET ZMQ OPTIONS_DEFAULT= HARDENING UPNP WALLET +USERS= bitcoin +GROUPS= bitcoin + CONFIGURE_ARGS= --with-daemon \ --without-gui \ --without-libs \ @@ -24,4 +27,7 @@ PLIST_FILES= bin/bitcoind USE_RC_SUBR= bitcoind +post-install: + ${INSTALL_DATA} ${WRKSRC}/contrib/debian/examples/bitcoin.conf ${STAGEDIR}${PREFIX}/etc/bitcoin.conf.sample + .include "${MASTERDIR}/Makefile" |