mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
Same as BSDMAKE variable. It is needed by some ports. Some ports needed fixes: - devel/rcs57: Regenerate configure with newer autoconf so it can deal with MAKE set to an absolute path. While here fix issues with (un)escaping double quotes. The warnings about this were in WRKSRC/src/conf.err. - lang/gnu-cobol: Patch configure.ac so the MAKE environment variable can contain an absolute path, and define MAKE before it is used in AM_INIT_AUTOMAKE. Remove post-patch patching of configure. It appears to have been fixed upstream. - math/unuran: Remove post-patch, fixed upstream. - net-mgmt/kismet: Fix post-patch. PR: 283534 Exp-run by: antoine
136 lines
3.5 KiB
Makefile
136 lines
3.5 KiB
Makefile
# bsd.commands.mk - Common commands used within the ports infrastructure
|
|
#
|
|
#
|
|
# DO NOT COMMIT CHANGES TO THIS FILE BY YOURSELF, EVEN IF YOU DID NOT GET
|
|
# A RESPONSE FROM THE MAINTAINER(S) WITHIN A REASONABLE TIMEFRAME! ALL
|
|
# UNAUTHORISED CHANGES WILL BE UNCONDITIONALLY REVERTED!
|
|
#
|
|
|
|
COMMANDS_Include_MAINTAINER= portmgr@FreeBSD.org
|
|
|
|
.if !defined(_COMMANDSMKINCLUDED)
|
|
|
|
_COMMANDSMKINCLUDED= yes
|
|
|
|
AWK?= /usr/bin/awk
|
|
BASENAME?= /usr/bin/basename
|
|
BRANDELF?= /usr/bin/brandelf
|
|
BSDMAKE?= /usr/bin/make
|
|
BZCAT?= /usr/bin/bzcat
|
|
BZIP2_CMD?= /usr/bin/bzip2
|
|
CAT?= /bin/cat
|
|
CHGRP?= /usr/bin/chgrp
|
|
CHMOD?= /bin/chmod
|
|
CHOWN?= /usr/sbin/chown
|
|
CHROOT?= /usr/sbin/chroot
|
|
COMM?= /usr/bin/comm
|
|
CP?= /bin/cp
|
|
CPIO?= /usr/bin/cpio
|
|
CUT?= /usr/bin/cut
|
|
DC?= /usr/bin/dc
|
|
. if exists(/usr/bin/dialog)
|
|
DIALOG?= /usr/bin/dialog
|
|
. else
|
|
DIALOG?= /usr/bin/bsddialog
|
|
. endif
|
|
DIALOG4PORTS?= ${LOCALBASE}/bin/portconfig
|
|
DIFF?= /usr/bin/diff
|
|
DIRNAME?= /usr/bin/dirname
|
|
EGREP?= /usr/bin/egrep
|
|
ELFCTL?= /usr/bin/elfctl
|
|
EXPR?= /bin/expr
|
|
FALSE?= false # Shell builtin
|
|
FILE?= /usr/bin/file
|
|
FIND?= /usr/bin/find
|
|
FLEX?= /usr/bin/flex
|
|
FMT?= /usr/bin/fmt
|
|
FMT_80?= ${FMT} 75 79
|
|
GMAKE?= ${LOCALBASE}/bin/gmake
|
|
GREP?= /usr/bin/grep
|
|
GUNZIP_CMD?= /usr/bin/gunzip -f
|
|
GZCAT?= /usr/bin/gzcat
|
|
GZIP?= -9
|
|
GZIP_CMD?= /usr/bin/gzip -nf ${GZIP}
|
|
HEAD?= /usr/bin/head
|
|
ID?= /usr/bin/id
|
|
IDENT?= /usr/bin/ident
|
|
JOT?= /usr/bin/jot
|
|
LDCONFIG?= /sbin/ldconfig
|
|
LHA_CMD?= ${LOCALBASE}/bin/lha
|
|
LN?= /bin/ln
|
|
LS?= /bin/ls
|
|
MKDIR?= /bin/mkdir -p
|
|
MKTEMP?= /usr/bin/mktemp
|
|
MOUNT?= /sbin/mount
|
|
MOUNT_DEVFS?= ${MOUNT} -t devfs devfs
|
|
# XXX: this is a work-around for an obscure bug where
|
|
# mount -t nullfs returns zero status on errors within
|
|
# a make target
|
|
MOUNT_NULLFS?= /sbin/mount_nullfs
|
|
MV?= /bin/mv
|
|
NPROC?= /bin/nproc
|
|
OBJCOPY?= /usr/bin/objcopy
|
|
OBJDUMP?= /usr/bin/objdump
|
|
PASTE?= /usr/bin/paste
|
|
PAX?= /bin/pax
|
|
PRINTF?= /usr/bin/printf
|
|
PS_CMD?= /bin/ps
|
|
PW?= /usr/sbin/pw
|
|
READELF?= /usr/bin/readelf
|
|
REALPATH?= /bin/realpath
|
|
RLN?= ${INSTALL} -l rs
|
|
RM?= /bin/rm -f
|
|
RMDIR?= /bin/rmdir
|
|
SED?= /usr/bin/sed
|
|
SETENV?= /usr/bin/env
|
|
SETENVI?= /usr/bin/env -i
|
|
SH?= /bin/sh
|
|
SORT?= /usr/bin/sort
|
|
STRIP_CMD?= /usr/bin/strip
|
|
STAT?= /usr/bin/stat
|
|
# Command to run commands as privileged user
|
|
# Example: "/usr/local/bin/sudo -E sh -c" to use "sudo" instead of "su"
|
|
SU_CMD?= /usr/bin/su root -c
|
|
SYSCTL?= /sbin/sysctl
|
|
TAIL?= /usr/bin/tail
|
|
TEST?= test # Shell builtin
|
|
TR?= /usr/bin/tr
|
|
TRUE?= true # Shell builtin
|
|
UMOUNT?= /sbin/umount
|
|
UNAME?= /usr/bin/uname
|
|
UNMAKESELF_CMD?= ${LOCALBASE}/bin/unmakeself
|
|
UNZIP_CMD?= ${LOCALBASE}/bin/unzip
|
|
UNZIP_NATIVE_CMD?= /usr/bin/unzip
|
|
WHICH?= /usr/bin/which
|
|
XARGS?= /usr/bin/xargs
|
|
XMKMF?= ${LOCALBASE}/bin/xmkmf
|
|
YACC?= /usr/bin/yacc
|
|
|
|
XZ?= -Mmax
|
|
XZCAT= /usr/bin/xzcat ${XZ}
|
|
XZ_CMD?= /usr/bin/xz ${XZ}
|
|
|
|
MD5?= /sbin/md5
|
|
SHA256?= /sbin/sha256
|
|
SOELIM?= /usr/bin/soelim
|
|
|
|
# ECHO is defined in /usr/share/mk/sys.mk, which can either be "echo",
|
|
# or "true" if the make flag -s is given. Use ECHO_CMD where you mean
|
|
# the echo command.
|
|
ECHO_CMD?= echo # Shell builtin
|
|
|
|
# Used to print all the '===>' style prompts - override this to turn them off.
|
|
ECHO_MSG?= ${ECHO_CMD}
|
|
|
|
.elif !defined(_PKGTOOLSDEFINED)
|
|
_PKGTOOLSDEFINED= yes
|
|
PKG_BIN?= ${LOCALBASE}/sbin/pkg-static
|
|
PKG_REGISTER?= ${PKG_BIN} register
|
|
PKG_DELETE?= ${PKG_BIN} delete -y
|
|
PKG_INFO?= ${PKG_BIN} info -g
|
|
PKG_VERSION?= ${PKG_BIN} version
|
|
PKG_CREATE?= ${PKG_BIN} create
|
|
PKG_ADD?= ${PKG_BIN} add
|
|
PKG_QUERY?= ${PKG_BIN} query
|
|
|
|
.endif
|