diff options
author | kris <kris@FreeBSD.org> | 2004-03-05 12:48:16 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-05 12:48:16 +0800 |
commit | e8abd2b757745897f0cd0cc56527a610ea6544f5 (patch) | |
tree | e1b3d45f44230f268eec29653d040f09de81d7e6 | |
parent | 810440aebd836e706b5df6b009dec526ed0ff806 (diff) | |
download | freebsd-ports-graphics-e8abd2b757745897f0cd0cc56527a610ea6544f5.tar.gz freebsd-ports-graphics-e8abd2b757745897f0cd0cc56527a610ea6544f5.tar.zst freebsd-ports-graphics-e8abd2b757745897f0cd0cc56527a610ea6544f5.zip |
BROKEN on ia64 and amd64: Does not compile
-rw-r--r-- | devel/acpicatools/Makefile | 8 | ||||
-rw-r--r-- | graphics/libemf/Makefile | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/devel/acpicatools/Makefile b/devel/acpicatools/Makefile index 2ed98a1bf58..868a8efa1b1 100644 --- a/devel/acpicatools/Makefile +++ b/devel/acpicatools/Makefile @@ -18,7 +18,13 @@ NO_WRKSUBDIR= yes MAINTAINER= iwasaki@FreeBSD.org COMMENT= Some utilities for Intel ACPICA (Debugger, ASL Compiler and etc.). +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" || ${ARCH} == "amd64" +BROKEN= "Does not compile on ia64 or amd64" +.endif + pre-install: @${MKDIR} ${PREFIX}/man/man8 -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/graphics/libemf/Makefile b/graphics/libemf/Makefile index 135f467d345..86ca9a22f2b 100644 --- a/graphics/libemf/Makefile +++ b/graphics/libemf/Makefile @@ -15,10 +15,16 @@ COMMENT= Enhanced Metafile Library GNU_CONFIGURE= yes +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" || ${ARCH} == "amd64" +BROKEN= "Does not compile on ia64 or amd64" +.endif + post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/html/* ${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |