freebsd-ports/games/warmux/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

53 lines
1.5 KiB
Makefile

PORTNAME= warmux
DISTVERSION= 11.04.1
PORTREVISION= 10
CATEGORIES= games
MASTER_SITES= http://ftp.nluug.nl/ibiblio/distributions/slitaz/sources/packages-cooking/w/ \
http://mirror.clarkson.edu/slitaz/sources/packages/w/ \
http://ftp.ec-m.fr/pub/OpenBSD/distfiles/ \
https://ftp.uni-erlangen.de/gentoo/distfiles/
MAINTAINER= makc@FreeBSD.org
COMMENT= Turn-based artillery game with free software mascots
WWW= https://web.archive.org/web/20170513192248/http://gna.org/projects/warmux/
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libxml++-2.6.so:textproc/libxml++26 \
libcurl.so:ftp/curl
GNU_CONFIGURE= yes
CONFIGURE_ENV= cxx_present=yes
USES= compiler dos2unix gmake pkgconfig sdl tar:bzip2
USE_SDL= sdl image mixer ttf gfx net
DOS2UNIX_GLOB= fixed_class.h
# build ignores CXXFLAGS
CFLAGS+= ${CFLAGS_${CHOSEN_COMPILER_TYPE}}
CFLAGS_clang= -Wno-c++11-narrowing
WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION:R}
OPTIONS_DEFINE= FRIBIDI SERVER NLS DEBUG
OPTIONS_SUB= yes
DEBUG_CONFIGURE_ENABLE= debug logging
FRIBIDI_DESC= Enable bi-directional unicode support
FRIBIDI_LIB_DEPENDS= libfribidi.so:converters/fribidi
FRIBIDI_CONFIGURE_ENABLE= fribidi
NLS_USES= gettext localbase:ldflags
NLS_CONFIGURE_ENABLE= nls
SERVER_DESC= Enable dedicated server
SERVER_CONFIGURE_ENABLE= servers
post-patch:
${REINPLACE_CMD} -e "s,-Werror,," ${WRKSRC}/Makefile.in \
${WRKSRC}/src/Makefile.in ${WRKSRC}/configure
${REINPLACE_CMD} -e "s,warmux_files.desktop,," ${WRKSRC}/data/Makefile.in
${FIND} -d ${WRKSRC}/data/ -name "*.*~" -delete
.include <bsd.port.mk>