diff options
author | jdolecek <jdolecek@pkgsrc.org> | 2004-10-31 19:30:29 +0000 |
---|---|---|
committer | jdolecek <jdolecek@pkgsrc.org> | 2004-10-31 19:30:29 +0000 |
commit | 6a7f2fa6c72867cf5a751db0c33a7fbc77b0eaa1 (patch) | |
tree | 9eebc2a4ea3e6fa6c783e1abb83bc43228266985 /textproc | |
parent | 8b88bd9993d19501f7da51423d94ba699d1da60c (diff) | |
download | pkgsrc-6a7f2fa6c72867cf5a751db0c33a7fbc77b0eaa1.tar.gz |
new PHP extension module framework, which makes it possible to build
individual PHP extension packages with either PHP 4.x or PHP 5.x
convert existing php4-* packages to this framework and import as php-*
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/php-wddx/DESCR | 2 | ||||
-rw-r--r-- | textproc/php-wddx/Makefile | 14 |
2 files changed, 16 insertions, 0 deletions
diff --git a/textproc/php-wddx/DESCR b/textproc/php-wddx/DESCR new file mode 100644 index 00000000000..36961fa7031 --- /dev/null +++ b/textproc/php-wddx/DESCR @@ -0,0 +1,2 @@ +PHP is a programming language designed to be embedded into web pages. +This module provides support for WDDX (Web Direct Data eXchange). diff --git a/textproc/php-wddx/Makefile b/textproc/php-wddx/Makefile new file mode 100644 index 00000000000..3ea194cc5ce --- /dev/null +++ b/textproc/php-wddx/Makefile @@ -0,0 +1,14 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/10/31 19:30:30 jdolecek Exp $ + +MODNAME= wddx +CATEGORIES+= textproc +PKGREVISION= # empty +COMMENT= PHP extension for WDDX support + +USE_BUILDLINK3= YES + +CONFIGURE_ARGS+= --enable-${MODNAME}=shared,${BUILDLINK_PREFIX.expat} + +.include "../../lang/php/ext.mk" +.include "../../textproc/expat/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" |