cd544ba61e
Bump PKGREVISION to relax dependency on db library.
31 lines
805 B
Makefile
31 lines
805 B
Makefile
# $NetBSD: options.mk,v 1.6 2010/09/30 08:02:56 obache Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.drupal
|
|
|
|
PKG_OPTIONS_REQUIRED_GROUPS= db
|
|
PKG_OPTIONS_GROUP.db= mysql pgsql
|
|
|
|
PKG_SUPPORTED_OPTIONS= drupal-xmlservices
|
|
PKG_SUGGESTED_OPTIONS= mysql drupal-xmlservices
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### Use PostgreSQL for storing Drupal data
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mpgsql)
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-pgsql-[0-9]*:../../databases/php-pgsql
|
|
.elif !empty(PKG_OPTIONS:Mmysql)
|
|
###
|
|
### Use MySQL for storing Drupal data
|
|
###
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-mysql>=4.3.3:../../databases/php-mysql
|
|
.endif
|
|
|
|
###
|
|
### Enable XML-based services such as the Blogger API, Jabber and RSS
|
|
### syndication.
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mdrupal-xmlservices)
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-dom-[0-9]*:../../textproc/php-dom
|
|
.endif
|