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 | 52c19805011b2d8d525f4d2a6c01cf961940d9aa (patch) | |
tree | 9eebc2a4ea3e6fa6c783e1abb83bc43228266985 /misc | |
parent | 0ed49ace1ff1fc3ca3ff39742f593ac63c9a9c81 (diff) | |
download | pkgsrc-52c19805011b2d8d525f4d2a6c01cf961940d9aa.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 'misc')
-rw-r--r-- | misc/php-calendar/DESCR | 2 | ||||
-rw-r--r-- | misc/php-calendar/Makefile | 13 | ||||
-rw-r--r-- | misc/php-mbstring/DESCR | 2 | ||||
-rw-r--r-- | misc/php-mbstring/Makefile | 13 |
4 files changed, 30 insertions, 0 deletions
diff --git a/misc/php-calendar/DESCR b/misc/php-calendar/DESCR new file mode 100644 index 00000000000..e64bd4a3dab --- /dev/null +++ b/misc/php-calendar/DESCR @@ -0,0 +1,2 @@ +PHP is a programming language designed to be embedded into web pages. +This module provides support for calendar date conversions. diff --git a/misc/php-calendar/Makefile b/misc/php-calendar/Makefile new file mode 100644 index 00000000000..bc34e5a2d8f --- /dev/null +++ b/misc/php-calendar/Makefile @@ -0,0 +1,13 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/10/31 19:30:30 jdolecek Exp $ + +MODNAME= calendar +CATEGORIES+= misc +PKGREVISION= # empty +COMMENT= PHP extension for calendar conversion support + +USE_BUILDLINK3= YES + +CONFIGURE_ARGS+= --enable-${MODNAME} + +.include "../../lang/php/ext.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/misc/php-mbstring/DESCR b/misc/php-mbstring/DESCR new file mode 100644 index 00000000000..27f12e9d68f --- /dev/null +++ b/misc/php-mbstring/DESCR @@ -0,0 +1,2 @@ +PHP is a programming language designed to be embedded into web pages. +This module provides multibyte (currently, Japanese only) support. diff --git a/misc/php-mbstring/Makefile b/misc/php-mbstring/Makefile new file mode 100644 index 00000000000..4abe494a8f6 --- /dev/null +++ b/misc/php-mbstring/Makefile @@ -0,0 +1,13 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/10/31 19:30:30 jdolecek Exp $ + +MODNAME= mbstring +CATEGORIES+= misc +PKGREVISION= # empty +COMMENT= PHP extension for multibyte characters support (currently, Japanese only) + +USE_BUILDLINK3= YES + +CONFIGURE_ARGS+= --enable-${MODNAME}=shared,${BUILDLINK_DIR} + +.include "../../lang/php/ext.mk" +.include "../../mk/bsd.pkg.mk" |