summaryrefslogtreecommitdiff
path: root/www/horde/options.mk
diff options
context:
space:
mode:
authoradrianp <adrianp@pkgsrc.org>2006-06-16 09:23:21 +0000
committeradrianp <adrianp@pkgsrc.org>2006-06-16 09:23:21 +0000
commit8fcfe41d5b71452145ad7d7c26dd18bd04a837d7 (patch)
treebbbc76823de6af400a3a140790873878c11a62a4 /www/horde/options.mk
parent2f4275d54694c721433f92d5b73a54c22a886ad3 (diff)
downloadpkgsrc-8fcfe41d5b71452145ad7d7c26dd18bd04a837d7.tar.gz
Bump to 3.1.1nb2 to address recent XSS issue (patches from Horde CVS)
Diffstat (limited to 'www/horde/options.mk')
-rw-r--r--www/horde/options.mk31
1 files changed, 31 insertions, 0 deletions
diff --git a/www/horde/options.mk b/www/horde/options.mk
new file mode 100644
index 00000000000..af52520399d
--- /dev/null
+++ b/www/horde/options.mk
@@ -0,0 +1,31 @@
+# $NetBSD: options.mk,v 1.1 2006/06/16 09:23:21 adrianp Exp $
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.horde
+PKG_SUPPORTED_OPTIONS= ldap pgsql mysql
+PKG_SUGGESTED_OPTIONS= mysql
+
+.include "../../mk/bsd.options.mk"
+
+###
+### Use OpenLDAP for storing user details
+###
+.if !empty(PKG_OPTIONS:Mldap)
+. include "../../databases/openldap-client/buildlink3.mk"
+DEPENDS+= ${PHP_PKG_PREFIX}-ldap>=4.3.3:../../databases/php-ldap
+.endif
+
+###
+### Use PostgreSQL for storing user details
+###
+.if !empty(PKG_OPTIONS:Mpgsql)
+. include "../../mk/pgsql.buildlink3.mk"
+DEPENDS+= ${PHP_PKG_PREFIX}-pgsql>=4.3.3:../../databases/php-pgsql
+.endif
+
+###
+### Use MySQL for storing user details
+###
+.if !empty(PKG_OPTIONS:Mmysql)
+. include "../../mk/mysql.buildlink3.mk"
+DEPENDS+= ${PHP_PKG_PREFIX}-mysql>=4.3.3:../../databases/php-mysql
+.endif