diff options
author | kris <kris@FreeBSD.org> | 2004-05-30 15:08:25 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-05-30 15:08:25 +0800 |
commit | 0d76f022b99962c68ae14d4a1ad1c29adc2f81a3 (patch) | |
tree | 9236f7c43a546303cf88eaecbe94cc795e32037b /math | |
parent | 72d6643a0e0c9914507525210e291c6985dae452 (diff) | |
download | freebsd-ports-gnome-0d76f022b99962c68ae14d4a1ad1c29adc2f81a3.tar.gz freebsd-ports-gnome-0d76f022b99962c68ae14d4a1ad1c29adc2f81a3.tar.zst freebsd-ports-gnome-0d76f022b99962c68ae14d4a1ad1c29adc2f81a3.zip |
BROKEN on amd64: Needs to link against shared library
Diffstat (limited to 'math')
-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> |