Import of pkgsrc-2016Q3

This commit is contained in:
2016-10-14 07:49:11 +02:00
committed by Lionel Sambuc
parent 9d819b6d54
commit 1242aa1e36
35952 changed files with 949749 additions and 377083 deletions

View File

@@ -0,0 +1,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