It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
81 lines
2.6 KiB
Makefile
81 lines
2.6 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
|
|
WWW= https://www.icinga.com/products/icinga-web-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>
|