freebsd-ports/net/py-zsi-devel/Makefile
Alexander Botero-Lowry 4942ce5a7d - Make Python 2.5.1 the default Python version
- Add significantly better support in bsd.python.mk for working with
   Python Eggs and the easy_install system

Tested by:	pointyhat runs
Approved by:	pav (portmgr)
Most work by:	perky
Thanks to:	pav
2007-07-30 09:42:28 +00:00

51 lines
1.2 KiB
Makefile

# New ports collection makefile for: py-zsi
# Date created: 17 September 2001
# Whom: Johann Visagie <wjv@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= ZSI
DISTVERSION= 2.0-rc3
PORTEPOCH= 1
CATEGORIES= net python
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= pywebsvcs
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
PKGNAMESUFFIX= -devel
DISTNAME= ${PORTNAME}-${DISTVERSION}
MAINTAINER= mnag@FreeBSD.org
COMMENT= A pure Python module that provides an implementation of SOAP 1.1
BUILD_DEPENDS= ${PYXML}
RUN_DEPENDS= ${PYXML}
NO_LATEST_LINK= yes
CONFLICTS= py-zsi-1.*
USE_PYTHON= 2.0+
USE_PYDISTUTILS= yes
PYDISTUTILS_PKGVERSION= 2.0_rc3
DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME}${PKGNAMESUFFIX}
EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME}${PKGNAMESUFFIX}
PORTDOCS= *
post-extract:
@${FIND} -P ${WRKSRC} -name .cvsignore -delete
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for f in CHANGES README doc/*.xsd doc/*.tex
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
.endfor
.endif
.for subdir in interop samples test
@${MKDIR} ${EXAMPLESDIR}/${subdir}
cd ${WRKSRC}/${subdir} && ${FIND} . | \
${CPIO} -pdm -L -R ${SHAREOWN}:${SHAREGRP} ${EXAMPLESDIR}/${subdir}
.endfor
.include <bsd.port.mk>