mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-13 03:51:18 +02:00
60 lines
2.0 KiB
Makefile
60 lines
2.0 KiB
Makefile
# $FreeBSD: head/net-mgmt/icingaweb2/Makefile 509415 2019-08-20 09:41:20Z lme $
|
|
|
|
PORTNAME= icingaweb2
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 2.7.1
|
|
CATEGORIES= net-mgmt www
|
|
|
|
MAINTAINER= lme@FreeBSD.org
|
|
COMMENT= Next generation web interface for Icinga 1 and 2
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= icinga
|
|
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
USES= php:build
|
|
#USE_PHP= ctype dom gd gettext hash json openssl session sockets
|
|
|
|
SUB_FILES= pkg-message
|
|
SUB_LIST+= WWWDIR=${WWWDIR}
|
|
SUB_LIST+= ETCDIR=${ETCDIR}
|
|
SUB_LIST+= EXAMPLESDIR=${EXAMPLESDIR}
|
|
|
|
PLIST_SUB= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP}
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} 's%\(/etc/icingaweb2\)%${PREFIX}\1%g' \
|
|
${WRKSRC}/library/Icinga/Application/ApplicationBootstrap.php
|
|
${REINPLACE_CMD} 's%readlink[^)]*)%"${PREFIX}/bin/php"%g' \
|
|
${WRKSRC}/application/clicommands/WebCommand.php
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d/
|
|
${INSTALL_DATA} ${WRKSRC}/etc/bash_completion.d/icingacli \
|
|
${STAGEDIR}${PREFIX}/etc/bash_completion.d
|
|
cd ${WRKSRC} && ${RM} -r .mailmap changelog.py icingaweb2.spec \
|
|
bin/license_writer.py packages test
|
|
${FIND} ${WRKSRC} -name "*.bak" -delete
|
|
${MKDIR} ${STAGEDIR}${WWWDIR}
|
|
cd ${WRKSRC} && \
|
|
${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}
|
|
${CHMOD} 755 ${STAGEDIR}${WWWDIR}/bin/icingacli
|
|
${RLN} ${STAGEDIR}${WWWDIR}/bin/icingacli ${STAGEDIR}${PREFIX}/bin/icingacli
|
|
${MKDIR} ${STAGEDIR}${ETCDIR}
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/
|
|
.for webserver in apache nginx
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/${webserver}
|
|
# ICINGAWEB_CONFIGDIR is set to /nonexistent to allow staging as user.
|
|
# Once installed, ${ETCDIR} is not world-readable, so point icingacli to
|
|
# a non existing directory. The config files are generated correctly anyway.
|
|
(cd ${STAGEDIR}${WWWDIR} && \
|
|
ICINGAWEB_CONFIGDIR=/nonexistent \
|
|
./bin/icingacli setup config webserver ${webserver} --path=/icingaweb2 \
|
|
--root=${WWWDIR}/public --config=${ETCDIR} \
|
|
--file=${STAGEDIR}${EXAMPLESDIR}/${webserver}/icingaweb2.conf)
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|