diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-09-21 10:58:42 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-09-21 10:58:42 +0000 |
commit | 4f524b7128aa229635f6caa3eaf036c37b700f80 (patch) | |
tree | 3b90dd11df890554276dfd2eccb0e586a25a0ed2 /share | |
parent | 67be208db32bec932375f887b58436805ba515c2 (diff) |
Accept WRKOBJDIR for NFS mounted ports tree and local objs. DEF_UMASK is
different on OpenBSD. Was this OK to commit, imp?
Diffstat (limited to 'share')
-rw-r--r-- | share/mk/bsd.port.mk | 29 |
1 files changed, 27 insertions, 2 deletions
diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk index bff7637f296..cd723c6e6c3 100644 --- a/share/mk/bsd.port.mk +++ b/share/mk/bsd.port.mk @@ -1,6 +1,6 @@ #-*- mode: Fundamental; tab-width: 4; -*- # ex:ts=4 -# $OpenBSD: bsd.port.mk,v 1.13 1997/09/09 15:11:28 imp Exp $ +# $OpenBSD: bsd.port.mk,v 1.14 1997/09/21 10:58:41 niklas Exp $ # $NetBSD: $ # # bsd.port.mk - 940820 Jordan K. Hubbard. @@ -63,6 +63,12 @@ OpenBSD_MAINTAINER= imp@OpenBSD.ORG # MAINTAINER - The e-mail address of the contact person for this port # (default: ports@FreeBSD.ORG). # CATEGORIES - A list of descriptive categories into which this port falls. +# WRKOBJDIR - A top level directory where, if defined, the separate working +# directories will get created, and symbolically linked to from +# ${WRKDIR} (see below). This is useful for building ports on +# several architectures, then ${PORTSDIR} can be NFS-mounted +# while ${WRKOBJDIR} is local to every arch. + # # Variables that typically apply to an individual port. Non-Boolean # variables without defaults are *mandatory*. @@ -295,6 +301,9 @@ OPSYS!= uname -s .if (${OPSYS} == "OpenBSD") NOMANCOMPRESS?= yes +DEF_UMASK?= 022 +.else +DEF_UMASK?= 0022 .endif .if exists(${.CURDIR}/Makefile.${ARCH}-${OPSYS}) @@ -334,6 +343,13 @@ WRKSRC?= ${WRKDIR} WRKSRC?= ${WRKDIR}/${DISTNAME} .endif +.if defined(WRKOBJDIR) +# XXX Is pwd -P available in FreeBSD's /bin/sh? +__canonical_PORTSDIR!= cd ${PORTSDIR}; pwd -P +__canonical_CURDIR!= cd ${.CURDIR}; pwd -P +PORTSUBDIR= ${__canonical_CURDIR:S,${__canonical_PORTSDIR}/,,} +.endif + .if exists(${.CURDIR}/patches.${ARCH}-${OPSYS}) PATCHDIR?= ${.CURDIR}/patches.${ARCH}-${OPSYS} .elif exists(${.CURDIR}/patches.${OPSYS}) @@ -558,6 +574,7 @@ GZCAT?= /usr/bin/gzcat GZIP?= -9 GZIP_CMD?= /usr/bin/gzip -nf ${GZIP} LDCONFIG?= /sbin/ldconfig +LN?= /bin/ln MKDIR?= /bin/mkdir -p MV?= /bin/mv RM?= /bin/rm @@ -965,9 +982,17 @@ do-fetch: .if !target(do-extract) do-extract: .if !defined(NO_WRKDIR) +.if defined(WRKOBJDIR) + @${RM} -rf ${WRKOBJDIR}/${PORTSUBDIR} + @${MKDIR} -p ${WRKOBJDIR}/${PORTSUBDIR} + @echo "${WRKDIR} -> ${WRKOBJDIR}/${PORTSUBDIR}" + @# XXX whatif a build is going on right now? Is this wise? + @${LN} -sf ${WRKOBJDIR}/${PORTSUBDIR} ${WRKDIR} +.else @${RM} -rf ${WRKDIR} @${MKDIR} ${WRKDIR} .endif +.endif @for file in ${EXTRACT_ONLY}; do \ if ! (cd ${WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/$$file ${EXTRACT_AFTER_ARGS});\ then \ @@ -1145,7 +1170,7 @@ _PORT_USE: .USE exit 1; \ fi .endif - @if [ `${SH} -c umask` != 0022 ]; then \ + @if [ `${SH} -c umask` != ${DEF_UMASK} ]; then \ ${ECHO_MSG} "===> Warning: your umask is \"`${SH} -c umask`"\".; \ ${ECHO_MSG} " If this is not desired, set it to an appropriate value"; \ ${ECHO_MSG} " and install this port again by \`\`make reinstall''."; \ |