pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk/tools The BSDs all have lex, tbl, and yacc in the b...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/1f2ad963abde
branches:  trunk
changeset: 493107:1f2ad963abde
user:      jlam <jlam%pkgsrc.org@localhost>
date:      Wed Apr 27 15:59:25 2005 +0000

description:
The BSDs all have lex, tbl, and yacc in the base system.

diffstat:

 mk/tools/tools.DragonFly.mk |  5 ++++-
 mk/tools/tools.FreeBSD.mk   |  5 ++++-
 mk/tools/tools.NetBSD.mk    |  9 ++++++++-
 mk/tools/tools.OpenBSD.mk   |  5 ++++-
 4 files changed, 20 insertions(+), 4 deletions(-)

diffs (132 lines):

diff -r 215bf90da2cc -r 1f2ad963abde mk/tools/tools.DragonFly.mk
--- a/mk/tools/tools.DragonFly.mk       Wed Apr 27 15:58:18 2005 +0000
+++ b/mk/tools/tools.DragonFly.mk       Wed Apr 27 15:59:25 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: tools.DragonFly.mk,v 1.1 2005/04/27 15:28:16 jlam Exp $
+# $NetBSD: tools.DragonFly.mk,v 1.2 2005/04/27 15:59:25 jlam Exp $
 #
 # System-supplied tools for the DragonFly operating system.
 
@@ -29,6 +29,7 @@
 PLATFORM_TOOL.head?=           /usr/bin/head
 PLATFORM_TOOL.hostname?=       /bin/hostname
 PLATFORM_TOOL.id?=             /usr/bin/id
+PLATFORM_TOOL.lex?=            /usr/bin/lex
 PLATFORM_TOOL.ln?=             /bin/ln
 PLATFORM_TOOL.ls?=             /bin/ls
 PLATFORM_TOOL.m4?=             /usr/bin/m4
@@ -46,6 +47,7 @@
 PLATFORM_TOOL.shlock?=         /usr/bin/shlock
 PLATFORM_TOOL.sort?=           /usr/bin/sort
 PLATFORM_TOOL.tail?=           /usr/bin/tail
+PLATFORM_TOOL.tbl?=            /usr/bin/tbl
 PLATFORM_TOOL.tee?=            /usr/bin/tee
 PLATFORM_TOOL.test?=           /bin/test
 PLATFORM_TOOL.touch?=          /usr/bin/touch
@@ -54,3 +56,4 @@
 PLATFORM_TOOL.tsort?=          /usr/bin/tsort
 PLATFORM_TOOL.wc?=             /usr/bin/wc
 PLATFORM_TOOL.xargs?=          /usr/bin/xargs
+PLATFORM_TOOL.yacc?=           /usr/bin/yacc
diff -r 215bf90da2cc -r 1f2ad963abde mk/tools/tools.FreeBSD.mk
--- a/mk/tools/tools.FreeBSD.mk Wed Apr 27 15:58:18 2005 +0000
+++ b/mk/tools/tools.FreeBSD.mk Wed Apr 27 15:59:25 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: tools.FreeBSD.mk,v 1.1 2005/04/27 15:28:16 jlam Exp $
+# $NetBSD: tools.FreeBSD.mk,v 1.2 2005/04/27 15:59:25 jlam Exp $
 #
 # System-supplied tools for the FreeBSD operating system.
 
@@ -29,6 +29,7 @@
 PLATFORM_TOOL.head?=           /usr/bin/head
 PLATFORM_TOOL.hostname?=       /bin/hostname
 PLATFORM_TOOL.id?=             /usr/bin/id
+PLATFORM_TOOL.lex?=            /usr/bin/lex
 PLATFORM_TOOL.ln?=             /bin/ln
 PLATFORM_TOOL.ls?=             /bin/ls
 PLATFORM_TOOL.m4?=             /usr/bin/m4
@@ -46,6 +47,7 @@
 PLATFORM_TOOL.shlock?=         /usr/bin/shlock
 PLATFORM_TOOL.sort?=           /usr/bin/sort
 PLATFORM_TOOL.tail?=           /usr/bin/tail
+PLATFORM_TOOL.tbl?=            /usr/bin/tbl
 PLATFORM_TOOL.tee?=            /usr/bin/tee
 PLATFORM_TOOL.test?=           test                    # shell builtin
 PLATFORM_TOOL.touch?=          /usr/bin/touch
@@ -54,3 +56,4 @@
 PLATFORM_TOOL.tsort?=          /usr/bin/tsort
 PLATFORM_TOOL.wc?=             /usr/bin/wc
 PLATFORM_TOOL.xargs?=          /usr/bin/xargs
