summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgdt <gdt>2013-02-14 14:53:31 +0000
committergdt <gdt>2013-02-14 14:53:31 +0000
commitfcda28c187d412ee9e9e63b5a3b74326b6313e0d (patch)
treeea01ab61189741c07e0c22a5306ce4e94dc22773
parenta5847572641e0de931e5f40fb92c1b0047f9fdca (diff)
downloadpkgsrc-fcda28c187d412ee9e9e63b5a3b74326b6313e0d.tar.gz
Add comment explaining that py-sqlite2 is for sqlite3.
(I'm assuming that if I can't follow this, at least some others will be confused as well.) This is a comment-only change.
-rw-r--r--www/ja-trac/options.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/www/ja-trac/options.mk b/www/ja-trac/options.mk
index 79ce2508123..4905cc840df 100644
--- a/www/ja-trac/options.mk
+++ b/www/ja-trac/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.3 2013/01/20 08:56:48 obache Exp $
+# $NetBSD: options.mk,v 1.4 2013/02/14 14:53:31 gdt Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.trac
PKG_OPTIONS_REQUIRED_GROUPS= db
@@ -9,6 +9,10 @@ PKG_OPTIONS_LEGACY_OPTS= psycopg2:pgsql
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Msqlite)
+# py-sqlite2 is the external (vs. bundled with Python source)
+# implementation of Python DB API 2.0 for sqlite version 3. It is
+# preferred over "py-sqlite3", the bundled version of sqlite3 support,
+# because it is more up to date.
DEPENDS+= ${PYPKGPREFIX}-sqlite2>=2.5.5:../../databases/py-sqlite2
.endif
.if !empty(PKG_OPTIONS:Mpgsql)