1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-22 04:17:44 +00:00
freebsd-ports/databases/puppetdb4/Makefile
Alexey Dokuchaev d84da35752 For ports in `databases' category: remove redundant PKGMESSAGE assignment,
which is set appropriately by the b.p.m when `pkg-message' appears on the
SUB_FILES list.
2018-05-05 14:29:00 +00:00

54 lines
1.1 KiB
Makefile

# $FreeBSD$
PORTNAME= puppetdb
PORTVERSION= 4.4.0
CATEGORIES= databases java
MASTER_SITES= http://downloads.puppetlabs.com/puppetdb/
PKGNAMESUFFIX= 4
MAINTAINER= puppet@FreeBSD.org
COMMENT= PuppetDB storeconfigs backend
LICENSE= APACHE20
RUN_DEPENDS= bash:shells/bash \
puppet:sysutils/puppet4
USE_RC_SUBR= puppetdb
CONFLICTS_INSTALL= puppetdb3-* puppetdb5-*
USES= shebangfix
SHEBANG_FILES= ext/bin/puppetdb \
ext/cli/anonymize \
ext/cli/config-migration \
ext/cli/export \
ext/cli/foreground \
ext/cli/import \
ext/cli/ssl-setup \
ext/cli/start \
ext/cli/stop \
ext/cli/reload \
ext/ezbake-functions.sh
USE_JAVA= yes
NO_ARCH= yes
NO_BUILD= yes
JAVA_VERSION= 1.7+
USERS= puppetdb
GROUPS= puppetdb
SUB_LIST= JAVA_HOME=${JAVA_HOME}
SUB_FILES= pkg-message
post-patch:
.for file in Makefile ext/bin/puppetdb ext/cli/ssl-setup \
ext/config/conf.d/jetty.ini ext/config/conf.d/config.ini
@${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|" ${WRKSRC}/${file}
.endfor
@${REINPLACE_CMD} -e "s|%%DATADIR%%|${DATADIR}|" ${WRKSRC}/ext/bin/puppetdb
do-install:
@cd ${WRKSRC} && ${SETENV} DESTDIR=${STAGEDIR} make install-puppetdb
.include <bsd.port.mk>