337c6b1297
all PEAR packages to php?-pear-* and all Apache packages to ap13-* or ap2-* respectively. Add new variables to simplify the Makefile handling. Add CONFLICTS on the old names. Reset revisions of bumped packages. ap-php will now depend on the default Apache and PHP version. All programs using it have an implicit option of the Apache version as well. OK from jlam@ and adrianp@.
21 lines
484 B
Makefile
21 lines
484 B
Makefile
# $NetBSD: options.mk,v 1.3 2006/06/02 18:27:56 joerg Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.turba
|
|
PKG_SUPPORTED_OPTIONS= ldap mysql
|
|
PKG_SUGGESTED_OPTIONS= ldap
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### Use OpenLDAP for storing data
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mldap)
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-ldap>=4.3.3:../../databases/php-ldap
|
|
.endif
|
|
|
|
###
|
|
### Use MySQL for storing data
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mmysql)
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-mysql>=4.3.3:../../databases/php-mysql
|
|
.endif
|