o Added options.mk o Added dependency py-mxDateTime o TDOD: review options.mk, nedeed fixed PYTHONPATH in sqlobject-admin please review
37 lines
984 B
Makefile
37 lines
984 B
Makefile
# $NetBSD: options.mk,v 1.1 2009/06/10 00:17:17 jihbed Exp $
|
|
|
|
PKG_OPTIONS_VAR = PKG_OPTIONS.SQLObject
|
|
PKG_SUPPORTED_OPTIONS= firebird mysql psycopg1 psycopg2 sqlite sybase
|
|
PKG_SUGGESTED_OPTIONS= psycopg1
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= ${PKG_SUPPORTED_OPTIONS}
|
|
|
|
.if !empty(PKG_OPTIONS:Mmysql)
|
|
DEPENDS+= ${PYPKGPREFIX}-mysqldb-[0-9]*:../../databases/py-mysqldb
|
|
PLIST.mysql= yes
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mpsycopg1)
|
|
DEPENDS+= ${PYPKGPREFIX}-psycopg-[0-9]*:../../databases/py-psycopg
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mpsycopg2)
|
|
DEPENDS+= ${PYPKGPREFIX}-psycopg2-[0-9]*:../../databases/py-psycopg2
|
|
PLIST.psycopg2= yes
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mpsycopg1) || !empty(PKG_OPTIONS:Mpsycopg2)
|
|
PLIST.psycopg1= yes
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Msqlite)
|
|
DEPENDS+= ${PYPKGPREFIX}-sqlite2-[0-9]*:../../databases/py-sqlite2
|
|
PLIST.sqlite= yes
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Msybase)
|
|
DEPENDS+= ${PYPKGPREFIX}-sybase>=0.36:../../databases/py-sybase
|
|
PLIST.sybase= yes
|
|
.endif
|