30 lines
702 B
Makefile
30 lines
702 B
Makefile
# $NetBSD: options.mk,v 1.4 2014/05/09 07:38:46 thomasklausner Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.py-carbon
|
|
PKG_SUPPORTED_OPTIONS= amqp ldap memcached
|
|
PKG_SUGGESTED_OPTIONS= #
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### AMQP support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mamqp)
|
|
DEPENDS+= ${PYPKGPREFIX}-txamqp-[0-9]*:../../wip/py-txamqp
|
|
.endif
|
|
|
|
###
|
|
### LDAP support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mldap)
|
|
DEPENDS+= ${PYPKGPREFIX}-ldap-[0-9]*:../../databases/py-ldap
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 33 34 34 # py-ldap
|
|
.endif
|
|
|
|
###
|
|
### Memcached support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mmemcached)
|
|
DEPENDS+= ${PYPKGPREFIX}-memcached-[0-9]*:../../devel/py-memcached
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 33 34 34 # py-memcached
|
|
.endif
|