diff options
author | ale <ale@FreeBSD.org> | 2007-02-09 17:11:09 +0800 |
---|---|---|
committer | ale <ale@FreeBSD.org> | 2007-02-09 17:11:09 +0800 |
commit | f19113d8652ebb5a860ff22a5fc07a7346769fe3 (patch) | |
tree | ccc2c8a2feade5974211eec66d2476f9d01feebe /net/pear-XML_RPC2/Makefile | |
parent | 2d44f2fde85653d81d8932497d42f6eb7aac8b2f (diff) | |
download | freebsd-ports-graphics-f19113d8652ebb5a860ff22a5fc07a7346769fe3.tar.gz freebsd-ports-graphics-f19113d8652ebb5a860ff22a5fc07a7346769fe3.tar.zst freebsd-ports-graphics-f19113d8652ebb5a860ff22a5fc07a7346769fe3.zip |
Add the PEAR-ified version of Useful Inc's XML-RPC for PHP, since it's
not included anymore in base pear installation.
It has support for HTTP/HTTPS transport, proxies and authentication.
WWW: http://pear.php.net/package/XML_RPC/
Diffstat (limited to 'net/pear-XML_RPC2/Makefile')
-rw-r--r-- | net/pear-XML_RPC2/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/net/pear-XML_RPC2/Makefile b/net/pear-XML_RPC2/Makefile new file mode 100644 index 00000000000..e51b87b2c58 --- /dev/null +++ b/net/pear-XML_RPC2/Makefile @@ -0,0 +1,29 @@ +# Ports collection makefile for: pear-XML_RPC +# Date created: 7 Feb 2007 +# Whom: Alex Dupre <ale@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= XML_RPC +PORTVERSION= 1.5.1 +CATEGORIES= net devel pear + +MAINTAINER= ports@FreeBSD.org +COMMENT= PHP implementation of the XML-RPC protocol + +BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear +RUN_DEPENDS= ${BUILD_DEPENDS} + +CATEGORY= XML +FILES= RPC.php RPC/Server.php RPC/Dump.php +TESTS= allgot.inc empty-value-struct.php empty-value.php \ + extra-lines.php protoport.php test_Dump.php types.php + +post-extract: + @${MKDIR} ${WRKSRC}/RPC + @${MV} ${WRKSRC}/Server.php ${WRKSRC}/Dump.php ${WRKSRC}/RPC + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/devel/pear/bsd.pear.mk" +.include <bsd.port.post.mk> |