diff options
author | kevlo <kevlo@FreeBSD.org> | 2004-12-02 01:36:46 +0000 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2004-12-02 01:36:46 +0000 |
commit | 47e115d6806ac207639a3d7fa0a0ce0ea61663dd (patch) | |
tree | d02780aa54ee7e9bf3e10fffe4a0e148694941ea /editors | |
parent | fb63156f39235f0e763d4b3fd4614ac6fbd48c29 (diff) | |
download | FreeBSD-ports-47e115d6806ac207639a3d7fa0a0ce0ea61663dd.zip FreeBSD-ports-47e115d6806ac207639a3d7fa0a0ce0ea61663dd.tar.gz |
BROKEN on ia64. Noted by kris
Diffstat (limited to 'editors')
-rw-r--r-- | editors/kxmleditor/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/editors/kxmleditor/Makefile b/editors/kxmleditor/Makefile index ed360b2..44866e4 100644 --- a/editors/kxmleditor/Makefile +++ b/editors/kxmleditor/Makefile @@ -20,8 +20,14 @@ USE_GMAKE= yes INSTALLS_SHLIB= yes USE_REINPLACE= yes +.include <bsd.port.pre.mk> + post-patch: @${REINPLACE_CMD} -e 's|-O2||g' -e "s,-lpthread,${PTHREAD_LIBS},g" \ ${WRKSRC}/${CONFIGURE_SCRIPT} -.include <bsd.port.mk> +.if ${ARCH} == "ia64" +BROKEN= "Does not compile on ia64" +.endif + +.include <bsd.port.post.mk> |