summaryrefslogtreecommitdiff
path: root/mk/flavor
diff options
context:
space:
mode:
authorrillig <rillig>2007-11-07 17:39:02 +0000
committerrillig <rillig>2007-11-07 17:39:02 +0000
commita1736039bef9deea45c00b6449adbc447bb994e7 (patch)
treebf41e21bb887a53bf2633031fb2e04257dca5eb2 /mk/flavor
parent222dd71289ef6f2cfdfc1c918f6e9dfbab153fda (diff)
downloadpkgsrc-a1736039bef9deea45c00b6449adbc447bb994e7.tar.gz
The comment in the first paragraph says that the targets in this file
should probably removed. Check if they are really used by anyone, by printing some warnings to stderr.
Diffstat (limited to 'mk/flavor')
-rw-r--r--mk/flavor/pkg/utility.mk22
1 files changed, 14 insertions, 8 deletions
diff --git a/mk/flavor/pkg/utility.mk b/mk/flavor/pkg/utility.mk
index dc794f61e28..e276245ab09 100644
--- a/mk/flavor/pkg/utility.mk
+++ b/mk/flavor/pkg/utility.mk
@@ -1,4 +1,4 @@
-# $NetBSD: utility.mk,v 1.5 2007/03/09 01:29:11 rillig Exp $
+# $NetBSD: utility.mk,v 1.6 2007/11/07 17:39:02 rillig Exp $
######################################################################
###
@@ -8,21 +8,21 @@
# The 'info' target can be used to display information about a package.
.PHONY: info
-info:
+info: _about-to-be-removed
${_PKG_SILENT}${_PKG_DEBUG}${PKG_INFO} "${PKGWILDCARD}"
# The 'check' target can be used to check an installed package.
.PHONY: check
-check:
+check: _about-to-be-removed
${_PKG_SILENT}${_PKG_DEBUG}${PKG_ADMIN} check "${PKGWILDCARD}"
# The 'list' target can be used to list the files installed by a package.
.PHONY: list
-list:
+list: _about-to-be-removed
${_PKG_SILENT}${_PKG_DEBUG}${PKG_INFO} -L "${PKGWILDCARD}"
.PHONY: show-downlevel
-show-downlevel:
+show-downlevel: _about-to-be-removed
.if defined(PKG_FAIL_REASON)
${_PKG_SILENT}${_PKG_DEBUG}${DO_NADA}
.else
@@ -38,7 +38,7 @@ show-downlevel:
.endif
.PHONY: show-installed-depends
-show-installed-depends:
+show-installed-depends: _about-to-be-removed
.if !empty(DEPENDS)
${_PKG_SILENT}${_PKG_DEBUG} \
for i in ${DEPENDS:C/:.*$//:Q:S/\ / /g} ; do \
@@ -47,7 +47,7 @@ show-installed-depends:
.endif
.PHONY: show-needs-update
-show-needs-update:
+show-needs-update: _about-to-be-removed
.if !empty(DEPENDS)
${_PKG_SILENT}${_PKG_DEBUG} \
${_DEPENDS_WALK_CMD} -r ${PKGPATH} | \
@@ -64,7 +64,7 @@ show-needs-update:
.endif
.PHONY: show-pkgsrc-dir
-show-pkgsrc-dir:
+show-pkgsrc-dir: _about-to-be-removed
.if defined(PKG_FAIL_REASON)
${_PKG_SILENT}${_PKG_DEBUG}${DO_NADA}
.else
@@ -78,3 +78,9 @@ show-pkgsrc-dir:
# Short aliases
.PHONY: sid
sid: show-installed-depends
+
+_about-to-be-removed: .USE
+ @${WARNING_MSG} "This make target (${.TARGET}) is about to be removed. Since you used"
+ @${WARNING_MSG} "it, it may not be completele useless. Please tell us on the"
+ @${WARNING_MSG} "tech-pkg""@""NetBSD.org mailing list why you think this target should"
+ @${WARNING_MSG} "not be removed."