freebsd-ports/science/fvcom/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

58 lines
1.5 KiB
Makefile

PORTNAME= fvcom
PORTVERSION= 2.7.1
PORTREVISION?= 17
CATEGORIES= science
MASTER_SITES= http://fvcom.smast.umassd.edu/FVCOM/index.html/
DISTNAME= sourcecode1
DIST_SUBDIR= fvcom
MAINTAINER= jwb@FreeBSD.org
COMMENT= Unstructured Grid Finite Volume Coastal Ocean Model
WWW= http://fvcom.smast.umassd.edu/FVCOM/index.html
# Converted from RESTRICTED
LICENSE= fvcom
LICENSE_NAME= fvcom
LICENSE_TEXT= Requires (free) registration
LICENSE_PERMS= auto-accept
# Check netcdf lib for Fortran support!
LIB_DEPENDS+= libnetcdff.so:science/netcdf-fortran \
liblapack.so:math/lapack \
libblas.so:math/lapack
USES= fortran
USE_GCC= yes
WRKSRC= ${WRKDIR}/FVCOM2.7.1/FVCOM_source
PLIST_FILES= ${MPIPREFIX}bin/${PORTNAME}${PKGNAMESUFFIX}
.include <bsd.port.pre.mk>
.if !exists(${DISTDIR}/${DIST_SUBDIR}/${DISTFILES})
IGNORE= may not be redistributed because of licensing reasons.\
Please register at http://fvcom.smast.umassd.edu/FVCOM/index.html\
in order to download the source code ${DISTFILES}\
and place it in ${DISTDIR}/${DIST_SUBDIR}/
.endif
MAKE_JOBS_UNSAFE= yes
post-extract:
${MV} ${WRKSRC}/makefile ${WRKSRC}/Makefile
post-patch:
${REINPLACE_CMD} -e 's|gcc|${CC}|g' \
${WRKDIR}/FVCOM2.7.1/METIS_source/makefile
${REINPLACE_CMD} -e 's|cpp|${CPP}|g' \
${WRKDIR}/FVCOM2.7.1/FVCOM_source/Makefile
pre-build:
(cd ${WRKSRC}/../METIS_source && make)
do-install:
${MKDIR} ${STAGEDIR}${PREFIX}/${MPIPREFIX}bin
${INSTALL_PROGRAM} ${WRKSRC}/fvcom \
${STAGEDIR}${PREFIX}/${MPIPREFIX}bin/${PORTNAME}${PKGNAMESUFFIX}
.include <bsd.port.post.mk>