1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00
freebsd-ports/games/bubbros/Makefile
Pav Lucistnik b2c4933e5f - Fix dependencies
Reported by:	krismail
2005-01-29 19:27:09 +00:00

50 lines
1.4 KiB
Makefile

# New ports collection makefile for: bub-n-bros
# Date created: 26 January 2005
# Whom: Janos Mohacsi <janos.mohacsi@bsd.hu>
#
# $FreeBSD$
#
PORTNAME= bubbros
PORTVERSION= 1.3
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= bub-n-bros
MAINTAINER= janos.mohacsi@bsd.hu
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
USE_BZIP2= yes
DOC_FILES= Introduction.html download.html help.html INSTALL.txt
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 -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}
.for file in ${DOC_FILES}
@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>