2006-06-02 20:27:54 +02:00
|
|
|
# $NetBSD: options.mk,v 1.3 2006/06/02 18:27:56 joerg Exp $
|
2005-03-25 14:21:43 +01:00
|
|
|
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.turba
|
|
|
|
PKG_SUPPORTED_OPTIONS= ldap mysql
|
2005-05-31 12:01:36 +02:00
|
|
|
PKG_SUGGESTED_OPTIONS= ldap
|
2005-03-25 14:21:43 +01:00
|
|
|
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
|
|
|
|
###
|
|
|
|
### Use OpenLDAP for storing data
|
|
|
|
###
|
|
|
|
.if !empty(PKG_OPTIONS:Mldap)
|
2006-06-02 20:27:54 +02:00
|
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-ldap>=4.3.3:../../databases/php-ldap
|
2005-03-25 14:21:43 +01:00
|
|
|
.endif
|
|
|
|
|
|
|
|
###
|
|
|
|
### Use MySQL for storing data
|
|
|
|
###
|
|
|
|
.if !empty(PKG_OPTIONS:Mmysql)
|
2006-06-02 20:27:54 +02:00
|
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-mysql>=4.3.3:../../databases/php-mysql
|
2005-03-25 14:21:43 +01:00
|
|
|
.endif
|