summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorrillig <rillig>2007-09-21 07:27:41 +0000
committerrillig <rillig>2007-09-21 07:27:41 +0000
commitf1fec08b4e835dbb95ea390af0cc640f0c099446 (patch)
treed3d530dbf3413e7490ca5bf4895650de3bdc47a6 /mk
parent35ec8a1e047a6667f196cd7085dcff11e4f78b90 (diff)
downloadpkgsrc-f1fec08b4e835dbb95ea390af0cc640f0c099446.tar.gz
Instead of the overly verbose "Required installed package", the type of
dependency (bootstrap, build, full) is printed. When building a package that pulls in the basic tools as dependencies, it is good to know whether these are build or full dependencies, so the additional information is useful.
Diffstat (limited to 'mk')
-rw-r--r--mk/flavor/pkg/depends.mk23
1 files changed, 13 insertions, 10 deletions
diff --git a/mk/flavor/pkg/depends.mk b/mk/flavor/pkg/depends.mk
index ffcbcceef5d..1cc35847804 100644
--- a/mk/flavor/pkg/depends.mk
+++ b/mk/flavor/pkg/depends.mk
@@ -1,4 +1,4 @@
-# $NetBSD: depends.mk,v 1.38 2007/06/15 10:39:08 rillig Exp $
+# $NetBSD: depends.mk,v 1.39 2007/09/21 07:27:41 rillig Exp $
# This command prints out the dependency patterns for all full (run-time)
# dependencies of the package.
@@ -60,21 +60,24 @@ _RESOLVE_DEPENDS_CMD= \
" "${BUILD_DEPENDS:Q} \
" "${DEPENDS:Q}
-# _DEPENDS_INSTALL_CMD expects "$pattern" to hold the dependency pattern
-# and "$dir" to hold the package directory path associated with
-# that dependency pattern.
+# _DEPENDS_INSTALL_CMD checks whether the package $pattern is installed,
+# and installs it if necessary.
+#
+# @param $pattern The pattern of the package to be installed.
+# @param $dir The pkgsrc directory from which the package can be
+# built.
+# @param $type The dependency type. Can be one of bootstrap,
+# build, full.
#
_DEPENDS_INSTALL_CMD= \
pkg=`${_PKG_BEST_EXISTS} "$$pattern" || ${TRUE}`; \
+ case $$type in bootstrap) Type=Bootstrap;; build) Type=Build;; full) Type=Full;; esac; \
case "$$pkg" in \
"") \
- ${STEP_MSG} "Required installed package $$pattern: NOT found"; \
+ ${STEP_MSG} "$$Type dependency $$pattern: NOT found"; \
target=${DEPENDS_TARGET:Q}; \
${STEP_MSG} "Verifying $$target for $$dir"; \
- if ${TEST} ! -d "$$dir"; then \
- ${ERROR_MSG} "[depends.mk] The directory \`\`$$dir'' does not exist."; \
- exit 1; \
- fi; \
+ [ -d "$$dir" ] || ${FAIL_MSG} "[depends.mk] The directory \`\`$$dir'' does not exist."; \
cd $$dir; \
${SETENV} ${PKGSRC_MAKE_ENV} _PKGSRC_DEPS=", ${PKGNAME}${_PKGSRC_DEPS}" PKGNAME_REQD="$$pattern" ${MAKE} ${MAKEFLAGS} _AUTOMATIC=yes $$target; \
pkg=`${_PKG_BEST_EXISTS} "$$pattern" || ${TRUE}`; \
@@ -99,7 +102,7 @@ _DEPENDS_INSTALL_CMD= \
esac; \
silent=${_BOOTSTRAP_VERBOSE:Dyes}; \
if ${TEST} -z "$${silent}"; then \
- ${STEP_MSG} "Required installed package $$pattern: $$pkg found"; \
+ ${STEP_MSG} "$$Type dependency $$pattern: $$pkg found"; \
fi; \
;; \
esac