ea8c8ec7da
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
57 lines
1.5 KiB
Makefile
57 lines
1.5 KiB
Makefile
# Created by: thierry@pompo.net
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= monsterz
|
|
PORTVERSION= 0.7.1
|
|
PORTREVISION= 14
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://sam.zoy.org/monsterz/ \
|
|
SF/nemysisfreebsdp/:icons
|
|
DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \
|
|
${PORTNAME}.png:icons
|
|
EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= thierry@FreeBSD.org
|
|
COMMENT= Monsterz - arcade puzzle game
|
|
|
|
LICENSE= WTFPL
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
RUN_DEPENDS= ${PYGAME}
|
|
|
|
USES= python:2.7 shebangfix
|
|
SHEBANG_FILES= monsterz.py
|
|
MAKE_ENV= prefix=${PREFIX}
|
|
|
|
PORTDOCS= AUTHORS README TODO
|
|
|
|
SCOREDIR= /var/games
|
|
PLIST_SUB= SCOREDIR=${SCOREDIR}
|
|
|
|
DESKTOP_ENTRIES="Monsterz" "${COMMENT}" "${PORTNAME}" \
|
|
"${PORTNAME}" "Game;ArcadeGame;" false
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
pre-configure:
|
|
${REINPLACE_CMD} '/test -f/ s|scorefile)|&.sample|g' \
|
|
${WRKSRC}/Makefile
|
|
|
|
post-install:
|
|
.for d in graphics sound
|
|
(cd ${WRKSRC} && ${COPYTREE_SHARE} ${d} ${STAGEDIR}${DATADIR})
|
|
.endfor
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.py ${STAGEDIR}${DATADIR}
|
|
(cd ${STAGEDIR}${PREFIX} \
|
|
&& ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py -d ${DATADIR} \
|
|
-f ${DATADIR:S;${PREFIX}/;;} \
|
|
&& ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py -d ${DATADIR}\
|
|
-f ${DATADIR:S;${PREFIX}/;;})
|
|
${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png ${STAGEDIR}${PREFIX}/share/pixmaps/
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/monsterz
|
|
|
|
post-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|