freebsd-ports/www/thundercache/Makefile
Stefan Eßer b7f05445c0 Add WWW entries to port Makefiles
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)
2022-09-07 23:10:59 +02:00

106 lines
3.1 KiB
Makefile

PORTNAME= thundercache
PORTVERSION= 6.1
PORTREVISION= 15
CATEGORIES= www
MASTER_SITES= http://www.thundercache.com.br/dist/ \
http://www.bmsoftware.org/packs/ \
http://www8.freebsdbrasil.com.br/~eksffa/thunder/ \
http://www6.freebsdbrasil.com.br/~eksffa/l/dev/thunder/ \
LOCAL/jmelo
DISTNAME= thundercache-6.1.201104260900-${BITS}-fbsd
MAINTAINER= eksffa@freebsdbrasil.com.br
COMMENT= High-performance and high-efficiency caching proxy system
WWW= https://www.bmsoftware.org
LICENSE= commercial
LICENSE_NAME= commercial
LICENSE_TEXT= Commercial software with shareware license to 50 threads
LICENSE_PERMS= dist-mirror pkg-mirror auto-accept
OPTIONS_DEFINE= DEPENDACK APACHE PHP PGSQL
OPTIONS_DEFAULT=DEPENDACK APACHE PHP PGSQL
DEPENDACK_DESC= I have read and understood the depends needs
APACHE_DESC= Install apache for reporting viewing
PHP_DESC= Install PHP for reporting generating
PGSQL_DESC= Install PostgreSQL (report data storing)
USES= php shebangfix tar:bzip2 ssl
SHEBANG_FILES= sbin/thunderlog.php
USE_GCC= yes
ONLY_FOR_ARCHS= i386 amd64
USE_RC_SUBR= thundercache
NO_BUILD= yes
.include <bsd.port.options.mk>
BITS= ${ARCH:S/amd64/64/:S/x86_64/64/:S/i386/32/}bits
WRKSRC= ${WRKDIR}/thunder
.if ${PORT_OPTIONS:MAPACHE}
USES+= apache:run,2.2+
.endif
.if ${PORT_OPTIONS:MPGSQL}
USES+= pgsql
WANT_PGSQL= server
.endif
.if ${PORT_OPTIONS:MPHP}
USE_PHP+= curl pcre bcmath pdo mcrypt hash session
. if ${PORT_OPTIONS:MPGSQL}
USE_PHP+= pdo_pgsql pgsql
. endif
.endif
LIB_DEPENDS+= libcurl.so:ftp/curl \
libutil.so:misc/compat8x
SUB_FILES= pkg-message log.sh test-deps.sh
SUB_LIST= "GREP=${GREP}"
show-info:
@${ECHO_MSG} ""
@${ECHO_MSG} "ATTENTION:"
@${ECHO_MSG} ""
@${ECHO_MSG} " It is very important that you carefully read and respect"
@${ECHO_MSG} " the special build options for the following depends:"
@${ECHO_MSG} ""
@${ECHO_MSG} " ftp/curl LIBSSH2=yes OPENSSL=yes PROXY=yes"
@${ECHO_MSG} " security/openssl ZLIB=yes"
@${ECHO_MSG} " devel/php5-pcre BUNDLED_PCRE=yes (for apache20)"
@${ECHO_MSG} " postgresql${PGSQL_VER}-server \
NLS=yes PAM=yes OPTIMIZED_CFLAGS=yes TZDATA=yes"
@${ECHO_MSG} ""
@${ECHO_MSG} " After you understood it correctly, select DEPENDACK on"
@${ECHO_MSG} " the OPTIONS screen. Run ''make config'' to acknowledge"
@${ECHO_MSG} ""
.if ! ${PORT_OPTIONS:MDEPENDACK}
@${FALSE}
.endif
pre-everything::show-info
do-install:
@${CP} -r ${WRKSRC} ${STAGEDIR}${PREFIX}/
@${INSTALL_SCRIPT} ${WRKDIR}/log.sh ${STAGEDIR}${PREFIX}/thunder/sbin/
@${MKDIR} -m 755 ${STAGEDIR}/var/run/thunder
@(${CHMOD} +x ${WRKDIR}/test-deps.sh ; \
if ! ${WRKDIR}/test-deps.sh > /dev/null 2>&1 ; then \
${ECHO_MSG} "**** FATAL **** " ; \
${ECHO_MSG} "**** THIS PORT MAY NOT WORK PROPERLY **** " ; \
${ECHO_MSG} "Some depends are not built with required features." ; \
${ECHO_MSG} "You must always honor at least the following options" ; \
${ECHO_MSG} "depends as listed:" ; \
${ECHO_MSG} "" ; \
${ECHO_MSG} "ftp/curl LIBSSH2=yes OPENSSL=yes PROXY=yes" ; \
${ECHO_MSG} "" ; \
${ECHO_MSG} "Type ''make show-info'' to read further information." ; \
${ECHO_MSG} "" ; \
fi)
.include <bsd.port.mk>