Index: head/net-p2p/bitcoin/files/bitcoin.conf =================================================================== --- head/net-p2p/bitcoin/files/bitcoin.conf (nonexistent) +++ head/net-p2p/bitcoin/files/bitcoin.conf (revision 477870) @@ -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= + +# Specify your own public IP address. +#externalip= + +# Listen for incoming connections on non-default port. +#port= + +# Connect via a SOCKS5 proxy +#proxy=127.0.0.1:9050 Property changes on: head/net-p2p/bitcoin/files/bitcoin.conf ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/bitcoin-daemon/Makefile =================================================================== --- head/net-p2p/bitcoin-daemon/Makefile (revision 477869) +++ head/net-p2p/bitcoin-daemon/Makefile (revision 477870) @@ -1,37 +1,37 @@ # $FreeBSD$ MASTERDIR= ${.CURDIR}/../bitcoin -PORTREVISION= 1 +PORTREVISION= 2 PKGNAMESUFFIX= -daemon COMMENT= Virtual Peer-to-Peer Currency (Daemon) SLAVE_PORT= yes NOT_FOR_ARCHS= powerpc powerpc64 sparc64 NOT_FOR_ARCHS_REASON= does not support big-endian architectures OPTIONS_DEFINE= DEBUG HARDENING TESTS UPNP ZMQ # WALLET_BDBMODERN is a choice for WALLET, introduced via OPTIONS_RADIO=WALLET # from ${MASTERDIR}/Makefile OPTIONS_DEFAULT= HARDENING UPNP WALLET_BDBMODERN USERS= bitcoin GROUPS= bitcoin CONFIGURE_ARGS= --with-daemon \ --without-gui \ --without-libs \ --without-qrencode \ --without-utils 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"