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

82 lines
2.1 KiB
Makefile

PORTNAME= xcftools
PORTVERSION= 1.0.8.20130212
PORTREVISION= 1
CATEGORIES= graphics
MASTER_SITES= http://freeheimdall.spdns.org/files/
MAINTAINER= kalten@gmx.at
COMMENT= Command-line tools for extracting from XCF format (graphics/gimp)
WWW= http://henning.makholm.net/software
LIB_DEPENDS= libpng.so:graphics/png
# xcftools is under a public domain licence
USE_GITHUB= yes
GH_ACCOUNT= j-jorge
GH_TAGNAME= d72ba82
# option NLS (for gettext) is wrong as this port allways needs NLS:
USES= cpe libtool cmake:insource,noninja gmake iconv pkgconfig perl5 gettext
CPE_VENDOR= ${PORTNAME}_project
USE_PERL5= build run
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
INSTALL_TARGET= preinstall
# manual pages not built but there is -h for each program.
# regression tests (TESTS option) fail
PORTDOCS= ChangeLog README TRANSLATION
PLIST_FILES= bin/xcf2png \
bin/xcf2pnm \
bin/xcfinfo \
bin/xcfview
CFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib -lintl
MAKE_JOBS_UNSAFE= yes
OPTIONS_DEFINE= DOCS TESTS
TESTS_DESC= Run self-tests (faulty) (pulls in graphics/netpbm shells/bash)
TESTS_BUILD_DEPENDS= pngtopnm:graphics/netpbm \
bash:shells/bash
.include <bsd.port.options.mk>
post-patch:
@${REINPLACE_CMD} -e "s|^#! \(/bin/bash\)|#!${PREFIX}\1|" \
${WRKSRC}/test/dotest
@${REINPLACE_CMD} -e "s|perl|${PERL}|" \
${WRKSRC}/test/dotest
@${REINPLACE_CMD} -e "s|^#! /usr/bin/perl|#!${PERL}|" \
${WRKSRC}/xcfview \
${WRKSRC}/mancombine.pl \
${WRKSRC}/manpo/mantranslate.pl \
${WRKSRC}/manpo/optipot.pl \
${WRKSRC}/mkenumsc.pl \
${WRKSRC}/mkenumsh.pl \
${WRKSRC}/mkopti.pl \
${WRKSRC}/mktablec.pl
test:
.if ${PORT_OPTIONS:MTESTS}
cd ${WRKSRC}/test && \
${SETENV} ${MAKE_ENV} limits -m 20m ${GMAKE} check
.endif
post-build: test
post-install:
${STRIP_CMD} ${WRKSRC}/bin/xcf2png ${WRKSRC}/bin/xcf2pnm \
${WRKSRC}/bin/xcfinfo
${INSTALL_SCRIPT} ${WRKSRC}/bin/xcf2png ${WRKSRC}/bin/xcf2pnm \
${WRKSRC}/bin/xcfinfo ${WRKSRC}/xcfview \
${STAGEDIR}${PREFIX}/bin
@${MKDIR} ${STAGEDIR}${DOCSDIR}
(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
.include <bsd.port.mk>