summaryrefslogtreecommitdiffstats
path: root/share/mk
diff options
context:
space:
mode:
authorasami <asami@FreeBSD.org>1996-08-20 10:00:33 +0000
committerasami <asami@FreeBSD.org>1996-08-20 10:00:33 +0000
commit83996d496896dafaaa9a1a3bb41c5c542619623d (patch)
tree6cf3df40f4ac4babf4fd585333235a7617a0292d /share/mk
parent0eb33ce39320f3c8ebb7149e87baa97f29d47f35 (diff)
downloadFreeBSD-src-83996d496896dafaaa9a1a3bb41c5c542619623d.zip
FreeBSD-src-83996d496896dafaaa9a1a3bb41c5c542619623d.tar.gz
Update explanation of *_DEPENDS, in particular note that bsd.port.mk
can now check existence of files specified by full pathnames, not only executables.
Diffstat (limited to 'share/mk')
-rw-r--r--share/mk/bsd.port.mk38
1 files changed, 20 insertions, 18 deletions
diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk
index 4d34663..522d87b 100644
--- a/share/mk/bsd.port.mk
+++ b/share/mk/bsd.port.mk
@@ -3,7 +3,7 @@
# bsd.port.mk - 940820 Jordan K. Hubbard.
# This file is in the public domain.
#
-# $Id: bsd.port.mk,v 1.220 1996/08/17 10:16:02 asami Exp $
+# $Id: bsd.port.mk,v 1.221 1996/08/18 10:53:16 asami Exp $
#
# Please view me with 4 column tabs!
@@ -112,23 +112,25 @@
# during a build. User can then decide to skip this port by
# setting ${BATCH}, or compiling only the interactive ports
# by setting ${INTERACTIVE}.
-# FETCH_DEPENDS - A list of "prog:dir" pairs of other ports this
-# package depends in the "fetch" stage. "prog" is the
-# name of an executable. make will search your $PATH
-# for it and go into "dir" to do a "make all install"
-# if it's not found.
-# BUILD_DEPENDS - A list of "prog:dir" pairs of other ports this
-# package depends to build (between the "extract"
-# and "build" stages, inclusive). "prog" is the name
-# of an executable. make will search your $PATH for
-# it and go into "dir" to do a "make all install" if
-# it's not found.
-# RUN_DEPENDS - A list of "prog:dir" pairs of other ports this package
-# depends to run. "prog" is the name of an
-# executable. make will search your $PATH for it and
-# go into "dir" to do a "make all install" if it's not
-# found. This will be build during the "install" stage
-# and its name will be put into the package as well.
+# FETCH_DEPENDS - A list of "path:dir" pairs of other ports this
+# package depends in the "fetch" stage. "path" is the
+# name of a file if it starts with a slash (/), an
+# executable otherwise. make will test for the
+# existence (if it is a full pathname) or search for
+# it in your $PATH (if it is an executable) and go
+# into "dir" to do a "make all install" if it's not
+# found.
+# BUILD_DEPENDS - A list of "path:dir" pairs of other ports this
+# package depends to build (between the "extract" and
+# "build" stages, inclusive). The test done to
+# determine the existence of the dependency is the
+# same as FETCH_DEPENDS.
+# RUN_DEPENDS - A list of "path:dir" pairs of other ports this
+# package depends to run. The test done to determine
+# the existence of the dependency is the same as
+# FETCH_DEPENDS. This will be checked during the
+# "install" stage and the name of the dependency will
+# be put into the package as well.
# LIB_DEPENDS - A list of "lib:dir" pairs of other ports this package
# depends on. "lib" is the name of a shared library.
# make will use "ldconfig -r" to search for the
OpenPOWER on IntegriCloud