View | Details | Raw Unified | Return to bug 230832
Collapse All | Expand All

(-)b/net-p2p/bitcoin-daemon/Makefile (-3 / +3 lines)
Lines 1-7 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
MASTERDIR=	${.CURDIR}/../bitcoin
3
MASTERDIR=	${.CURDIR}/../bitcoin
4
PORTREVISION=	1
4
PORTREVISION=	2
5
PKGNAMESUFFIX=	-daemon
5
PKGNAMESUFFIX=	-daemon
6
6
7
COMMENT=	Virtual Peer-to-Peer Currency (Daemon)
7
COMMENT=	Virtual Peer-to-Peer Currency (Daemon)
Lines 27-37 CONFIGURE_ARGS= --with-daemon \ Link Here
27
27
28
PLIST_FILES=	bin/bitcoind \
28
PLIST_FILES=	bin/bitcoind \
29
		man/man1/bitcoind.1.gz \
29
		man/man1/bitcoind.1.gz \
30
		%%ETCDIR%%.conf.sample
30
		"@sample %%ETCDIR%%.conf.sample"
31
31
32
USE_RC_SUBR=	bitcoind
32
USE_RC_SUBR=	bitcoind
33
33
34
post-install:
34
post-install:
35
	${INSTALL_DATA} ${WRKSRC}/contrib/debian/examples/bitcoin.conf ${STAGEDIR}${PREFIX}/etc/bitcoin.conf.sample
35
	${INSTALL_DATA} ${FILESDIR}/bitcoin.conf ${STAGEDIR}${PREFIX}/etc/bitcoin.conf.sample
36
36
37
.include "${MASTERDIR}/Makefile"
37
.include "${MASTERDIR}/Makefile"
(-)b/net-p2p/bitcoin/files/bitcoin.conf (+23 lines)
Added Link Here
1
# FreeBSD bitcoind configuration file
2
3
# This file is used by bitcoind
4
# The GUI and CLI will default to generating and using ~/.bitcoin/bitcoin.conf
5
#
6
# bitcoin has hundreds of config options and there isn't a single mode of
7
# operation (mining, client, testnet etc)  that can be easily covered by a
8
# sample file.
9
#
10
# A generator for some common configurations exists at
11
# https://jlopp.github.io/bitcoin-core-config-generator/
12
13
# Bind to given address and always listen on it. Use [host]:port notation for IPv6
14
#bind=<addr>
15
16
# Specify your own public IP address.
17
#externalip=<ip>
18
19
# Listen for incoming connections on non-default port.
20
#port=<port>
21
22
# Connect via a SOCKS5 proxy
23
#proxy=127.0.0.1:9050

Return to bug 230832