summaryrefslogtreecommitdiff
path: root/textproc/py-libxslt
diff options
context:
space:
mode:
authorrillig <rillig>2005-12-05 20:49:47 +0000
committerrillig <rillig>2005-12-05 20:49:47 +0000
commitb4f920543059af038598712771c3211999ef42a6 (patch)
treedac5b1dd14794d86b061d26b9503adb2552ed3f8 /textproc/py-libxslt
parent5bf026ec112f405b514a2d69a72e10fa92c4c524 (diff)
downloadpkgsrc-b4f920543059af038598712771c3211999ef42a6.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/py-libxslt')
-rw-r--r--textproc/py-libxslt/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/textproc/py-libxslt/Makefile b/textproc/py-libxslt/Makefile
index cc31251dda6..c5b7edb6f64 100644
--- a/textproc/py-libxslt/Makefile
+++ b/textproc/py-libxslt/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.14 2005/10/07 15:42:30 drochner Exp $
+# $NetBSD: Makefile,v 1.15 2005/12/05 20:51:07 rillig Exp $
DISTNAME= libxslt-1.1.15
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
@@ -17,7 +17,7 @@ PYDISTUTILSPKG= YES
PYBINMODULE= YES
NO_CONFIGURE= YES
-MAKE_ENV+= PYLIBXSLTVERSION=${PKGVERSION}
+MAKE_ENV+= PYLIBXSLTVERSION=${PKGVERSION:Q}
SUBST_CLASSES+= setup
SUBST_MESSAGE.setup= "Fixing hardcoded paths."
@@ -25,9 +25,9 @@ SUBST_STAGE.setup= pre-build
SUBST_FILES.setup= setup.py
SUBST_SED.setup= -e "s,@LIBICONVDIR@,${BUILDLINK_PREFIX.iconv},g" \
-e "s,@LIBXML2DIR@,${BUILDLINK_PREFIX.libxml2},g" \
- -e "s,@LIBXSLTDIR@,${BUILDLINK_PREFIX.libxslt},g" \
+ -e "s,@LIBXSLTDIR@,${BUILDLINK_PREFIX.libxslt},g"
-BUILDLINK_DEPENDS.libxslt= libxslt>=${PKGVERSION}
+BUILDLINK_DEPENDS.libxslt+= libxslt>=${PKGVERSION}
.include "../../textproc/libxslt/buildlink3.mk"
.include "../../lang/python/extension.mk"