Sat Jan 14 02:11:00 2012 UTC ()
Use native zip etc. if available.


(hans)
diff -r1.36 -r1.37 pkgsrc/mk/tools/tools.SunOS.mk

cvs diff -r1.36 -r1.37 pkgsrc/mk/tools/tools.SunOS.mk (expand / switch to unified diff)

--- pkgsrc/mk/tools/tools.SunOS.mk 2011/12/14 03:17:25 1.36
+++ pkgsrc/mk/tools/tools.SunOS.mk 2012/01/14 02:11:00 1.37
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: tools.SunOS.mk,v 1.36 2011/12/14 03:17:25 joerg Exp $ 1# $NetBSD: tools.SunOS.mk,v 1.37 2012/01/14 02:11:00 hans Exp $
2# 2#
3# System-supplied tools for the Solaris operating system. 3# System-supplied tools for the Solaris operating system.
4# 4#
5# We bootstrap a pdksh shell on this platform. 5# We bootstrap a pdksh shell on this platform.
6 6
7TOOLS_PLATFORM.[?= [ # shell builtin 7TOOLS_PLATFORM.[?= [ # shell builtin
8.if exists(/usr/bin/gawk) 8.if exists(/usr/bin/gawk)
9TOOLS_PLATFORM.awk?= /usr/bin/gawk 9TOOLS_PLATFORM.awk?= /usr/bin/gawk
10.else 10.else
11TOOLS_PLATFORM.awk?= /usr/bin/nawk 11TOOLS_PLATFORM.awk?= /usr/bin/nawk
12.endif 12.endif
13TOOLS_PLATFORM.basename?= /usr/bin/basename 13TOOLS_PLATFORM.basename?= /usr/bin/basename
14.if exists(/bin/bash) 14.if exists(/bin/bash)
@@ -201,13 +201,19 @@ TOOLS_PLATFORM.texi2html?= /usr/sfw/bin/ @@ -201,13 +201,19 @@ TOOLS_PLATFORM.texi2html?= /usr/sfw/bin/
201.endif 201.endif
202TOOLS_PLATFORM.touch?= /usr/bin/touch 202TOOLS_PLATFORM.touch?= /usr/bin/touch
203TOOLS_PLATFORM.tr?= /usr/xpg4/bin/tr 203TOOLS_PLATFORM.tr?= /usr/xpg4/bin/tr
204TOOLS_PLATFORM.true?= true # shell builtin 204TOOLS_PLATFORM.true?= true # shell builtin
205TOOLS_PLATFORM.tsort?= /usr/ccs/bin/tsort 205TOOLS_PLATFORM.tsort?= /usr/ccs/bin/tsort
206.if exists(/usr/bin/unzip) 206.if exists(/usr/bin/unzip)
207TOOLS_PLATFORM.unzip?= /usr/bin/unzip 207TOOLS_PLATFORM.unzip?= /usr/bin/unzip
208.endif 208.endif
209TOOLS_PLATFORM.wc?= /usr/bin/wc 209TOOLS_PLATFORM.wc?= /usr/bin/wc
210TOOLS_PLATFORM.xargs?= /usr/bin/xargs 210TOOLS_PLATFORM.xargs?= /usr/bin/xargs
211.if exists(/usr/bin/yacc) 211.if exists(/usr/bin/yacc)
212TOOLS_PLATFORM.yacc?= /usr/bin/yacc 212TOOLS_PLATFORM.yacc?= /usr/bin/yacc
213.endif 213.endif
 214.if exists(/usr/bin/zip)
 215TOOLS_PLATFORM.zip?= /usr/bin/zip
 216TOOLS_PLATFORM.zipcloak?= /usr/bin/zipcloak
 217TOOLS_PLATFORM.zipnote?= /usr/bin/zipnote
 218TOOLS_PLATFORM.zipsplit?= /usr/bin/zipsplit
 219.endif