7d1faa7179
Replace GL_COMMIT by GL_TAGNAME in all ports. The new GL_TAGNAME is backwards-compatible (accepting any commit hash as before), but also understands an actual tag name. Moving to tag names where appropriate is left to individual ports' maintainers. Approved by: portmgr (tcberner, mentor) Differential Revision: https://reviews.freebsd.org/D37077
33 lines
689 B
Makefile
33 lines
689 B
Makefile
PORTNAME= meritous
|
|
PORTVERSION= 1.5
|
|
CATEGORIES= games
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= Action-adventure dungeon crawl game
|
|
WWW= http://www.asceai.net/meritous/
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= gettext gmake gnome sdl
|
|
USE_GNOME= intltool
|
|
USE_GITLAB= yes
|
|
GL_TAGNAME= a754f33ae35f47b98cc1aa7fe8de43ed24662d11
|
|
USE_SDL= sdl mixer image
|
|
|
|
LDFLAGS+= ${LOCALBASE}/lib/libintl.so
|
|
|
|
PORTDOCS= *
|
|
PORTDATA= *
|
|
|
|
OPTIONS_DEFINE= DOCS NLS
|
|
OPTIONS_SUB= yes
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/NEWS ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}/
|
|
|
|
.include <bsd.port.mk>
|