freebsd-ports/devel/py-pytemplate/Makefile
Ruslan Makhmatkhanov 4af50cd1e1 - remove bogus setuptools dependency (the port is using distutils)
- trim Makefile header
- add license (GPLv3)
- limit python version to 2.x
- remove WWW, because it isn't working anymore
- bump PORTREVISION because of dependencies change

PR:		172329
Submitted by:	rm (myself)
Approved by:	maintainer timeout (2 weeks)
Feature safe:	yes
2012-10-17 18:07:28 +00:00

31 lines
668 B
Makefile

# Created by: Benoit Calvez <benoit@litchis.org>
# $FreeBSD$
PORTNAME= pytemplate
PORTVERSION= 1.5.1
PORTREVISION= 2
CATEGORIES= devel python
MASTER_SITES= http://www.bulot.org/downloads/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= benoit@litchis.org
COMMENT= Pytemplate gives python developers a starting framework
LICENSE= GPLv3
USE_PYTHON= -2.7
USE_PYDISTUTILS= yes
EXAMPLESDIR= ${PREFIX}/share/examples/py-pytemplate
EXAMPLES= daemonexample.py example.py threadexample.py
post-install:
.if !defined(NOPORTEXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
.for f in ${EXAMPLES}
@${INSTALL_DATA} ${WRKSRC}/${f} ${EXAMPLESDIR}
.endfor
.endif
.include <bsd.port.mk>