+PLATFORM_TOOL.yacc?=           /usr/bin/yacc
diff -r 215bf90da2cc -r 1f2ad963abde mk/tools/tools.NetBSD.mk
--- a/mk/tools/tools.NetBSD.mk  Wed Apr 27 15:58:18 2005 +0000
+++ b/mk/tools/tools.NetBSD.mk  Wed Apr 27 15:59:25 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: tools.NetBSD.mk,v 1.1 2005/04/27 15:28:16 jlam Exp $
+# $NetBSD: tools.NetBSD.mk,v 1.2 2005/04/27 15:59:25 jlam Exp $
 #
 # System-supplied tools for the NetBSD operating system.
 
@@ -21,7 +21,11 @@
 PLATFORM_TOOL.fgrep?=          /usr/bin/fgrep
 PLATFORM_TOOL.file?=           /usr/bin/file
 PLATFORM_TOOL.find?=           /usr/bin/find
+.if !empty(MACHINE_PLATFORM:MNetBSD-1.[0-6]*-*)
+PLATFORM_TOOL.gawk?=           ${PLATFORM_TOOL.awk}
+.endif
 PLATFORM_TOOL.grep?=           /usr/bin/grep
+PLATFORM_TOOL.gsed?=           ${PLATFORM_TOOL.sed}    # GNUish
 .if exists(/bin/tar)
 PLATFORM_TOOL.gtar?=           /bin/tar
 .elif exists(/usr/bin/tar)
@@ -33,6 +37,7 @@
 PLATFORM_TOOL.head?=           /usr/bin/head
 PLATFORM_TOOL.hostname?=       /bin/hostname
 PLATFORM_TOOL.id?=             /usr/bin/id
+PLATFORM_TOOL.lex?=            /usr/bin/lex
 PLATFORM_TOOL.ln?=             /bin/ln
 PLATFORM_TOOL.ls?=             /bin/ls
 PLATFORM_TOOL.m4?=             /usr/bin/m4
@@ -50,6 +55,7 @@
 PLATFORM_TOOL.shlock?=         /usr/bin/shlock
 PLATFORM_TOOL.sort?=           /usr/bin/sort
 PLATFORM_TOOL.tail?=           /usr/bin/tail
+PLATFORM_TOOL.tbl?=            /usr/bin/tbl
 PLATFORM_TOOL.tee?=            /usr/bin/tee
 PLATFORM_TOOL.test?=           test                    # shell builtin
 PLATFORM_TOOL.touch?=          /usr/bin/touch
@@ -58,3 +64,4 @@
 PLATFORM_TOOL.tsort?=          /usr/bin/tsort
 PLATFORM_TOOL.wc?=             /usr/bin/wc
 PLATFORM_TOOL.xargs?=          /usr/bin/xargs
+PLATFORM_TOOL.yacc?=           /usr/bin/yacc
diff -r 215bf90da2cc -r 1f2ad963abde mk/tools/tools.OpenBSD.mk
--- a/mk/tools/tools.OpenBSD.mk Wed Apr 27 15:58:18 2005 +0000
+++ b/mk/tools/tools.OpenBSD.mk Wed Apr 27 15:59:25 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: tools.OpenBSD.mk,v 1.1 2005/04/27 15:28:16 jlam Exp $
+# $NetBSD: tools.OpenBSD.mk,v 1.2 2005/04/27 15:59:25 jlam Exp $
 #
 # System-supplied tools for the OpenBSD operating system.
 
@@ -33,6 +33,7 @@
 PLATFORM_TOOL.head?=           /usr/bin/head
 PLATFORM_TOOL.hostname?=       /bin/hostname
 PLATFORM_TOOL.id?=             /usr/bin/id
+PLATFORM_TOOL.lex?=            /usr/bin/lex
 PLATFORM_TOOL.ln?=             /bin/ln
 PLATFORM_TOOL.ls?=             /bin/ls
 PLATFORM_TOOL.m4?=             /usr/bin/m4
@@ -48,6 +49,7 @@
 PLATFORM_TOOL.sh?=             /bin/sh
 PLATFORM_TOOL.sort?=           /usr/bin/sort
 PLATFORM_TOOL.tail?=           /usr/bin/tail
+PLATFORM_TOOL.tbl?=            /usr/bin/tbl
 PLATFORM_TOOL.tee?=            /usr/bin/tee
 PLATFORM_TOOL.test?=           test                    # shell builtin
 PLATFORM_TOOL.touch?=          /usr/bin/touch
@@ -56,3 +58,4 @@
 PLATFORM_TOOL.tsort?=          /usr/bin/tsort
 PLATFORM_TOOL.wc?=             /usr/bin/wc
 PLATFORM_TOOL.xargs?=          /usr/bin/xargs
+PLATFORM_TOOL.yacc?=           /usr/bin/yacc



Home | Main Index | Thread Index | Old Index