2015-02-01 09:48:56 +01:00
|
|
|
# $NetBSD: tools.DragonFly.mk,v 1.44 2015/02/01 08:48:56 obache Exp $
|
2005-04-27 17:28:16 +02:00
|
|
|
#
|
|
|
|
# System-supplied tools for the DragonFly operating system.
|
|
|
|
|
2007-07-28 03:21:15 +02:00
|
|
|
TOOLS_PLATFORM.[?= [ # shell builtin
|
2005-04-27 18:52:28 +02:00
|
|
|
TOOLS_PLATFORM.awk?= /usr/bin/awk
|
|
|
|
TOOLS_PLATFORM.basename?= /usr/bin/basename
|
2008-05-25 23:40:59 +02:00
|
|
|
.if exists(/usr/bin/bsdtar)
|
|
|
|
TOOLS_PLATFORM.bsdtar?= /usr/bin/bsdtar
|
|
|
|
.endif
|
2005-09-20 05:50:18 +02:00
|
|
|
TOOLS_PLATFORM.byacc?= /usr/bin/yacc
|
2005-05-02 04:50:33 +02:00
|
|
|
TOOLS_PLATFORM.bzcat?= /usr/bin/bzcat
|
2007-06-19 19:01:12 +02:00
|
|
|
TOOLS_PLATFORM.bzip2?= /usr/bin/bzip2
|
2011-12-08 21:38:39 +01:00
|
|
|
TOOLS_PLATFORM.cat?= /bin/cat
|
2005-04-27 18:52:28 +02:00
|
|
|
TOOLS_PLATFORM.chgrp?= /usr/bin/chgrp
|
|
|
|
TOOLS_PLATFORM.chmod?= /bin/chmod
|
|
|
|
TOOLS_PLATFORM.chown?= /usr/sbin/chown
|
|
|
|
TOOLS_PLATFORM.cmp?= /usr/bin/cmp
|
|
|
|
TOOLS_PLATFORM.cp?= /bin/cp
|
2005-06-24 22:59:59 +02:00
|
|
|
TOOLS_PLATFORM.csh?= /bin/csh
|
2005-04-27 18:52:28 +02:00
|
|
|
TOOLS_PLATFORM.cut?= /usr/bin/cut
|
|
|
|
TOOLS_PLATFORM.date?= /bin/date
|
2005-06-23 22:45:34 +02:00
|
|
|
TOOLS_PLATFORM.diff?= /usr/bin/diff
|
Teach the tools framework about the following new tools:
itools, intltool, diff3, sdiff, msgmerge
* Adding USE_TOOLS+=itools to a package Makefile will cause the
tool-directory versions of imake, makedepend, mkdirhier and xmkmf
to point to the ones from the devel/nbitools package.
This change will remove the need for nbitools/buildlink3.mk, which
currently does a bit of hackery to force the "right" imake tools to
be used by packages that need it.
* Adding USE_TOOLS+=intltool to a package Makefile will cause the
local versions of intltool-* inside ${WRKSRC} to be replaced by
copies from the textproc/intltool package. If "intltool" is not
specified as a tool, then we create "broken" intltool-* tools in
the tools directory to help highlight hidden dependencies on the
intltool package.
In addition, modify the tools framework so that if "perl" is not
specified as a tool, then we create a "broken" perl tool in the
tools directory for the same reason as for "intltool".
These two changes together will remove the need for
intltools/buildlink3.mk and should also catch all cases where the
sources' intltools may have been silently used because perl was
found on the system.
* Adding USE_TOOLS+=diff3, USE_TOOLS+=sdiff, or USE_TOOLS+=msgmerge
to a package Makefile will cause the corresponding tool to be pulled
into the tools directory.
These are convenience tools to help simplify dependencies for some
packages.
2006-07-05 06:32:10 +02:00
|
|
|
TOOLS_PLATFORM.diff3?= /usr/bin/diff3
|
2005-04-27 18:52:28 +02:00
|
|
|
TOOLS_PLATFORM.dirname?= /usr/bin/dirname
|
|
|
|
TOOLS_PLATFORM.echo?= echo # shell builtin
|
|
|
|
TOOLS_PLATFORM.egrep?= /usr/bin/egrep
|
|
|
|
TOOLS_PLATFORM.env?= /usr/bin/env
|
|
|
|
TOOLS_PLATFORM.expr?= /bin/expr
|
|
|
|
TOOLS_PLATFORM.false?= /usr/bin/false
|
2013-12-20 00:50:29 +01:00
|
|
|
TOOLS_PLATFORM.fetch?= /usr/bin/fetch
|
2005-04-27 18:52:28 +02:00
|
|
|
TOOLS_PLATFORM.fgrep?= /usr/bin/fgrep
|
|
|
|
TOOLS_PLATFORM.file?= /usr/bin/file
|
|
|
|
TOOLS_PLATFORM.find?= /usr/bin/find
|
2011-12-06 20:08:31 +01:00
|
|
|
TOOLS_PLATFORM.flex?= /usr/bin/flex
|
2008-05-22 22:11:55 +02:00
|
|
|
TOOLS_PLATFORM.ftp?= /usr/bin/ftp
|
2005-04-27 18:52:28 +02:00
|
|
|
TOOLS_PLATFORM.grep?= /usr/bin/grep
|
2006-05-21 18:55:21 +02:00
|
|
|
TOOLS_PLATFORM.groff?= /usr/bin/groff
|
2007-02-07 20:25:33 +01:00
|
|
|
.if exists(/usr/bin/gtar)
|
2006-02-15 21:02:30 +01:00
|
|
|
TOOLS_PLATFORM.gtar?= /usr/bin/gtar
|
2007-02-07 20:25:33 +01:00
|
|
|
.endif
|
2005-04-27 18:52:28 +02:00
|
|
|
TOOLS_PLATFORM.gunzip?= /usr/bin/gunzip -f
|
|
|
|
TOOLS_PLATFORM.gzcat?= /usr/bin/gzcat
|
|
|
|
TOOLS_PLATFORM.gzip?= /usr/bin/gzip -nf ${GZIP}
|
|
|
|
TOOLS_PLATFORM.head?= /usr/bin/head
|
|
|
|
TOOLS_PLATFORM.hostname?= /bin/hostname
|
|
|
|
TOOLS_PLATFORM.id?= /usr/bin/id
|
2007-06-19 16:21:18 +02:00
|
|
|
TOOLS_PLATFORM.ident?= /usr/bin/ident
|
2005-05-03 22:41:53 +02:00
|
|
|
TOOLS_PLATFORM.install?= /usr/bin/install
|
2006-03-06 06:25:45 +01:00
|
|
|
.if exists(/usr/bin/install-info)
|
|
|
|
TOOLS_PLATFORM.install-info?= /usr/bin/install-info
|
|
|
|
.endif
|
2005-05-02 06:42:08 +02:00
|
|
|
TOOLS_PLATFORM.ldconfig?= /sbin/ldconfig
|
2005-04-27 18:52:28 +02:00
|
|
|
TOOLS_PLATFORM.lex?= /usr/bin/lex
|
|
|
|
TOOLS_PLATFORM.ln?= /bin/ln
|
|
|
|
TOOLS_PLATFORM.ls?= /bin/ls
|
|
|
|
TOOLS_PLATFORM.m4?= /usr/bin/m4
|
2005-05-03 18:30:34 +02:00
|
|
|
TOOLS_PLATFORM.mail?= /usr/bin/mail
|
2006-03-05 17:27:22 +01:00
|
|
|
.if exists(/usr/bin/makeinfo)
|
|
|
|
TOOLS_PLATFORM.makeinfo?= /usr/bin/makeinfo
|
|
|
|
.endif
|
2005-04-27 18:52:28 +02:00
|
|
|
TOOLS_PLATFORM.mkdir?= /bin/mkdir -p
|
2005-06-04 00:54:44 +02:00
|
|
|
TOOLS_PLATFORM.mktemp?= /usr/bin/mktemp
|
2005-04-27 18:52:28 +02:00
|
|
|
TOOLS_PLATFORM.mtree?= /usr/sbin/mtree
|
|
|
|
TOOLS_PLATFORM.mv?= /bin/mv
|
|
|
|
TOOLS_PLATFORM.nice?= /usr/bin/nice
|
2005-05-26 23:46:13 +02:00
|
|
|
TOOLS_PLATFORM.nroff?= /usr/bin/nroff
|
2006-06-14 18:57:07 +02:00
|
|
|
TOOLS_PLATFORM.openssl?= /usr/bin/openssl
|
2005-04-27 18:52:28 +02:00
|
|
|
TOOLS_PLATFORM.patch?= /usr/bin/patch
|
2011-12-08 21:38:39 +01:00
|
|
|
TOOLS_PLATFORM.pax?= /bin/pax
|
2005-10-12 18:28:29 +02:00
|
|
|
TOOLS_PLATFORM.printf?= /usr/bin/printf
|
2005-04-27 18:52:28 +02:00
|
|
|
TOOLS_PLATFORM.pwd?= /bin/pwd
|
2007-08-20 13:00:33 +02:00
|
|
|
TOOLS_PLATFORM.readelf?= /usr/bin/readelf
|
2013-08-24 13:30:44 +02:00
|
|
|
TOOLS_PLATFORM.readlink?= /usr/bin/readlink
|
2005-04-27 18:52:28 +02:00
|
|
|
TOOLS_PLATFORM.rm?= /bin/rm
|
|
|
|
TOOLS_PLATFORM.rmdir?= /bin/rmdir
|
Teach the tools framework about the following new tools:
itools, intltool, diff3, sdiff, msgmerge
* Adding USE_TOOLS+=itools to a package Makefile will cause the
tool-directory versions of imake, makedepend, mkdirhier and xmkmf
to point to the ones from the devel/nbitools package.
This change will remove the need for nbitools/buildlink3.mk, which
currently does a bit of hackery to force the "right" imake tools to
be used by packages that need it.
* Adding USE_TOOLS+=intltool to a package Makefile will cause the
local versions of intltool-* inside ${WRKSRC} to be replaced by
copies from the textproc/intltool package. If "intltool" is not
specified as a tool, then we create "broken" intltool-* tools in
the tools directory to help highlight hidden dependencies on the
intltool package.
In addition, modify the tools framework so that if "perl" is not
specified as a tool, then we create a "broken" perl tool in the
tools directory for the same reason as for "intltool".
These two changes together will remove the need for
intltools/buildlink3.mk and should also catch all cases where the
sources' intltools may have been silently used because perl was
found on the system.
* Adding USE_TOOLS+=diff3, USE_TOOLS+=sdiff, or USE_TOOLS+=msgmerge
to a package Makefile will cause the corresponding tool to be pulled
into the tools directory.
These are convenience tools to help simplify dependencies for some
packages.
2006-07-05 06:32:10 +02:00
|
|
|
TOOLS_PLATFORM.sdiff?= /usr/bin/sdiff
|
2005-04-27 18:52:28 +02:00
|
|
|
TOOLS_PLATFORM.sed?= /usr/bin/sed
|
|
|
|
TOOLS_PLATFORM.sh?= /bin/sh
|
|
|
|
TOOLS_PLATFORM.shlock?= /usr/bin/shlock
|
2005-11-04 21:02:01 +01:00
|
|
|
TOOLS_PLATFORM.sleep?= /bin/sleep
|
2005-11-08 04:36:13 +01:00
|
|
|
TOOLS_PLATFORM.soelim?= /usr/bin/soelim
|
2005-04-27 18:52:28 +02:00
|
|
|
TOOLS_PLATFORM.sort?= /usr/bin/sort
|
2005-05-10 21:56:51 +02:00
|
|
|
TOOLS_PLATFORM.strip?= /usr/bin/strip
|
2005-04-27 18:52:28 +02:00
|
|
|
TOOLS_PLATFORM.tail?= /usr/bin/tail
|
2005-05-14 23:15:07 +02:00
|
|
|
TOOLS_PLATFORM.tar?= /usr/bin/tar
|
2005-04-27 18:52:28 +02:00
|
|
|
TOOLS_PLATFORM.tbl?= /usr/bin/tbl
|
|
|
|
TOOLS_PLATFORM.tee?= /usr/bin/tee
|
2007-07-28 03:21:15 +02:00
|
|
|
TOOLS_PLATFORM.test?= test # shell builtin
|
2005-04-27 18:52:28 +02:00
|
|
|
TOOLS_PLATFORM.touch?= /usr/bin/touch
|
|
|
|
TOOLS_PLATFORM.tr?= /usr/bin/tr
|
|
|
|
TOOLS_PLATFORM.true?= /usr/bin/true
|
|
|
|
TOOLS_PLATFORM.tsort?= /usr/bin/tsort
|
2014-03-06 08:34:20 +01:00
|
|
|
TOOLS_PLATFORM.uniq?= /usr/bin/uniq
|
2005-04-27 18:52:28 +02:00
|
|
|
TOOLS_PLATFORM.wc?= /usr/bin/wc
|
|
|
|
TOOLS_PLATFORM.xargs?= /usr/bin/xargs
|
2013-11-06 14:12:50 +01:00
|
|
|
TOOLS_PLATFORM.xz?= /usr/bin/xz
|
2011-12-08 21:38:39 +01:00
|
|
|
TOOLS_PLATFORM.xzcat?= /usr/bin/xzcat
|
2005-04-27 18:52:28 +02:00
|
|
|
TOOLS_PLATFORM.yacc?= /usr/bin/yacc
|