freebsd-ports/graphics/xd3d/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

87 lines
2.3 KiB
Makefile

PORTNAME= xd3d
PORTVERSION= 8.3.1
PORTREVISION= 19
CATEGORIES= graphics math
MASTER_SITES= http://www.cmap.polytechnique.fr/~jouve/xd3d/
MAINTAINER= thierry@FreeBSD.org
COMMENT= Simple scientific visualization tool
WWW= http://www.cmap.polytechnique.fr/~jouve/xd3d/
LICENSE= GPLv2
#--------------------------------------------------------------------------
# You may define these options:
#
# - WITHOUT_IMAGEMAGICK : if you don't need to export bitmap images
# in gif or png format;
#
# - WITHOUT_GIFSICLE : if you don't need to generate animated gifs;
#
# - MEMORY_XD3D : Max memory for xd3d (MBytes, 64 by default)
#
# - F77 : don't use the default fortran compiler;
# - FFLAGS : fortran compiler's flags (-O by default).
#--------------------------------------------------------------------------
OPTIONS_DEFINE= DOCS EXAMPLES
.if !defined(WITHOUT_IMAGEMAGICK)
USES+= magick:run
.endif
.if !defined(WITHOUT_GIFSICLE)
RUN_DEPENDS+= gifsicle:graphics/gifsicle
.endif
MASTER_SITES_BACKUP= http://pompo.net/ports/
REINPLACE_ARGS= -i ""
FETCH_ARGS=
FETCH_BEFORE_ARGS= -R -o ${DISTDIR}/${DISTFILES}
USES= fortran xorg
USE_XORG= x11 xpm
FFLAGS+= -O -std=legacy
MEMORY_XD3D?= 64
.if defined(LANG) && ${LANG:Mfr*} != ""
XD3D_LANG= FRANCAIS
.else
XD3D_LANG= ENGLISH
.endif
DOCS= BUGS CHANGELOG FAQ FORMATS INSTALL README Manuals/formats.txt \
Manuals/xd3d_doc.pdf Manuals/xgraphic_doc.pdf
.include <bsd.port.pre.mk>
do-fetch:
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
${FETCH_CMD} ${FETCH_BEFORE_ARGS} \
${MASTER_SITES}download.php?file=${DISTFILES} \
|| ${FETCH_CMD} ${FETCH_BEFORE_ARGS} ${MASTER_SITES_BACKUP}${DISTFILES}
.endif
pre-configure:
${CP} ${WRKSRC}/RULES.freeBSD ${WRKSRC}/RULES
${REINPLACE_CMD} -e "s|%%WRKSRC%%|${WRKSRC}|" \
-e "s|%%PREFIX%%|${PREFIX}|" \
-e "s|%%X11BASE%%|${LOCALBASE}|" \
-e "s|%%LANG%%|${XD3D_LANG}|" \
-e "s|%%MEMORY_XD3D%%|${MEMORY_XD3D}|" \
-e "s|%%F77%%|${F77}|" \
-e "s|%%FFLAGS%%|${FFLAGS}|" \
-e "s|%%CC%%|${CC}|" \
-e "s|%%CFLAGS%%|${CFLAGS}|" \
${WRKSRC}/RULES
post-install:
${MKDIR} ${STAGEDIR}${DOCSDIR}
. for FILE in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/${FILE} ${STAGEDIR}${DOCSDIR}
. endfor
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${CP} -Rp ${WRKSRC}/Examples/* ${STAGEDIR}${EXAMPLESDIR}
.include <bsd.port.post.mk>