summaryrefslogtreecommitdiff
path: root/mk/bsd.pkg.mk
diff options
context:
space:
mode:
authorrillig <rillig>2006-11-14 13:56:14 +0000
committerrillig <rillig>2006-11-14 13:56:14 +0000
commit591fad2a7a55153103ce073ee29bbfe0d89b87f3 (patch)
treecc8bc43e43e305410e8322b3bea6470f567785de /mk/bsd.pkg.mk
parentfef1e45747ed7b242f7d493f6a48d84efe7e8bfb (diff)
downloadpkgsrc-591fad2a7a55153103ce073ee29bbfe0d89b87f3.tar.gz
Moved the code that checks PKG_FAIL_REASON and PKG_SKIP_REASON into its
own file. The further plan is not to include this file in the middle of loading, but at the end, when no variables will be changed. This will allow the _whole_ pkgsrc infrastructure to generate errors with PKG_FAIL_REASON, which is currently not the case.
Diffstat (limited to 'mk/bsd.pkg.mk')
-rw-r--r--mk/bsd.pkg.mk42
1 files changed, 3 insertions, 39 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk
index 71158624259..e2b720267c1 100644
--- a/mk/bsd.pkg.mk
+++ b/mk/bsd.pkg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.mk,v 1.1895 2006/11/05 19:11:29 rillig Exp $
+# $NetBSD: bsd.pkg.mk,v 1.1896 2006/11/14 13:56:14 rillig Exp $
#
# This file is in the public domain.
#
@@ -561,46 +561,10 @@ __PLATFORM_OK?= yes
. if !defined(__PLATFORM_OK)
PKG_SKIP_REASON+= "${PKGNAME} is not available for ${MACHINE_PLATFORM}"
. endif # !__PLATFORM_OK
-
-#
-# Now print some error messages that we know we should ignore the pkg
-#
-. if defined(PKG_FAIL_REASON) || defined(PKG_SKIP_REASON)
-.PHONY: do-check-pkg-fail-or-skip-reason
-fetch checksum extract patch configure all build install package \
-update depends do-check-pkg-fail-or-skip-reason:
-. if defined(SKIP_SILENT)
- @${DO_NADA}
-. else
-. if defined(PKG_FAIL_REASON) && !empty(PKG_FAIL_REASON:M*)
- @for str in ${PKG_FAIL_REASON}; do \
- ${ERROR_MSG} "$$str"; \
- done
-. endif
-. if defined(PKG_SKIP_REASON) && !empty(PKG_SKIP_REASON:M*)
- @${WARNING_MSG} "Skipping ${PKGNAME}:"; \
- for str in ${PKG_SKIP_REASON}; do \
- ${WARNING_MSG} "$$str"; \
- done
-. endif
-. endif
-. if defined(PKG_FAIL_REASON) && !empty(PKG_FAIL_REASON:M*)
- @${FALSE}
-. endif
-. endif # SKIP
-.endif # !NO_SKIP
-
-.PHONY: do-check-pkg-fail-reason
-do-check-pkg-fail-reason:
- @${DO_NADA}
-
-# This target should appear as a dependency of every top level target that
-# is intended to be called by the user or by a package different from the
-# current package.
-.if defined(PKG_FAIL_REASON)
-do-check-pkg-fail-reason: do-check-pkg-fail-or-skip-reason
.endif
+.include "${.PARSEDIR}/internal/pkg_fail_reason.mk"
+
# Add these defs to the ones dumped into +BUILD_DEFS
_BUILD_DEFS+= PKGPATH
_BUILD_DEFS+= OPSYS OS_VERSION MACHINE_ARCH MACHINE_GNU_ARCH