c1a506e6f1
which has the advantage of being available for python-3.x. (default-off option, so no PKGREVISION++)
30 lines
797 B
Makefile
30 lines
797 B
Makefile
# $NetBSD: options.mk,v 1.11 2014/01/30 18:20:19 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.django
|
|
PKG_SUPPORTED_OPTIONS= mysql oracle pgsql sqlite
|
|
PKG_SUGGESTED_OPTIONS= pgsql
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= ${PKG_SUPPORTED_OPTIONS}
|
|
|
|
.if !empty(PKG_OPTIONS:Mmysql)
|
|
DEPENDS+= ${PYPKGPREFIX}-mysqldb-[0-9]*:../../databases/py-mysqldb
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 33 # py-mysqldb
|
|
PLIST.mysql= yes
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Moracle)
|
|
DEPENDS+= ${PYPKGPREFIX}-cx_Oracle-[0-9]*:../../databases/py-cx_Oracle
|
|
PLIST.oracle= yes
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mpgsql)
|
|
DEPENDS+= ${PYPKGPREFIX}-psycopg2-[0-9]*:../../databases/py-psycopg2
|
|
PLIST.pgsql= yes
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Msqlite)
|
|
DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3
|
|
PLIST.sqlite= yes
|
|
.endif
|