ecd7a9f091
Ayala. It is a set of PHP classes - no PHP extensions required - that allow developers to create and consume web services based on SOAP 1.1, WSDL 1.1 and HTTP 1.0/1.1. WWW: http://sourceforge.net/projects/nusoap/ PR: ports/116174 Submitted by: Gea-Suan Lin <gslin at gslin.org>
31 lines
560 B
Makefile
31 lines
560 B
Makefile
# New ports collection makefile for: nusoap
|
|
# Date created: 2007-09-07
|
|
# Whom: Gea-Suan Lin <gslin@gslin.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= nusoap
|
|
PORTVERSION= 0.7.2
|
|
CATEGORIES= net www
|
|
MASTER_SITES= SOURCEFORGE
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= gslin@gslin.org
|
|
COMMENT= SOAP Toolkit for PHP
|
|
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
USE_PHP= curl zlib
|
|
USE_ZIP= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
do-install:
|
|
${MKDIR} ${DATADIR}
|
|
${CP} ${WRKSRC}/lib/* ${DATADIR}
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
${CP} ${WRKSRC}/samples/* ${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.post.mk>
|