aboutsummaryrefslogtreecommitdiffstats
path: root/games/solarwolf/Makefile
blob: 45145de7f115ab6ea7fcc5bf675e2fd1d5b60b93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# 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
LICENSE_FILE=   ${WRKSRC}/lgpl.txt

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>