freebsd-ports/games/monsterz/Makefile
Eitan Adler c59a3834c4 At the moment 1385 ports use BUILD_DEPENDS= ${RUN_DEPENDS} and 450
ports use BUILD_DEPENDS:= ${RUN_DEPENDS}. This patch fixes ports that are
currently broken. This is a temporary measure until we organically stop using
:= or someone(s) spend a lot of time changing all the ports over.

Explicit duplication > := > = and this just moves ports one step to the left

Approved by:	portmgr
2012-01-21 17:40:15 +00:00

43 lines
1.1 KiB
Makefile

# New ports collection makefile for: monsterz
# Date created: Fri 29 apr 2005
# Whom: thierry@pompo.net
#
# $FreeBSD$
#
PORTNAME= monsterz
PORTVERSION= 0.7.1
PORTREVISION= 3
CATEGORIES= games
MASTER_SITES= http://sam.zoy.org/monsterz/
MAINTAINER= thierry@FreeBSD.org
COMMENT= Monsterz - arcade puzzle game
LICENSE= WTFPL
LICENSE_NAME= Do What The [expletive] You Want To Public License, Version 2
LICENSE_FILE= ${WRKSRC}/COPYING
LICENSE_PERMS= ${_LICENSE_PERMS_DEFAULT}
BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/pygame/__init__.py:${PORTSDIR}/devel/py-game
RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PYTHON= yes
MAKE_ENV= prefix=${PREFIX}
SCOREDIR= /var/games
PLIST_SUB= SCOREDIR=${SCOREDIR}
PORTDOCS= AUTHORS COPYING INSTALL README TODO
post-install:
${STRIP_CMD} ${PREFIX}/games/monsterz
${LN} -sf ${PREFIX}/games/monsterz ${PREFIX}/bin
@${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${PREFIX}/share/games/monsterz
@${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${PREFIX}/share/games/monsterz
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
.endif
.include <bsd.port.mk>