1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-30 01:15:52 +00:00
freebsd-ports/games/solarwolf/Makefile
Marcus von Appen 6d83e65a8b - Convert games/ to new USES=python
Approved by:	portmgr (implicit)
2014-10-20 17:36:02 +00:00

35 lines
1.0 KiB
Makefile

# Created by: Maxim Sobolev <sobomax@FreeBSD.org>
# $FreeBSD$
PORTNAME= solarwolf
PORTVERSION= 1.5
PORTREVISION= 9
CATEGORIES= games
MASTER_SITES= http://www.pygame.org/shredwheat/solarwolf/
MAINTAINER= mail@maxlor.com
COMMENT= Action/arcade game originally based of SolarFox on the Atari 2600
LICENSE= LGPL21
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/pygame/__init__.py:${PORTSDIR}/devel/py-game
USES= python:2
DESKTOP_ENTRIES= "SolarWolf" "${COMMENT}" "solarwolf" \
"solarwolf" "Game;ArcadeGame;" false
do-build:
${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}
do-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/share/solarwolf
(cd ${WRKSRC}; tar -cf - --exclude ".xvpics" --exclude "dist" .) | \
(cd ${STAGEDIR}${PREFIX}/share/solarwolf; tar --unlink -xf -)
${PRINTF} "#!/bin/sh\nexec ${PYTHON_CMD} ${PREFIX}/share/solarwolf/solarwolf.py\n" \
> ${STAGEDIR}${PREFIX}/bin/solarwolf
${CP} ${WRKSRC}/dist/solarwolf.6.gz ${STAGEDIR}${MAN6PREFIX}/man/man6/
${CP} ${WRKSRC}/dist/solarwolf.png ${STAGEDIR}${PREFIX}/share/pixmaps/
.include <bsd.port.mk>