9baa90b307
ZSI, the Zolera SOAP Infrastructure, is a pure-Python module that provides an implementation of SOAP messaging, as described in SOAP 1.1 Specification (see http://www.w3.org/TR/soap). It can also be used to build applications using SOAP Messages with Attachments (see http://www.w3.org/TR/SOAP-attachments). ZSI is intended to make it easier to write web services in Python. [...]
36 lines
758 B
Makefile
36 lines
758 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/04/19 15:13:28 ajacoutot Exp $
|
|
|
|
COMMENT= Zolera SOAP Infrastructure
|
|
|
|
MODPY_EGG_VERSION=2.0
|
|
DISTNAME= ZSI-${MODPY_EGG_VERSION}
|
|
PKGNAME= py-${DISTNAME:L}
|
|
CATEGORIES= net devel
|
|
|
|
HOMEPAGE= http://pywebsvcs.sourceforge.net/
|
|
|
|
# Zope Public License (ZPL)
|
|
# Python 2.0 License
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pywebsvcs/}
|
|
|
|
MODULES= lang/python
|
|
|
|
MODPY_SETUPTOOLS=Yes
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
RUN_DEPENDS= ::textproc/py-xml
|
|
|
|
# regress needs network access
|
|
REGRESS_IS_INTERACTIVE=Yes
|
|
REGRESS_DEPENDS=::${BUILD_PKGPATH}
|
|
|
|
do-regress:
|
|
find ${WRKSRC}/test -name \*.py -exec ${MODPY_BIN} {} \;
|
|
|
|
.include <bsd.port.mk>
|