blob: fcba8fb5eaa05a4bd16f26dd2b083666d4f9d066 (
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.2 2016/07/09 13:03:35 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 # py-ldap
.endif
###
### Memcached support
###
.if !empty(PKG_OPTIONS:Mmemcached)
DEPENDS+= ${PYPKGPREFIX}-memcached-[0-9]*:../../devel/py-memcached
PYTHON_VERSIONS_INCOMPATIBLE= 34 35 # py-memcached
.endif
|