Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Aug 2018 13:31:06 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r477870 - in head/net-p2p: bitcoin-daemon bitcoin/files
Message-ID:  <201808231331.w7NDV6of021847@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: swills
Date: Thu Aug 23 13:31:05 2018
New Revision: 477870
URL: https://svnweb.freebsd.org/changeset/ports/477870

Log:
  net-p2p/bitcoin-daemon: fix deterministic tarball fallout
  
  PR:		230832
  Submitted by:	kbowling (maintainer)

Added:
  head/net-p2p/bitcoin/files/bitcoin.conf   (contents, props changed)
Modified:
  head/net-p2p/bitcoin-daemon/Makefile

Modified: head/net-p2p/bitcoin-daemon/Makefile
==============================================================================
--- head/net-p2p/bitcoin-daemon/Makefile	Thu Aug 23 13:02:25 2018	(r477869)
+++ head/net-p2p/bitcoin-daemon/Makefile	Thu Aug 23 13:31:05 2018	(r477870)
@@ -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"

Added: head/net-p2p/bitcoin/files/bitcoin.conf
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-p2p/bitcoin/files/bitcoin.conf	Thu Aug 23 13:31:05 2018	(r477870)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808231331.w7NDV6of021847>