freebsd-ports/net/py-tofu/Makefile
Marcus Alves Grando 77648bfc14 Tofu is a practical high-level network game engine, written
in Python and based on Twisted. Tofu is designed for games
where players play one or several characters accross several
levels.
This includes jump'n run games, RPG or RTS, but not Tetris-like
games or board game.

It currently support client-server and single player mode;
peer-to-peer mode may be added later.

PR:		86956
Submitted by:	Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
2005-10-08 22:29:53 +00:00

35 lines
795 B
Makefile

# New ports collection makefile for: py-tofu
# Date created: 2005-10-05
# Whom: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
#
# $FreeBSD$
#
PORTNAME= tofu
PORTVERSION= 0.2
CATEGORIES= net python
MASTER_SITES= http://download.gna.org/soya/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= Tofu-${PORTVERSION}
EXTRACT_SUFX= .tar.bz2
MAINTAINER= acardenas@bsd.org.pe
COMMENT= Tofu is a practical high-level network game engine
DIST_SUBDIR= python
USE_BZIP2= yes
USE_PYTHON= yes
USE_TWISTED= yes
USE_PYDISTUTILS= yes
WRKSRC= ${WRKDIR}/Tofu-${PORTVERSION}
EXAMPLESDIR= ${PREFIX}/share/examples/py-tofu
.include <bsd.port.pre.mk>
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/demo/* ${EXAMPLESDIR}
.endif
.include <bsd.port.post.mk>