From: niklas Date: Sat, 11 Jan 1997 11:58:11 +0000 (+0000) Subject: Support an ONLY_FOR_ARCHS var, that prohibits doing anything for a certain X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=f0f0de5fec0a20008fb946a4a2cc3643274e17d0;p=openbsd Support an ONLY_FOR_ARCHS var, that prohibits doing anything for a certain port except for certain architectures. If OBJMACHINE is set set WRKDIR to work.${MACHINE}. Fix a shell construct which pdksh interprets differently than ash as it was written. Make bsd.own.mk be auto-included in make(1) invocations below this one. --- diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk index cd9e8ddd1f4..f2444e50e55 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.9 1996/12/25 20:10:09 imp Exp $ +# $OpenBSD: bsd.port.mk,v 1.10 1997/01/11 11:58:11 niklas Exp $ # $NetBSD: $ # # bsd.port.mk - 940820 Jordan K. Hubbard. @@ -23,6 +23,9 @@ # # Variables that typically apply to all ports: # +# ONLY_FOR_ARCHS- If a port only makes sense to certain architectures, this +# is a list containing the names for them. It is checked +# against the predefined ${MACHINE} value # OPSYS - Portability clause. This is the operating system the # makefile is being used on. Automatically set to # "FreeBSD," "NetBSD," or "OpenBSD" as appropriate. @@ -246,6 +249,24 @@ # NEVER override the "regular" targets unless you want to open # a major can of worms. +.if defined(ONLY_FOR_ARCHS) +.for __ARCH in ${ONLY_FOR_ARCHS} +.if ${MACHINE} == "${__ARCH}" +__ARCH_OK= 1 +.endif +.endfor +.else +__ARCH_OK= 1 +.endif + +.if !defined(__ARCH_OK) +.MAIN: all + +fetch fetch-list extract patch configure build install reinstall package describe checkpatch checksum makesum all: + @echo "This port is only for ${ONLY_FOR_ARCHS}," + @echo "and you are running ${MACHINE}." +.else + # Get the operating system type OPSYS!= uname -s @@ -254,7 +275,7 @@ OPSYS!= uname -s .endif .if (${OPSYS} == "OpenBSD") -NOMANCOMPRESS?=yes +NOMANCOMPRESS?= yes .endif # These need to be absolute since we don't know how deep in the ports @@ -272,7 +293,11 @@ _DISTDIR?= ${DISTDIR}/${DIST_SUBDIR} PACKAGES?= ${PORTSDIR}/packages TEMPLATES?= ${PORTSDIR}/templates .if !defined(NO_WRKDIR) +.if defined(OBJMACHINE) +WRKDIR?= ${.CURDIR}/work.${MACHINE} +.else WRKDIR?= ${.CURDIR}/work +.endif .else WRKDIR?= ${.CURDIR} .endif @@ -388,6 +413,11 @@ MTREE_ARGS?= -U -f ${MTREE_LOCAL} -d -e -p NO_MTREE= yes .endif +.if (${OPSYS} == "OpenBSD") +.include +MAKE_ENV+= EXTRA_SYS_MK_INCLUDES="" +.endif + # A few aliases for *-install targets INSTALL_PROGRAM= \ ${INSTALL} ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} @@ -828,7 +858,7 @@ do-extract: @${MKDIR} ${WRKDIR} .endif @for file in ${EXTRACT_ONLY}; do \ - if !(cd ${WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/$$file ${EXTRACT_AFTER_ARGS});\ + if ! (cd ${WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/$$file ${EXTRACT_AFTER_ARGS});\ then \ exit 1; \ fi \ @@ -1596,3 +1626,5 @@ depend: .if !target(tags) tags: .endif + +.endif