16e4c96297
PR: 164669 Submitted by: Olivier Duchateau <duchateau.olivier@gmail.com> (maintaintainer)
28 lines
595 B
Makefile
28 lines
595 B
Makefile
# New ports collection makefile for: py-waitress
|
|
# Date created: 2012-01-02
|
|
# Whom: Olivier Duchateau <duchateau.olivier@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= waitress
|
|
PORTVERSION= 0.8
|
|
CATEGORIES= www python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= duchateau.olivier@gmail.com
|
|
COMMENT= Python WSGI server
|
|
|
|
LICENSE= ZPL21
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= easy_install
|
|
|
|
# Avoid to install patch files backup
|
|
post-patch:
|
|
@cd ${WRKSRC} && \
|
|
${FIND} . -type f -name '*.orig' -exec ${RM} -f \{\} \;
|
|
|
|
.include <bsd.port.mk>
|