1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00
freebsd-ports/net/py-zsi/Makefile
Marcus Alves Grando a98078346e - Use easy_install to avoid deinstall errors
PR:		128257
Submitted by:	Wen Heping <wenheping___gmail.com>
2008-10-29 17:10:52 +00:00

44 lines
991 B
Makefile

# New ports collection makefile for: py-zsi
# Date created: 17 September 2001
# Whom: Johann Visagie <wjv@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= zsi
PORTVERSION= 2.0
PORTEPOCH= 1
CATEGORIES= net python
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= pywebsvcs
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= ${PORTNAME:U}-${PORTVERSION}
MAINTAINER= mnag@FreeBSD.org
COMMENT= A pure Python module that provides an implementation of SOAP 1.1
BUILD_DEPENDS= ${PYXML}
RUN_DEPENDS= ${PYXML}
CONFLICTS= py-zsi-devel-2.*
USE_PYTHON= 2.3+
USE_PYDISTUTILS= easy_install
PYDISTUTILS_PKGNAME= ZSI
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for docfile in CHANGES README doc/zsi.* doc/*.tex
@${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR}
.endfor
.endif
.if !defined(NOPORTEXAMPLES)
.for subdir in interop samples test
@${MKDIR} ${EXAMPLESDIR}/${subdir}
@${CP} -rp ${WRKSRC}/${subdir}/* ${EXAMPLESDIR}/${subdir}
.endfor
.endif
.include <bsd.port.mk>