summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorMark Linimon <linimon@FreeBSD.org>2003-10-17 03:14:23 +0000
committerMark Linimon <linimon@FreeBSD.org>2003-10-17 03:14:23 +0000
commit1e47fd16a03758e7dadb44df553f560f3788a0fb (patch)
tree93904f9fc3195d43ae0be471c4061ca6328afd1c /graphics
parentAlways include x86 bits even on non-x86 platforms. This fixes builds on (diff)
Mark as broken on alpha and sparc64 (fails to configure); also
mark as broken on i386 for -current (also fails to configure). Informed maintainer. Curiously, it seems to configure correctly on ia64.
Notes
Notes: svn path=/head/; revision=91466
Diffstat (limited to 'graphics')
-rw-r--r--graphics/ivtools/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/graphics/ivtools/Makefile b/graphics/ivtools/Makefile
index b2bfa456ae44..588b95b74e9a 100644
--- a/graphics/ivtools/Makefile
+++ b/graphics/ivtools/Makefile
@@ -18,6 +18,13 @@ COMMENT= Drawing editors derived from idraw
.include <bsd.port.pre.mk>
+.if ${ARCH} == alpha || ${ARCH} == sparc64
+BROKEN= "fails to configure on ${ARCH}"
+.endif
+.if ${ARCH} == i386 && ${OSVERSION} > 500000
+BROKEN= "fails to configure on ${ARCH} with FreeBSD version ${OSVERSION}"
+.endif
+
.if ${XFREE86_VERSION} == 3
BUILD_DEPENDS= imake:${PORTSDIR}/devel/imake
.else