1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00
freebsd-ports/net-p2p/zetacoin-daemon/Makefile
Rene Ladan 63008e23ae net-p2p/zetacoin: fix build with current boost.
Resurrect -nox11 slave port as -daemon slave port.
Split off cli and tx utilities from main port into -utils slave port.

PR:		237017
Submitted by:	Daniel Morante
Reported by:	jbeich
2019-09-14 14:26:31 +00:00

38 lines
916 B
Makefile

# Created by: Daniel Morante <daniel@morante.net>
# $FreeBSD$
MASTERDIR= ${.CURDIR}/../zetacoin
PKGNAMESUFFIX= -daemon
COMMENT= Peer-to-Peer crypto currency with quick transactions (Daemon)
SLAVE_PORT= yes
RUN_DEPENDS+= zetacoin-cli:net-p2p/zetacoin-utils
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 ZMQ
USERS= ${PORTNAME}
GROUPS= ${PORTNAME}
CONFIGURE_ARGS= --with-daemon \
--without-gui \
--without-libs \
--without-qrencode \
--without-utils
PLIST_FILES= bin/${PORTNAME}d \
"@sample %%ETCDIR%%.conf.sample"
USE_RC_SUBR= ${PORTNAME}
SUB_LIST+= PORTNAME=${PORTNAME}
SUB_FILES= pkg-message
post-install:
${INSTALL_DATA} ${FILESDIR}/${PORTNAME}.conf ${STAGEDIR}${PREFIX}/etc/${PORTNAME}.conf.sample
.include "${MASTERDIR}/Makefile"