mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
da3162c7c9
Per discussion with bapt on helping pkg handle the changing of these deps and avoiding impossible upgrade senarios. PR: 246767 Reviewed by: manu, bapt Approved by: x11 Differential Revision: https://reviews.freebsd.org/D30824
48 lines
869 B
Makefile
48 lines
869 B
Makefile
PORTNAME= gnujump
|
|
PORTVERSION= 1.0.8
|
|
PORTREVISION= 2
|
|
CATEGORIES= games
|
|
MASTER_SITES= GNU
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= Platform game where you have to jump up to survive
|
|
|
|
LICENSE= GPLv3+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gl gmake localbase sdl xorg
|
|
USE_SDL= sdl mixer image
|
|
USE_GL= gl
|
|
USE_XORG= x11
|
|
|
|
LDFLAGS+= -lm
|
|
|
|
PORTDOCS= AUTHORS README
|
|
PORTDATA= *
|
|
|
|
DESKTOP_ENTRIES="GNUJump" \
|
|
"" \
|
|
"${DATADIR}/skins/default/hero1.0.png" \
|
|
"${PORTNAME}" \
|
|
"Game;ArcadeGame;" \
|
|
""
|
|
|
|
OPTIONS_DEFINE= DOCS NLS
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
NLS_USES= gettext
|
|
NLS_LDFLAGS= -lintl
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|malloc.h|stdlib.h|' ${WRKSRC}/src/gnujump.h
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|