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)
72 lines
2.2 KiB
Makefile
72 lines
2.2 KiB
Makefile
PORTNAME= interchange
|
|
PORTVERSION= 5.6.3
|
|
CATEGORIES= www perl5
|
|
MASTER_SITES= http://ftp.icdevgroup.org/interchange/5.6/tar/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= RedHat's database-enabled e-commerce server
|
|
WWW= https://www.icdevgroup.org/
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
RUN_DEPENDS= p5-Safe-Hole>=0.10:security/p5-Safe-Hole \
|
|
p5-URI>=1.37:net/p5-URI \
|
|
p5-libwww>=5.810:www/p5-libwww \
|
|
p5-Set-Crontab>=1.00:devel/p5-Set-Crontab \
|
|
p5-Digest-SHA1>=2.11:security/p5-Digest-SHA1
|
|
|
|
USES= cpe perl5 shebangfix tar:bzip2
|
|
CPE_VENDOR= redhat
|
|
SHEBANG_FILES= dist/src/compile.pl \
|
|
dist/src/cpan_local_install \
|
|
dist/src/mod_perl_tlink.pl \
|
|
dist/src/testcgi \
|
|
dist/src/tlink.pl \
|
|
dist/src/vlink.pl
|
|
USE_PERL5= configure
|
|
NO_ARCH= yes
|
|
|
|
CONFLICTS_INSTALL= isc-cron mcron # bin/crontab
|
|
|
|
OPTIONS_DEFINE= MYSQL PGSQL
|
|
OPTIONS_DEFAULT= MYSQL
|
|
MYSQL_RUN_DEPENDS= p5-DBD-mysql>=0:databases/p5-DBD-mysql
|
|
PGSQL_RUN_DEPENDS= p5-DBD-Pg>=0:databases/p5-DBD-Pg
|
|
|
|
GROUPS= interch
|
|
USERS= interch
|
|
USE_RC_SUBR= interchange
|
|
|
|
INTERCH_PREFIX= ${PREFIX}/interchange
|
|
|
|
# Basically the parts of CONFIGURE_ARGS that interest us without
|
|
# Uses/perl5.mk's overriding of PREFIX, INSTALLARCHLIB and INSTALLPRIVLIB,
|
|
# since we install into a custom location.
|
|
INTERCH_CONFIGURE_ARGS= INSTALLDIRS=site \
|
|
INTERCHANGE_USER=interch \
|
|
PREFIX=${INTERCH_PREFIX} \
|
|
force=1
|
|
MAKE_ARGS= NOCPANINSTALL=1
|
|
|
|
pre-install:
|
|
# This directory must exist before the installation happens, otherwise _uid (a
|
|
# file) will be copied to a file called ${STAGEDIR}${INTERCH_PREFIX}.
|
|
${MKDIR} ${STAGEDIR}${INTERCH_PREFIX}
|
|
|
|
do-configure:
|
|
# The same as the do-configure stage in Uses/perl5.mk, except we use
|
|
# INTERCH_CONFIGURE_ARGS instead of CONFIGURE_ARGS.
|
|
@cd ${CONFIGURE_WRKSRC} && \
|
|
${SETENV} ${CONFIGURE_ENV} \
|
|
${PERL5} ${CONFIGURE_CMD} ${INTERCH_CONFIGURE_ARGS}
|
|
|
|
post-install:
|
|
# This directory has to be created here for check-plist to pass, otherwise it
|
|
# complains the @dirrmtry /var/run/interchange entry does not have a matching
|
|
# directory in the stage tree.
|
|
# Its ownership and mode are properly set in the @dir plist entry
|
|
${MKDIR} ${STAGEDIR}/var/run/interchange
|
|
|
|
.include <bsd.port.mk>
|