From 6db03782ce42f96763294d3e93f3cd3541cb3b99 Mon Sep 17 00:00:00 2001 From: edwin Date: Fri, 3 Oct 2003 13:31:16 +0000 Subject: [patch] mark emulators/dlx as broken except on i386 stable Per bento, this port only seems to build on i386 stable. Mark it so. The distfile dates from 1991 (!) so it may well be time to let it go unless someone wants to step up to maintain it. PR: ports/57275 Submitted by: Mark Linimon --- emulators/dlx/Makefile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'emulators') diff --git a/emulators/dlx/Makefile b/emulators/dlx/Makefile index c7020a040d6f..afcf0ef0b361 100644 --- a/emulators/dlx/Makefile +++ b/emulators/dlx/Makefile @@ -16,8 +16,14 @@ EXTRACT_SUFX= .tar.Z MAINTAINER= ports@FreeBSD.org COMMENT= Assembler for Hennessy and Patterson's DLX architecture -.if ${MACHINE_ARCH} == alpha -BROKEN= will not build on alpha +.include + +.if ${ARCH} != i386 +BROKEN= will not build on ${ARCH} +.endif + +.if ${OSVERSION} > 500000 +BROKEN= does not build on -current .endif MAN1= dlxcc.1 @@ -40,4 +46,4 @@ do-install: @${INSTALL_DATA} ${WRKSRC}/dlxsim/doc/* ${DOCSDIR} .endif -.include +.include -- cgit