diff options
author | kris <kris@FreeBSD.org> | 2004-12-04 10:04:25 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-12-04 10:04:25 +0800 |
commit | f379ac3be545efe5f9acff0393e125d3c79f9d6a (patch) | |
tree | b539d5b1ba8eb7d1e9f18864cd863c2cd4d31685 /textproc/libparsifal | |
parent | 3192c9d2155f23cfb3fea11880edf2ee866e3959 (diff) | |
download | freebsd-ports-gnome-f379ac3be545efe5f9acff0393e125d3c79f9d6a.tar.gz freebsd-ports-gnome-f379ac3be545efe5f9acff0393e125d3c79f9d6a.tar.zst freebsd-ports-gnome-f379ac3be545efe5f9acff0393e125d3c79f9d6a.zip |
BROKEN on !i386 and !sparc64: Does not compile
Diffstat (limited to 'textproc/libparsifal')
-rw-r--r-- | textproc/libparsifal/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/textproc/libparsifal/Makefile b/textproc/libparsifal/Makefile index 6711b769425b..10f91668f74a 100644 --- a/textproc/libparsifal/Makefile +++ b/textproc/libparsifal/Makefile @@ -21,7 +21,13 @@ INSTALLS_SHLIB= yes PLIST_SUB= VERSION=${PORTVERSION} +.include <bsd.port.pre.mk> + +.if ${ARCH} != "i386" && ${ARCH} != "sparc64" +BROKEN= "Does not compile on !i386 and !sparc64" +.endif + post-patch: @${REINPLACE_CMD} -e 's| -O3||g' ${WRKSRC}/src/Makefile.in -.include <bsd.port.mk> +.include <bsd.port.post.mk> |