diff options
author | swills <swills@FreeBSD.org> | 2018-08-23 21:31:05 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2018-08-23 21:31:05 +0800 |
commit | 2a22519835168883306f24e47336b0363072b0c1 (patch) | |
tree | 31cdff87e567e08ece617402d4975111e9f5a1ce /net-p2p | |
parent | ecf74ce938013ed89c70da00a723317a0e82d477 (diff) | |
download | freebsd-ports-gnome-2a22519835168883306f24e47336b0363072b0c1.tar.gz freebsd-ports-gnome-2a22519835168883306f24e47336b0363072b0c1.tar.zst freebsd-ports-gnome-2a22519835168883306f24e47336b0363072b0c1.zip |
net-p2p/bitcoin-daemon: fix deterministic tarball fallout
PR: 230832
Submitted by: kbowling (maintainer)
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/bitcoin-daemon/Makefile | 6 | ||||
-rw-r--r-- | net-p2p/bitcoin/files/bitcoin.conf | 23 |
2 files changed, 26 insertions, 3 deletions
diff --git a/net-p2p/bitcoin-daemon/Makefile b/net-p2p/bitcoin-daemon/Makefile index e9e8ae04c4a6..3b3a9e5a1977 100644 --- a/net-p2p/bitcoin-daemon/Makefile +++ b/net-p2p/bitcoin-daemon/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ MASTERDIR= ${.CURDIR}/../bitcoin -PORTREVISION= 1 +PORTREVISION= 2 PKGNAMESUFFIX= -daemon COMMENT= Virtual Peer-to-Peer Currency (Daemon) @@ -27,11 +27,11 @@ CONFIGURE_ARGS= --with-daemon \ PLIST_FILES= bin/bitcoind \ man/man1/bitcoind.1.gz \ - %%ETCDIR%%.conf.sample + "@sample %%ETCDIR%%.conf.sample" USE_RC_SUBR= bitcoind post-install: - ${INSTALL_DATA} ${WRKSRC}/contrib/init/bitcoind.conf ${STAGEDIR}${PREFIX}/etc/bitcoin.conf.sample + ${INSTALL_DATA} ${FILESDIR}/bitcoin.conf ${STAGEDIR}${PREFIX}/etc/bitcoin.conf.sample .include "${MASTERDIR}/Makefile" diff --git a/net-p2p/bitcoin/files/bitcoin.conf b/net-p2p/bitcoin/files/bitcoin.conf new file mode 100644 index 000000000000..872a64ef57fc --- /dev/null +++ b/net-p2p/bitcoin/files/bitcoin.conf @@ -0,0 +1,23 @@ +# FreeBSD bitcoind configuration file + +# This file is used by bitcoind +# The GUI and CLI will default to generating and using ~/.bitcoin/bitcoin.conf +# +# bitcoin has hundreds of config options and there isn't a single mode of +# operation (mining, client, testnet etc) that can be easily covered by a +# sample file. +# +# A generator for some common configurations exists at +# https://jlopp.github.io/bitcoin-core-config-generator/ + +# Bind to given address and always listen on it. Use [host]:port notation for IPv6 +#bind=<addr> + +# Specify your own public IP address. +#externalip=<ip> + +# Listen for incoming connections on non-default port. +#port=<port> + +# Connect via a SOCKS5 proxy +#proxy=127.0.0.1:9050 |