1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00
freebsd-ports/games/jools/Makefile
Gerald Pfeifer a9f015d155 Bump PORTREVISION for ports depending on the canonical version of GCC
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t
GCC 8.2 under most circumstances.

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, as a double check, everything INDEX-11 showed depending on lang/gcc7.

PR:		231590
2018-12-12 01:35:33 +00:00

53 lines
1.3 KiB
Makefile

# Created by: Adam Weinberger <adamw@FreeBSD.org>
# $FreeBSD$
PORTNAME= jools
PORTVERSION= 0.20
PORTREVISION= 12
CATEGORIES= games
MASTER_SITES= http://pessimization.com/software/jools/
DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \
${PORTNAME}-musicpack-1.0${EXTRACT_SUFX}
MAINTAINER= ports@FreeBSD.org
COMMENT= Addictive jewel-swapping puzzle game
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
RUN_DEPENDS= ${PYGAME}
USES= python:2.7
USE_PYTHON= distutils
PORTDOCS= POINTS manual.html manual.pdf manual.tex
OPTIONS_DEFINE= DOCS
DESKTOP_ENTRIES="Jools" "" "${PORTNAME}" \
"${PORTNAME}" "Game;ArcadeGame;" ""
post-extract:
.for d in timed title untimed
@(cd ${WRKDIR} && ${COPYTREE_SHARE} ${d} ${WRKSRC}/jools/music/)
.endfor
post-patch:
@${FIND} ${WRKSRC} -name ".arch-ids" | ${XARGS} ${RM} -r
@${FIND} ${WRKSRC} -name ".arch-ids" -delete \
-or -name ".placeholder" -delete
.for f in setup.py jools/__init__.py jools/jools
@${REINPLACE_CMD} -e 's|^.*#!.*python.*$$|#!${PYTHON_CMD}|' \
${WRKSRC}/${f}
.endfor
@${FIND} ${WRKSRC} -name "*.bak" -delete
post-install:
${LN} -sf ${DATADIR}/images/jools-logo-small.png \
${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME}.png
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/doc/|} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>