diff --git a/doc/CHANGES b/doc/CHANGES index 1bf6ee49ce03..9122e3757df7 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,4 +1,4 @@ -$NetBSD: CHANGES,v 1.10046 2005/05/07 18:59:05 jdolecek Exp $ +$NetBSD: CHANGES,v 1.10047 2005/05/07 19:29:50 jdolecek Exp $ Changes to the packages collection and infrastructure in 2005: @@ -2317,3 +2317,4 @@ Changes to the packages collection and infrastructure in 2005: Removed milter-spamc [wiz 2005-05-07] Updated pear-SOAP to 0.8.1 [jdolecek 2005-05-07] Added php-eaccelerator-0.9.2a [jdolecek 2005-05-07] + Added php-soap-5.0.4 [jdolecek 2005-05-07] diff --git a/net/Makefile b/net/Makefile index b68352e850d7..017a050c9433 100644 --- a/net/Makefile +++ b/net/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.554 2005/05/05 19:36:57 xtraeme Exp $ +# $NetBSD: Makefile,v 1.555 2005/05/07 19:29:50 jdolecek Exp $ # COMMENT= Networking tools @@ -279,6 +279,7 @@ SUBDIR+= php-ftp SUBDIR+= php-snmp SUBDIR+= php-sockets SUBDIR+= php-yp +SUBDIR+= php5-soap SUBDIR+= pim6dd SUBDIR+= pim6sd SUBDIR+= pload diff --git a/net/php5-soap/DESCR b/net/php5-soap/DESCR new file mode 100644 index 000000000000..dccc6fca30c1 --- /dev/null +++ b/net/php5-soap/DESCR @@ -0,0 +1,3 @@ +PHP is a programming language designed to be embedded into web pages. +The SOAP extension can be used to write SOAP Servers and Clients. +It supports subsets of SOAP 1.1, SOAP 1.2 and WSDL 1.1 specifications. diff --git a/net/php5-soap/Makefile b/net/php5-soap/Makefile new file mode 100644 index 000000000000..7b8a848cb2da --- /dev/null +++ b/net/php5-soap/Makefile @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1.1.1 2005/05/07 19:28:01 jdolecek Exp $ + +MODNAME= soap +CATEGORIES+= net +COMMENT= PHP5 extension for SOAP functions + +MAINTAINER= jdolecek@NetBSD.org + + +CONFIGURE_ARGS+= --enable-${MODNAME} +CONFIGURE_ARGS+= --with-libxml-dir=${BUILDLINK_PREFIX.libxml2} + +PHP_VERSION_REQD= 5 +.include "../../lang/php/ext.mk" +.include "../../textproc/libxml2/buildlink3.mk" +.include "../../mk/bsd.pkg.mk"