diff options
-rw-r--r-- | math/ruby-gmp/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/math/ruby-gmp/Makefile b/math/ruby-gmp/Makefile index a48c3c73b4a1..9f6a475754da 100644 --- a/math/ruby-gmp/Makefile +++ b/math/ruby-gmp/Makefile @@ -26,6 +26,12 @@ INSTALL_TARGET= site-install DOCS= ChangeLog README doc/PRECISION doc/TODO +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= "Does not build on amd64 (needs to link against shared library)" +.endif + post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${RUBY_MODDOCDIR} @@ -34,4 +40,4 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |