summaryrefslogtreecommitdiff
path: root/chat/psi
diff options
context:
space:
mode:
authorrillig <rillig>2005-12-05 20:49:47 +0000
committerrillig <rillig>2005-12-05 20:49:47 +0000
commit472dafdd2e1560bc21a20b89efd58a911dc44409 (patch)
treedac5b1dd14794d86b061d26b9503adb2552ed3f8 /chat/psi
parent55a30558d8942bf85417fab3ed26bec7a7c3aae6 (diff)
downloadpkgsrc-472dafdd2e1560bc21a20b89efd58a911dc44409.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 'chat/psi')
-rw-r--r--chat/psi/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/chat/psi/Makefile b/chat/psi/Makefile
index ad3d2ab9c9b..f61fcf1aa97 100644
--- a/chat/psi/Makefile
+++ b/chat/psi/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.27 2005/10/01 22:02:00 jdolecek Exp $
+# $NetBSD: Makefile,v 1.28 2005/12/05 20:49:54 rillig Exp $
PSI_VERSION= 0.9.3
DISTNAME= psi-${PSI_VERSION}
@@ -26,9 +26,10 @@ HAS_CONFIGURE= yes
CONFIG_SHELL= ${SH}
-CONFIGURE_ARGS= --prefix="${PREFIX}" --qtdir="${QTDIR}"
-CONFIGURE_ARGS+= --with-qca-inc="${BUILDLINK_PREFIX.qca}/include" \
- --with-qca-lib="${BUILDLINK_PREFIX.qca}/lib"
+CONFIGURE_ARGS+= --prefix=${PREFIX:Q}
+CONFIGURE_ARGS+= --qtdir=${QTDIR:Q}
+CONFIGURE_ARGS+= --with-qca-inc=${BUILDLINK_PREFIX.qca:Q}/include
+CONFIGURE_ARGS+= --with-qca-lib=${BUILDLINK_PREFIX.qca:Q}/lib
LANG_FILES= psi_zh.qm psi_nl.qm psi_sk.qm psi_fr.qm psi_cs.qm \
psi_de.qm psi_et.qm psi_pl.qm psi_mk.qm psi_el.qm \