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 /security/php-mhash | |
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 'security/php-mhash')
-rw-r--r-- | security/php-mhash/DESCR | 2 | ||||
-rw-r--r-- | security/php-mhash/Makefile | 14 |
2 files changed, 16 insertions, 0 deletions
diff --git a/security/php-mhash/DESCR b/security/php-mhash/DESCR new file mode 100644 index 00000000000..dece779b038 --- /dev/null +++ b/security/php-mhash/DESCR @@ -0,0 +1,2 @@ +PHP is a programming language designed to be embedded into web pages. +This module provides access to the mhash hash algorithms library. diff --git a/security/php-mhash/Makefile b/security/php-mhash/Makefile new file mode 100644 index 00000000000..0a276e79144 --- /dev/null +++ b/security/php-mhash/Makefile @@ -0,0 +1,14 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/10/31 19:30:30 jdolecek Exp $ + +MODNAME= mhash +CATEGORIES+= security +PKGREVISION= # empty +COMMENT= PHP extension for the mhash hash algorithms library + +USE_BUILDLINK3= YES + +CONFIGURE_ARGS+= --with-${MODNAME}=shared,${BUILDLINK_PREFIX.mhash} + +.include "../../lang/php/ext.mk" +.include "../../security/mhash/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" |