summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authordmcmahill <dmcmahill>2002-01-12 02:25:59 +0000
committerdmcmahill <dmcmahill>2002-01-12 02:25:59 +0000
commit387c9f8ba9b87953c067aac135b605e851b3952f (patch)
tree529986052f67db0fd01a931b5d35cd1fbb0939d3 /mk
parentc5f3bebe9469abab6bab42083622b0f5dd0b50da (diff)
downloadpkgsrc-387c9f8ba9b87953c067aac135b605e851b3952f.tar.gz
add the OBJHOSTNAME functionality that appeared in 1.901 of bsd.pkg.mk.
When OBJHOSTNAME is set, the various cache files and log files will include the hostname in their names. Useful when multiple machines of the same architecture share pkgsrc.
Diffstat (limited to 'mk')
-rw-r--r--mk/bulk/bsd.bulk-pkg.mk42
1 files changed, 22 insertions, 20 deletions
diff --git a/mk/bulk/bsd.bulk-pkg.mk b/mk/bulk/bsd.bulk-pkg.mk
index 16767b20ffb..4f398781d7f 100644
--- a/mk/bulk/bsd.bulk-pkg.mk
+++ b/mk/bulk/bsd.bulk-pkg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.bulk-pkg.mk,v 1.34 2001/12/17 02:32:23 dmcmahill Exp $
+# $NetBSD: bsd.bulk-pkg.mk,v 1.35 2002/01/12 02:25:59 dmcmahill Exp $
#
# Copyright (c) 1999, 2000 Hubert Feyrer <hubertf@netbsd.org>
@@ -57,49 +57,51 @@ USE_BULK_CACHE?= no
# to build this package
PRECLEAN?= yes
-.ifdef OBJMACHINE
+# If OBJHOSTNAME is set, use first component of hostname in cache and log files
+# If OBJMACHINE is set, use ${MACHINE_ARCH} in the cache and log files
+.if defined(OBJHOSTNAME)
+. if !defined(_HOSTNAME)
+_HOSTNAME!= ${UNAME} -n
+. endif
+BULK_ID?= .${_HOSTNAME:C|\..*||}
+.elif defined(OBJMACHINE)
+BULK_ID?= .${MACHINE_ARCH}
+.else
+BULK_ID?=
+.endif
+
# This file exists to mark a package as broken
-BROKENFILE?= .broken.${MACHINE}
+BROKENFILE?= .broken${BULK_ID}
# This file is where the log of the build goes
-BUILDLOG?= .make.${MACHINE}
+BUILDLOG?= .make${BULK_ID}
# This is a top level file which lists the entire pkgsrc depends tree in the format:
# foo/bar devel/libfoo
# meaning 'foo/bar' is requied to build 'devel/libfoo'
# this is in the format needed by tsort(1)
-DEPENDSTREEFILE?= ${_PKGSRCDIR}/.dependstree.${MACHINE}
+DEPENDSTREEFILE?= ${_PKGSRCDIR}/.dependstree${BULK_ID}
# This is a top level file which lists the entire pkgsrc depends tree in the format:
# foo/bar depends on: devel/libfoo devel/libbar devel/baz .....
# ie, to build foo/bar we need devel/libfoo devel/libbar devel/baz ... installed
-DEPENDSFILE?= ${_PKGSRCDIR}/.depends.${MACHINE}
+DEPENDSFILE?= ${_PKGSRCDIR}/.depends${BULK_ID}
# This is a top level file which lists the entire pkgsrc depends tree in the format:
# devel/libfoo is depended upon by: foo/bar graphics/gtkfoo ...
# ie, to build foo/bar we need devel/libfoo to be installed.
# to build graphics/gtkfoo we need devel/libfoo to be installed
-SUPPORTSFILE?= ${_PKGSRCDIR}/.supports.${MACHINE}
+SUPPORTSFILE?= ${_PKGSRCDIR}/.supports${BULK_ID}
# This is a top level file which cross-references each package name and pkg directory
# in the format:
# devel/libfoo libfoo-1.3
-INDEXFILE?= ${_PKGSRCDIR}/.index.${MACHINE}
+INDEXFILE?= ${_PKGSRCDIR}/.index${BULK_ID}
# file containing a list of all the packages in the correct order for a bulk build.
# the correct order is one where packages that are required by others are built
# before the packages which require them.
-ORDERFILE?= ${_PKGSRCDIR}/.order.${MACHINE}
-
-.else
-BROKENFILE?= .broken
-BUILDLOG?= .make
-DEPENDSTREEFILE?= ${_PKGSRCDIR}/.dependstree
-DEPENDSFILE?= ${_PKGSRCDIR}/.depends
-SUPPORTSFILE?= ${_PKGSRCDIR}/.supports
-INDEXFILE?= ${_PKGSRCDIR}/.index
-ORDERFILE?= ${_PKGSRCDIR}/.order
-.endif
+ORDERFILE?= ${_PKGSRCDIR}/.order${BULK_ID}
# a list of pkgs which we should _never_ delete during a build. The primary use is for digest
# and also for xpkgwedge. Add pkgtools/xpkgwedge in /etc/mk.conf to do an xpkgwedged bulk build.
@@ -111,7 +113,7 @@ BULK_PREREQ+= pkgtools/digest
# extracting the depends tree because some packages like
# xpkgwedge only become DEPENDS if it is installed
bulk-cache:
- ${ECHO_MSG} "Installing BULK_PREREQ packages"
+ @${ECHO_MSG} "BULK> Installing BULK_PREREQ packages"
.for __prereq in ${BULK_PREREQ}
cd ${_PKGSRCDIR}/${__prereq} && ${MAKE} bulk-install
.endfor