summaryrefslogtreecommitdiff
path: root/www/trac
diff options
context:
space:
mode:
authorgdt <gdt@pkgsrc.org>2007-10-28 23:40:15 +0000
committergdt <gdt@pkgsrc.org>2007-10-28 23:40:15 +0000
commit6f1c30e87f279be72c08ff5832ba899c84c8439c (patch)
treed42bcdffe932063ac5037af2d292eec73f5f3e5e /www/trac
parent5904e751be786fd3cba1e2595253b2ae8d127f64 (diff)
downloadpkgsrc-6f1c30e87f279be72c08ff5832ba899c84c8439c.tar.gz
Remove spurious braces around dependencies. Pointed out by Hubert
Feyrer.
Diffstat (limited to 'www/trac')
-rw-r--r--www/trac/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/www/trac/Makefile b/www/trac/Makefile
index d80c26dec67..91a9e153ed6 100644
--- a/www/trac/Makefile
+++ b/www/trac/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.27 2007/10/12 14:03:48 gdt Exp $
+# $NetBSD: Makefile,v 1.28 2007/10/28 23:40:15 gdt Exp $
#
DISTNAME= trac-0.10.4
@@ -21,13 +21,13 @@ PKG_SUGGESTED_OPTIONS= sqlite
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Msqlite)
-DEPENDS+= ${PYPKGPREFIX}-{sqlite2>=2}:../../databases/py-sqlite2
+DEPENDS+= ${PYPKGPREFIX}-sqlite2>=2:../../databases/py-sqlite2
.endif
.if !empty(PKG_OPTIONS:Mpgsql)
-DEPENDS+= ${PYPKGPREFIX}-{PgSQL>=2.4}:../../databases/py-PgSQL
+DEPENDS+= ${PYPKGPREFIX}-PgSQL>=2.4:../../databases/py-PgSQL
.endif
.if !empty(PKG_OPTIONS:Mpsycopg2)
-DEPENDS+= ${PYPKGPREFIX}-{psycopg>=1.1.14}:../../databases/py-psycopg2
+DEPENDS+= ${PYPKGPREFIX}-psycopg>=1.1.14:../../databases/py-psycopg2
.endif
# MySQL is sort of supported but not recommended by upstream and hence
# omitted.