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 /converters | |
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 'converters')
-rw-r--r-- | converters/php-iconv/DESCR | 3 | ||||
-rw-r--r-- | converters/php-iconv/Makefile | 27 |
2 files changed, 30 insertions, 0 deletions
diff --git a/converters/php-iconv/DESCR b/converters/php-iconv/DESCR new file mode 100644 index 00000000000..d7a4d54eef3 --- /dev/null +++ b/converters/php-iconv/DESCR @@ -0,0 +1,3 @@ +PHP is a programming language designed to be embedded into web pages. +This module provides character set conversion facility, using iconv() +programming interface. diff --git a/converters/php-iconv/Makefile b/converters/php-iconv/Makefile new file mode 100644 index 00000000000..1a0e673143a --- /dev/null +++ b/converters/php-iconv/Makefile @@ -0,0 +1,27 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/10/31 19:30:30 jdolecek Exp $ + +MODNAME= iconv +CATEGORIES+= converters +PKGREVISION= # empty +COMMENT= PHP extension for character set conversion + +USE_BUILDLINK3= YES + +# 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 + +.include "../../converters/libiconv/buildlink3.mk" +.include "../../mk/bsd.prefs.mk" +.include "../../mk/buildlink3/bsd.builtin.mk" + +.if !empty(USE_BUILTIN.iconv:M[nN][oO]) +# use libiconv +CONFIGURE_ARGS+= --with-iconv=shared,${BUILDLINK_PREFIX.iconv} +.else +# use libc-provided iconv +CONFIGURE_ARGS+= --with-iconv +.endif + +.include "../../lang/php/ext.mk" +.include "../../mk/bsd.pkg.mk" |