summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordmcmahill <dmcmahill@pkgsrc.org>2003-07-19 02:50:22 +0000
committerdmcmahill <dmcmahill@pkgsrc.org>2003-07-19 02:50:22 +0000
commit5e93a64cfa158683ba3ff98efaef73648da5522a (patch)
treef08c174552324a7f841870ed1abd8834f78b2c0b
parent68585185e8a5a58dad0a5abfa1f833ba392384bd (diff)
downloadpkgsrc-5e93a64cfa158683ba3ff98efaef73648da5522a.tar.gz
- fix comment about what shows up in the index file.
- add ONLY_FOR_ARCHS and NOT_FOR_OPSYS to the list of variables that goes in the print-summary-data output. This is the first step in speeding up the 'make index' process.
-rw-r--r--mk/bsd.pkg.mk7
1 files changed, 5 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk
index ca51cff96ca..5918b9107c0 100644
--- a/mk/bsd.pkg.mk
+++ b/mk/bsd.pkg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.mk,v 1.1217 2003/07/18 04:21:16 grant Exp $
+# $NetBSD: bsd.pkg.mk,v 1.1218 2003/07/19 02:50:22 dmcmahill Exp $
#
# This file is in the public domain.
#
@@ -3825,7 +3825,8 @@ binpkg-list:
# a large index. Format is:
#
# distribution-name|package-path|installation-prefix|comment| \
-# description-file|maintainer|categories|build deps|run deps|for arch
+# description-file|maintainer|categories|build deps|run deps|for arch| \
+# not for opsys
#
.if !target(describe)
describe:
@@ -3995,6 +3996,8 @@ print-summary-data:
@${ECHO} wildcard ${PKGPATH} ${PKGWILDCARD:Q}
@${ECHO} comment ${PKGPATH} ${COMMENT:Q}
@${ECHO} license ${PKGPATH} ${LICENSE:Q}
+ @${ECHO} onlyfor ${PKGPATH} ${ONLY_FOR_ARCHS}
+ @${ECHO} notfor ${PKGPATH} ${NOT_FOR_OPSYS}
.endif
.if !target(show-license)