aboutsummaryrefslogtreecommitdiffstats
path: root/emulators
diff options
context:
space:
mode:
authoredwin <edwin@FreeBSD.org>2003-10-03 21:31:16 +0800
committeredwin <edwin@FreeBSD.org>2003-10-03 21:31:16 +0800
commit6db03782ce42f96763294d3e93f3cd3541cb3b99 (patch)
tree564151d544b603ae08fdb25f78eae87b6ebca9c1 /emulators
parent5fff3a2d46cc3c290c3170771eca2789c2abb6f4 (diff)
downloadfreebsd-ports-gnome-6db03782ce42f96763294d3e93f3cd3541cb3b99.tar.gz
freebsd-ports-gnome-6db03782ce42f96763294d3e93f3cd3541cb3b99.tar.zst
freebsd-ports-gnome-6db03782ce42f96763294d3e93f3cd3541cb3b99.zip
[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 <linimon@lonesome.com>
Diffstat (limited to 'emulators')
-rw-r--r--emulators/dlx/Makefile12
1 files changed, 9 insertions, 3 deletions
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 <bsd.port.pre.mk>
+
+.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 <bsd.port.mk>
+.include <bsd.port.post.mk>