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

55 lines
1.5 KiB
Makefile

PORTNAME= slade
PORTVERSION= 3.1.13
PORTREVISION= 4
CATEGORIES= games
MAINTAINER= danfe@FreeBSD.org
COMMENT= Modern editor for Doom-engine based games and source ports
WWW= https://slade.mancubus.net/
LICENSE= GPLv2
BUILD_DEPENDS= zip:archivers/zip
LIB_DEPENDS= libcurl.so:ftp/curl \
libfreeimage.so:graphics/freeimage \
libfreetype.so:print/freetype2 \
libftgl.so:graphics/ftgl \
libsfml-system.so:devel/sfml
USE_GITHUB= yes
GH_ACCOUNT= sirjuddington
GH_PROJECT= ${PORTNAME:tu}
USES= cmake compiler:c++14-lang gl pkgconfig
USE_WX= 3.0
USE_GL= gl glew glu
CMAKE_ARGS= -DwxWidgets_CONFIG_EXECUTABLE:FILEPATH="${WX_CONFIG}" \
-DNO_WEBVIEW:BOOL=ON
PLIST_FILES= bin/slade share/slade3/slade.pk3 \
share/applications/net.mancubus.SLADE.desktop \
share/metainfo/net.mancubus.SLADE.metainfo.xml \
share/icons/net.mancubus.SLADE.png
OPTIONS_DEFINE= FLUIDSYNTH GTK3
OPTIONS_DEFAULT= FLUIDSYNTH
FLUIDSYNTH_LIB_DEPENDS= libfluidsynth.so:audio/fluidsynth
FLUIDSYNTH_RUN_DEPENDS= ${LOCALBASE}/share/sounds/sf2/FluidR3_GM.sf2:audio/fluid-soundfont
FLUIDSYNTH_CMAKE_OFF= -DNO_FLUIDSYNTH:BOOL=ON
GTK3_CMAKE_OFF= -DWX_GTK3:BOOL=OFF
GTK3_VARS_OFF= WANT_WXGTK_VER=2
post-patch:
@${REINPLACE_CMD} -e 's,"alsa","oss", ; \
/share\/sounds\/sf2/s,/usr,${LOCALBASE},g' \
${WRKSRC}/src/Audio/MIDIPlayer.cpp
@${REINPLACE_CMD} -e 's,OpenBSD,${OPSYS},' \
${WRKSRC}/src/External/zreaders/portable_endian.h
@${REINPLACE_CMD} -e 's,wxVSCROLL,static_cast<long>(&),' \
${WRKSRC}/src/MapEditor/UI/Dialogs/ActionSpecialDialog.cpp
.include <bsd.port.mk>