blob: 307375c148c7d87718eba7c77cb4df2ca569fb53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# $NetBSD: options.mk,v 1.3 2017/01/01 14:43:27 wiz 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]*:../../net/py-txamqp
.endif
###
### LDAP support
###
.if !empty(PKG_OPTIONS:Mldap)
DEPENDS+= ${PYPKGPREFIX}-ldap-[0-9]*:../../databases/py-ldap
PYTHON_VERSIONS_INCOMPATIBLE= 34 35 36 # py-ldap
.endif
###
### Memcached support
###
.if !empty(PKG_OPTIONS:Mmemcached)
DEPENDS+= ${PYPKGPREFIX}-memcached-[0-9]*:../../devel/py-memcached
PYTHON_VERSIONS_INCOMPATIBLE= 34 35 36 # py-memcached
.endif
|