summaryrefslogtreecommitdiff
path: root/lang/onyx
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 /lang/onyx
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 'lang/onyx')
-rw-r--r--lang/onyx/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/onyx/Makefile b/lang/onyx/Makefile
index 1ccac42ad58..13935a1421b 100644
--- a/lang/onyx/Makefile
+++ b/lang/onyx/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.15 2005/04/11 21:46:15 tv Exp $
+# $NetBSD: Makefile,v 1.16 2005/12/05 20:50:26 rillig Exp $
DISTNAME= onyx-${VERS}
PKGREVISION= 1
@@ -13,7 +13,7 @@ COMMENT= Embeddable stack-based threaded interpreted language
BUILD_DEPENDS+= cook-[0-9]*:../../devel/cook
# needs EL_CLIENTDATA in /usr/include/histedit.h
-ONLY_FOR_PLATFORM= NetBSD-1.5[YZ]*-* NetBSD-1.6*-* NetBSD-1.7*-* NetBSD-[2-9]*
+ONLY_FOR_PLATFORM= NetBSD-1.5[YZ]*-* NetBSD-1.6*-* NetBSD-1.7*-* NetBSD-[2-9]*-*
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-pcre-prefix=${BUILDLINK_PREFIX.pcre}
@@ -21,7 +21,7 @@ CONFIGURE_ARGS+= --with-pcre-prefix=${BUILDLINK_PREFIX.pcre}
BUILDLINK_DEPENDS.pcre?= pcre>=4.0
VERS= 5.1.1
-PLIST_SUBST+= VERS=${VERS}
+PLIST_SUBST+= VERS=${VERS:Q}
do-build:
@(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} cook)