7ca9327a21
WSGIProxy gives tools to proxy arbitrary(ish) WSGI requests to other processes over HTTP. martynas@ ok
36 lines
733 B
Makefile
36 lines
733 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2009/03/27 23:18:19 fgsch Exp $
|
|
|
|
COMMENT = http proxying tools for wsgi apps
|
|
|
|
MODPY_EGG_VERSION = 0.1
|
|
DISTNAME = WSGIProxy-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME:L}
|
|
|
|
CATEGORIES = www devel
|
|
|
|
HOMEPAGE = http://pythonpaste.org/wsgiproxy/
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = ${MASTER_SITE_PYPI:=W/WSGIProxy/}
|
|
|
|
MODULES = lang/python
|
|
|
|
MODPY_SETUPTOOLS = Yes
|
|
|
|
RUN_DEPENDS = ::devel/py-simplejson \
|
|
::www/py-paste
|
|
|
|
NO_REGRESS = Yes
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/py-wsgiproxy
|
|
${INSTALL_DATA} ${WRKSRC}/docs/index.txt \
|
|
${PREFIX}/share/doc/py-wsgiproxy
|
|
|
|
.include <bsd.port.mk>
|