mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
bcaf25a8c8
There have been lots of missing CONFLICTS_INSTALL entries, either because conflicting ports were added without updating existing ports, due to name changes of generated packages, due to mis-understanding the format and semantics of the conflicts entries, or just due to typoes in package names. This patch is the result of a comparison of all files contained in the official packages with each other. This comparison was based on packages built with default options and may therefore have missed further conflicts with optionally installed files. Where possible, version numbers in conflicts entries have been generalized, some times taking advantage of the fact that a port cannot conflict with itself (due to logic in bsd.port.mk that supresses the pattern match result in that case). A few ports that set the conflicts variables depending on complex conditions (e.g. port options), have been left unmodified, despite probably containing outdated package names. These changes should only affect the installation of locally built ports, not the package building with poudriere. They should give an early indication of the install conflict in cases where currently the pkg command aborts an installation when it detects that an existing file would be overwritten, Approved by: portmgr (implicit)
81 lines
2.5 KiB
Makefile
81 lines
2.5 KiB
Makefile
PORTNAME= icingaweb2
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 2.8.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= net-mgmt www
|
|
PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX}
|
|
|
|
MAINTAINER= joneum@FreeBSD.org
|
|
COMMENT= Next generation web interface for Icinga 1 and 2
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= php:build,web,flavors
|
|
USE_PHP= bcmath bitset ctype curl dom gd gettext hash iconv json ldap \
|
|
mbstring mcrypt memcache memcached opcache openssl pcre pdo \
|
|
pdo_sqlite posix session simplexml soap sockets sqlite3 xml \
|
|
zlib
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= icinga
|
|
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
CONFLICTS_INSTALL= icingaweb2-php* # bin/icingacli
|
|
|
|
SUB_FILES= pkg-message
|
|
SUB_LIST= ETCDIR=${ETCDIR} \
|
|
EXAMPLESDIR=${EXAMPLESDIR} \
|
|
WWWDIR=${WWWDIR}
|
|
|
|
PLIST_SUB= WWWGRP=${WWWGRP} \
|
|
WWWOWN=${WWWOWN}
|
|
|
|
OPTIONS_DEFINE= EXAMPLES LDAP MYSQL NLS PDF PGSQL SQLITE
|
|
OPTIONS_DEFAULT= LDAP MYSQL PGSQL SQLITE
|
|
|
|
PDF_DESC= Export graphs as PDF
|
|
PDF_RUN_DEPENDS= ${PHPBASE}/lib/php/${PHP_EXT_DIR}/imagick.so:graphics/pecl-imagick@${PHP_FLAVOR}
|
|
|
|
NLS_USES= gettext
|
|
NLS_USE= PHP=intl
|
|
PGSQL_USE= PHP=pdo_pgsql,pgsql
|
|
MYSQL_USE= PHP=mysqli,pdo_mysql
|
|
SQLITE_USE= PHP=pdo_sqlite,sqlite3
|
|
LDAP_USE= PHP=ldap
|
|
|
|
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>
|