Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

17
net/php-xmlrpc/DESCR Normal file
View File

@@ -0,0 +1,17 @@
PHP is a programming language designed to be embedded into web pages.
This PHP extension provides functions to write XML-RPC servers and clients.
You can find more information about XML-RPC at http://www.xmlrpc.com/,
and more documentation on this extension and its functions at home page.
The user of this library will typically be implementing either an
XMLRPC server, an XMLRPC client, or both. The client will use the
library to build an in-memory representation of a request, and then
serialize (encode) that request into XML. The client will then send
the XML to the server via external mechanism. (XMLRPC-EPI does
*not* include a transport layer, not even HTTP.) The server will
de-serialize the XML back into an binary representation, call the
appropriate registered method -- thereby generating a response.
The response will be serialized into XML and sent back to the
client. The client will de-serialize it into memory, and can iterate
through the results via API.

36
net/php-xmlrpc/Makefile Normal file
View File

@@ -0,0 +1,36 @@
# $NetBSD: Makefile,v 1.16 2012/10/23 17:18:58 asau Exp $
MODNAME= xmlrpc
CATEGORIES+= net
COMMENT= PHP extension for XML-RPC support
CONFLICTS= php-xmlrpc-[0-9]*
HOMEPAGE= http://xmlrpc-epi.sourceforge.net/
USE_PHP_EXT_PATCHES= YES
CONFIGURE_ARGS+= --enable-${MODNAME}=shared,${BUILDLINK_DIR}
.include "../../lang/php/phpversion.mk"
CONFIGURE_ARGS+= --with-libxml-dir=${BUILDLINK_PREFIX.libxml2}
.include "../../converters/libiconv/buildlink3.mk"
# This is necessary so that PHP would find either the libc iconv
# or use the packaged iconv, as appropriate; using
# --with-iconv=shared,${BUILDLINK_PREFIX.iconv} assumes libiconv exists
#
CHECK_BUILTIN.iconv:= yes
.include "../../converters/libiconv/builtin.mk"
CHECK_BUILTIN.iconv:= no
.if !empty(USE_BUILTIN.iconv:M[nN][oO])
CONFIGURE_ARGS+= --with-iconv-dir=${BUILDLINK_PREFIX.iconv}
.else
CONFIGURE_ARGS+= --with-iconv-dir
.endif
.include "../../textproc/libxml2/buildlink3.mk"
.include "../../lang/php/ext.mk"
.include "../../mk/bsd.pkg.mk"