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 /mail | |
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 'mail')
-rw-r--r-- | mail/php-imap/DESCR | 3 | ||||
-rw-r--r-- | mail/php-imap/Makefile | 21 |
2 files changed, 24 insertions, 0 deletions
diff --git a/mail/php-imap/DESCR b/mail/php-imap/DESCR new file mode 100644 index 00000000000..fbe4c2cdc96 --- /dev/null +++ b/mail/php-imap/DESCR @@ -0,0 +1,3 @@ +PHP is a programming language designed to be embedded into web pages. +This module provides access to IMAP (Internet Mailbox Access Protocol) +servers. diff --git a/mail/php-imap/Makefile b/mail/php-imap/Makefile new file mode 100644 index 00000000000..a535552fd96 --- /dev/null +++ b/mail/php-imap/Makefile @@ -0,0 +1,21 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/10/31 19:30:30 jdolecek Exp $ + +MODNAME= imap +PKGREVISION= # empty +CATEGORIES+= mail +COMMENT= PHP extension for IMAP (Internet Mailbox Access Protocol) + +USE_BUILDLINK3= YES +USE_PHP_EXT_PATCHES= yes + +CONFIGURE_ARGS+= --with-${MODNAME}=shared,${BUILDLINK_PREFIX.imap-uw} +CONFIGURE_ARGS+= --with-${MODNAME}-ssl=${SSLBASE} +CONFIGURE_ARGS+= --with-${MODNAME}-linkage +CONFIGURE_ENV+= ac_cv_lib_pam_pam_start=no + +LIBS+= -lssl -lcrypto + +.include "../../lang/php/ext.mk" +.include "../../mail/imap-uw/buildlink3.mk" +.include "../../security/openssl/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" |