diff options
Diffstat (limited to 'math')
-rw-r--r-- | math/ruby-bitset/Makefile | 6 | ||||
-rw-r--r-- | math/ruby-bitvector/Makefile | 6 | ||||
-rw-r--r-- | math/ruby-gmp/Makefile | 4 |
3 files changed, 14 insertions, 2 deletions
diff --git a/math/ruby-bitset/Makefile b/math/ruby-bitset/Makefile index 7b4ed4880e91..2bdbda5a32df 100644 --- a/math/ruby-bitset/Makefile +++ b/math/ruby-bitset/Makefile @@ -26,4 +26,8 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/sample/* ${RUBY_MODEXAMPLESDIR}/ .endif -.include <bsd.port.mk> +.include <bsd.port.pre.mk> +.if ${RUBY_VER} == 1.9 +BROKEN= does not build with ruby 1.9 +.endif +.include <bsd.port.post.mk> diff --git a/math/ruby-bitvector/Makefile b/math/ruby-bitvector/Makefile index f7e21da22d60..4e40c2671a7f 100644 --- a/math/ruby-bitvector/Makefile +++ b/math/ruby-bitvector/Makefile @@ -30,4 +30,8 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.pre.mk> +.if ${RUBY_VER} == 1.9 +BROKEN= does not build with ruby 1.9 +.endif +.include <bsd.port.post.mk> diff --git a/math/ruby-gmp/Makefile b/math/ruby-gmp/Makefile index b951a0d47655..bebedef858b4 100644 --- a/math/ruby-gmp/Makefile +++ b/math/ruby-gmp/Makefile @@ -29,6 +29,10 @@ DOCS= ChangeLog README doc/PRECISION doc/TODO .include <bsd.port.pre.mk> +.if ${RUBY_VER} == 1.9 +BROKEN= does not build with ruby 1.9 +.endif + post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${RUBY_MODDOCDIR} |