aboutsummaryrefslogtreecommitdiffstats
path: root/games/bubbros/Makefile
blob: 87b28d0163f7a143b5eae83d175089b092e11b83 (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
36
37
38
39
40
41
42
43
44
45
46
47
# Created by: Janos Mohacsi <janos.mohacsi@bsd.hu>
# $FreeBSD$

PORTNAME=   bubbros
PORTVERSION=    1.6
PORTREVISION=   6
CATEGORIES= games
MASTER_SITES=   SF/bub-n-bros/bub-n-bros/${PORTVERSION}

MAINTAINER= ports@FreeBSD.org
COMMENT=    Multiplayer clone of the famous Bubble Bobble game

RUN_DEPENDS=    ${PYTHON_SITELIBDIR}/pygame/__init__.py:${PORTSDIR}/devel/py-game
BUILD_DEPENDS:= ${RUN_DEPENDS}

USE_PYTHON= yes
USES=   tar:bzip2

NO_STAGE=   yes
post-patch:
    @${REINPLACE_CMD} -e 's|/usr/X11R6|${LOCALBASE}|g' \
        ${WRKSRC}/display/setup.py

do-build:
    # Compile the statesaver extension module
    cd ${WRKSRC}/bubbob; ${PYTHON_CMD} setup.py build_ext -i
    # Compile the X-window client extension module
    cd ${WRKSRC}/display; ${PYTHON_CMD} setup.py build_ext -i

do-install:
    @${MKDIR} ${DATADIR}
    (cd ${WRKSRC}; tar --exclude build --exclude "*.orig" --exclude "*.bak" -cf - bubbob common display http2 java metaserver BubBob.py) | \
        (cd ${DATADIR}; tar --unlink -xf -)
    @${PRINTF} "#!/bin/sh\ncd ${DATADIR} && \
        exec ${PYTHON_CMD} ${DATADIR}/BubBob.py\n" > ${WRKDIR}/bubbros.sh
    # build different colors
    @${PYTHON_CMD} ${DATADIR}/bubbob/images/buildcolors.py
    @${INSTALL_SCRIPT} ${WRKDIR}/bubbros.sh ${PREFIX}/bin/bubbros

post-install:
.ifndef(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
    (cd ${WRKSRC}/doc; tar -cf - .) | \
        (cd ${DOCSDIR}; tar --unlink -xf -)
.endif

.include <bsd.port.mk>