diff options
-rw-r--r-- | textproc/nfbtrans/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/textproc/nfbtrans/Makefile b/textproc/nfbtrans/Makefile index a905df389c2d..5dca3450646a 100644 --- a/textproc/nfbtrans/Makefile +++ b/textproc/nfbtrans/Makefile @@ -22,6 +22,12 @@ NO_WRKSUBDIR= yes ALL_TARGET= freebsd MAKEFILE= makefile +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" || ${ARCH} == "amd64" +BROKEN= "Does not install on ia64 or amd64 (segfault during install)" +.endif + do-install: ${MKDIR} ${PREFIX}/share/nfbtrans/tables ${INSTALL_PROGRAM} ${WRKSRC}/nfbtrans ${PREFIX}/bin @@ -40,4 +46,4 @@ do-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |