freebsd-ports/devel/icmake/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

83 lines
2.4 KiB
Makefile

PORTNAME= icmake
PORTVERSION= 9.03.01
CATEGORIES= devel
MAINTAINER= bofh@FreeBSD.org
COMMENT= Intelligent C-like Maker
WWW= https://fbb-git.gitlab.io/icmake/
LICENSE= GPLv3
BUILD_DEPENDS= bash:shells/bash \
gsed:textproc/gsed
USES= compiler shebangfix
USE_GITLAB= yes
WRKSRC_SUBDIR= ${PORTNAME}
PORTDOCS= changelog.gz icmake.ps.gz
PORTEXAMPLES= *
REINPLACE_ARGS= -I ""
SHEBANG_FILES= examples/* icm_install icm_prepare scripts/convert
SHEBANG_GLOB= icm_bootstrap
SHEBANG_LANG= icmake
icmake_OLD_CMD= /usr/bin/icmake
icmake_CMD= ${LOCALBASE}/bin/icmake
GL_ACCOUNT= fbb-git
GL_COMMIT= 9b958b05ac462adf6cde394875964a8127599514
OPTIONS_DEFINE= DOCS EXAMPLES
.include <bsd.port.options.mk>
post-patch:
@${REINPLACE_CMD} -e 's|find|find .|g' \
${WRKSRC}/icm_prepare
@${REINPLACE_CMD} -e 's|tput clear|clear|g' \
${WRKSRC}/changelog \
${WRKSRC}/icmbuild/usage.c \
${WRKSRC}/doc/icmconf.7 \
${WRKSRC}/doc/manpage/icmbuild.yo \
${WRKSRC}/doc/manpage/icmconf.yo \
${WRKSRC}/doc/icmbuild.1
@${REINPLACE_CMD} -e 's|sed|gsed|g' \
${WRKSRC}/scripts/conversions \
${WRKSRC}/scripts/convert
@${REINPLACE_CMD} -e 's|"usr/bin"|"bin"| ; \
s|"usr/share/icmake"|"share/icmake"| ; \
s|"usr/share/man"|"man"| ; \
s|"usr/lib/icmake"|"lib/icmake"| ; \
s|"usr/share/doc/icmake"|"share/doc/icmake"| ; \
s|"usr/share/doc/icmake-doc"|"share/examples/icmake"|' \
${WRKSRC}/INSTALL.im
@${REINPLACE_CMD} -e 's|cp -r|cp -R| ; \
s|DOCDOCDIR}/icmake|DOCDIR}/icmake| ; \
s|examples tmp|examples/* tmp|' \
${WRKSRC}/icm_bootstrap \
${WRKSRC}/icm_install
@${REINPLACE_CMD} -e 's|"gcc"|"${CC}"|g; s|-Wall -O2|${CFLAGS}|g' \
${WRKSRC}/doc/icmake.doc \
${WRKSRC}/exec/icmconf \
${WRKSRC}/usr/share/icmake/icmconf
do-build:
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./icm_prepare ${PREFIX}
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./icm_bootstrap x
do-install:
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./icm_install strip progs ${STAGEDIR}
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./icm_install scripts ${STAGEDIR}
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./icm_install etc ${STAGEDIR}
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./icm_install man ${STAGEDIR}
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./icm_install skel ${STAGEDIR}
do-install-DOCS-on:
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./icm_install doc ${STAGEDIR}
do-install-EXAMPLES-on:
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./icm_install docdoc ${STAGEDIR}
.include <bsd.port.mk>