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

75 lines
2.6 KiB
Makefile

PORTNAME= love
PORTVERSION= 0.10.2
PORTREVISION= 4
CATEGORIES= devel games
MASTER_SITES= https://bitbucket.org/rude/love/downloads/ \
http://mirror.amdmi3.ru/distfiles/
PKGNAMESUFFIX= 10
DISTNAME= ${PORTNAME}-${PORTVERSION}-linux-src
MAINTAINER= amdmi3@FreeBSD.org
COMMENT= Open-source 2D game engine (legacy version 0.10)
WWW= https://www.love2d.org/
LICENSE= ZLIB
LICENSE_FILE= ${WRKSRC}/license.txt
LIB_DEPENDS= libmodplug.so:audio/libmodplug \
libmpg123.so:audio/mpg123 \
libvorbisfile.so:audio/libvorbis \
libphysfs.so:devel/physfs \
libfreetype.so:print/freetype2 \
libtheora.so:multimedia/libtheora \
libogg.so:audio/libogg
PORTSCOUT= limit:^0\.10\.
USES= autoreconf compiler:c++11-lib desktop-file-utils gl gmake \
libtool localbase openal pkgconfig sdl shared-mime-info
USE_SDL= sdl2
USE_GL= gl glu
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --program-suffix=${PKGNAMESUFFIX}
WRKSRC= ${WRKDIR}/love-${PORTVERSION}
INSTALL_TARGET= install-strip
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX}
PORTDOCS= *
OPTIONS_DEFINE= DOCS LUAJIT
LUAJIT_DESC= Use luajit (broken)
LUAJIT_BROKEN= love 0.10 segfaults when built with luajit, please disable LUAJIT option and retry
LUAJIT_LIB_DEPENDS= libluajit-5.1.so:lang/luajit
LUAJIT_CONFIGURE_ON= --with-lua=luajit
LUAJIT_USES_OFF= lua
LUAJIT_CONFIGURE_OFF= --with-lua=lua \
--with-luaversion="-${LUA_VER}"
LUAJIT_CONFIGURE_ENV_OFF=LUA_EXECUTABLE="${LUA_CMD}"
post-patch:
@${REINPLACE_CMD} -e 's|\(liblove\)\(.la\)|\1${PKGNAMESUFFIX}\2|g' \
${WRKSRC}/src/Makefile.am
@${REINPLACE_CMD} -Ee \
'/(Exec|Icon|MimeType)/ s|love|&${PKGNAMESUFFIX}|; s|LÖVE|& 0.10|; /^Comment/ s|$$| (legacy version 0.10)|' \
${WRKSRC}/platform/unix/love.desktop.in
@${REINPLACE_CMD} -e 's|x-love-game|x-love${PKGNAMESUFFIX}-game|; s|LÖVE|& 0.10|' \
${WRKSRC}/platform/unix/love.xml
post-install:
@${MV} ${STAGEDIR}${PREFIX}/share/applications/love.desktop \
${STAGEDIR}${PREFIX}/share/applications/love${PKGNAMESUFFIX}.desktop
@${MV} ${STAGEDIR}${PREFIX}/share/pixmaps/love.svg \
${STAGEDIR}${PREFIX}/share/pixmaps/love${PKGNAMESUFFIX}.svg
@${MV} ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/mimetypes/application-x-love-game.svg \
${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/mimetypes/application-x-love${PKGNAMESUFFIX}-game.svg
@${MV} ${STAGEDIR}${PREFIX}/share/mime/packages/love.xml \
${STAGEDIR}${PREFIX}/share/mime/packages/love${PKGNAMESUFFIX}.xml
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for f in changes.txt readme.md
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>