summaryrefslogtreecommitdiff
path: root/textproc/postgresql-autodoc
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2005-12-05 20:49:47 +0000
committerrillig <rillig@pkgsrc.org>2005-12-05 20:49:47 +0000
commitb71a1d488b6b45e0a968a4c149990c25b6a09215 (patch)
treedac5b1dd14794d86b061d26b9503adb2552ed3f8 /textproc/postgresql-autodoc
parent624eed58928f83676fbd7ca01a5f6974bb2cce2a (diff)
downloadpkgsrc-b71a1d488b6b45e0a968a4c149990c25b6a09215.tar.gz
Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
Diffstat (limited to 'textproc/postgresql-autodoc')
-rw-r--r--textproc/postgresql-autodoc/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/textproc/postgresql-autodoc/Makefile b/textproc/postgresql-autodoc/Makefile
index 8c5fff560ff..4929c3a638b 100644
--- a/textproc/postgresql-autodoc/Makefile
+++ b/textproc/postgresql-autodoc/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.18 2005/07/16 01:19:24 jlam Exp $
+# $NetBSD: Makefile,v 1.19 2005/12/05 20:51:07 rillig Exp $
#
DISTNAME= postgresql_autodoc-1.24
@@ -10,13 +10,13 @@ MAINTAINER= recht@NetBSD.org
HOMEPAGE= http://www.rbt.ca/autodoc/
COMMENT= Generate HTML, DOT, and XML description of database structure
-DEPENDS= p5-DBD-postgresql-[0-9]*:../../databases/p5-DBD-postgresql
+DEPENDS+= p5-DBD-postgresql-[0-9]*:../../databases/p5-DBD-postgresql
DEPENDS+= p5-HTML-Template-[0-9]*:../../www/p5-HTML-Template
WRKSRC= ${WRKDIR}/postgresql_autodoc
USE_TOOLS+= gmake perl:run
GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --datadir=${PREFIX}/share/${PKGBASE}
-CONFIGURE_ENV+= ac_cv_path_PERL=${PERL5}
+CONFIGURE_ARGS+= --datadir=${PREFIX:Q}/share/${PKGBASE:Q}
+CONFIGURE_ENV+= ac_cv_path_PERL=${PERL5:Q}
.include "../../mk/bsd.pkg.mk"