4942ce5a7d
- Add significantly better support in bsd.python.mk for working with Python Eggs and the easy_install system Tested by: pointyhat runs Approved by: pav (portmgr) Most work by: perky Thanks to: pav
33 lines
750 B
Makefile
33 lines
750 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.5
|
|
CATEGORIES= net python
|
|
MASTER_SITES= http://download.gna.org/soya/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= Tofu-${PORTVERSION}
|
|
|
|
MAINTAINER= acm@FreeBSD.org
|
|
COMMENT= Practical high-level network game engine
|
|
|
|
DIST_SUBDIR= python
|
|
USE_BZIP2= yes
|
|
USE_PYTHON= yes
|
|
USE_TWISTED= yes
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_PKGNAME= Tofu
|
|
WRKSRC= ${WRKDIR}/Tofu-${PORTVERSION}
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/py-tofu
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/demo/* ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|