forked from Lainports/freebsd-ports
- Pass maintainership to new submitter[2] PR: ports/129195 [1] ports/129208 [2] Submitted by: magik@back-up.pl (new maintainer) dsh@vlink.ru (old maintainer)
31 lines
905 B
Makefile
31 lines
905 B
Makefile
# New ports collection makefile for: py-webhelpers
|
|
# Date created: Thu Jun 21 12:44:46 MSD 2007
|
|
# Whom: Denis Shaposhnikov <dsh@vlink.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= webhelpers
|
|
PORTVERSION= 0.3.2
|
|
CATEGORIES= www python
|
|
MASTER_SITES= http://pylonshq.com/download/0.9.6.2/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= WebHelpers-${PORTVERSION}
|
|
|
|
MAINTAINER= magik@back-up.pl
|
|
COMMENT= Python helper functions for writing templates in web applications
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}routes>=1.1:${PORTSDIR}/www/py-routes \
|
|
${PYTHON_PKGNAMEPREFIX}simplejson>=1.4:${PORTSDIR}/devel/py-simplejson
|
|
|
|
USE_PYTHON= 2.5
|
|
USE_PYDISTUTILS= easy_install
|
|
PYDISTUTILS_PKGNAME= WebHelpers
|
|
|
|
post-install:
|
|
${FIND} ${PYTHON_SITELIBDIR}/${PYEASYINSTALL_EGG} \
|
|
-type d -exec ${CHMOD} 755 {} +
|
|
${FIND} ${PYTHON_SITELIBDIR}/${PYEASYINSTALL_EGG} \
|
|
-type f -exec ${CHMOD} ${SHAREMODE} {} +
|
|
|
|
.include <bsd.port.mk>
|