1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00
freebsd-ports/games/marsnomercy/Makefile
Sunpoet Po-Chuan Hsieh dfe005ee44 Update USES=scons to specify scons of Python 2
- While I'm here, convert emulators/gem5 and games/marsnomercy to USES=scons
2020-05-25 18:33:44 +00:00

56 lines
1.3 KiB
Makefile

# Created by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
# $FreeBSD$
PORTNAME= marsnomercy
PORTVERSION= 0.2.1
PORTREVISION= 13
CATEGORIES= games
MASTER_SITES= SF/mars/mars/${PORTVERSION}
DISTNAME= mars-${PORTVERSION}-src
MAINTAINER= ports@FreeBSD.org
COMMENT= Turn-based strategy game setting on Mars
LICENSE= GPLv2 # version unspecified actually
LIB_DEPENDS= libpng.so:graphics/png
USES= compiler gl scons:python2 sdl
USE_GL= gl
USE_SDL= sdl image ttf
SCONS_ARGS= prefix=${PREFIX}
CXXFLAGS+= ${CXXFLAGS_${CHOSEN_COMPILER_TYPE}}
CXXFLAGS_clang= -Wno-c++11-narrowing
SUB_FILES= mars-nomercy pkg-message
WRKSRC= ${WRKDIR}/mars-${PORTVERSION}
PLIST_FILES= bin/mars-nomercy \
libexec/mars
PLIST_DIRS= %%DATADIR%%/img/units/mercenaries
PORTDATA= *
OPTIONS_DEFINE= DEBUG OPENGL
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDEBUG}
SCONS_ARGS+= debug=1
.else
SCONS_ARGS+= debug=0
.endif
.if ${PORT_OPTIONS:MOPENGL}
SCONS_ARGS+= with_opengl=1
.else
SCONS_ARGS+= with_opengl=0
.endif
do-install:
${INSTALL_SCRIPT} ${WRKDIR}/mars-nomercy ${STAGEDIR}${PREFIX}/bin/
${INSTALL_PROGRAM} ${WRKSRC}/mars ${STAGEDIR}${PREFIX}/libexec/mars
cd ${WRKSRC}/data && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}
@${RM} ${STAGEDIR}${DATADIR}/SConscript
.include <bsd.port.mk>