diff options
author | swills <swills@FreeBSD.org> | 2014-11-12 02:16:58 +0000 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2014-11-12 02:16:58 +0000 |
commit | e46660492838767e6bb23b17d17d5b159e649df5 (patch) | |
tree | 637c7759318f9d26110fe0978a91eec2f1a29207 | |
parent | fd23e82b535e3da1ae4c9e6be54b9dfceb0b8852 (diff) | |
download | FreeBSD-ports-e46660492838767e6bb23b17d17d5b159e649df5.zip FreeBSD-ports-e46660492838767e6bb23b17d17d5b159e649df5.tar.gz |
Mark broken with Ruby 2.1
With hat: ruby@
-rw-r--r-- | archivers/ruby-lha/Makefile | 6 | ||||
-rw-r--r-- | archivers/ruby-zip/Makefile | 8 | ||||
-rw-r--r-- | devel/ruby-langscan/Makefile | 8 | ||||
-rw-r--r-- | graphics/ruby-gd/Makefile | 8 | ||||
-rw-r--r-- | security/ruby-camellia/Makefile | 8 |
5 files changed, 32 insertions, 6 deletions
diff --git a/archivers/ruby-lha/Makefile b/archivers/ruby-lha/Makefile index 6a37f89e..219ed00 100644 --- a/archivers/ruby-lha/Makefile +++ b/archivers/ruby-lha/Makefile @@ -30,7 +30,9 @@ post-install: ${INSTALL_SCRIPT} ${EXAMPLES:S,^,${WRKSRC}/,} ${STAGEDIR}${RUBY_MODEXAMPLESDIR} .include <bsd.port.pre.mk> -.if ${RUBY_VER} == 2.0 -BROKEN= Does not build with Ruby 2.0 + +.if ${RUBY_VER} >= 1.9 +BROKEN= Does not build with Ruby 2.0 or Ruby 2.1 .endif + .include <bsd.port.post.mk> diff --git a/archivers/ruby-zip/Makefile b/archivers/ruby-zip/Makefile index 2c0e4df..63bb1d0 100644 --- a/archivers/ruby-zip/Makefile +++ b/archivers/ruby-zip/Makefile @@ -36,4 +36,10 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ .endfor -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${RUBY_VER} == 2.1 +BROKEN= Does not build with Ruby 2.1 +.endif + +.include <bsd.port.post.mk> diff --git a/devel/ruby-langscan/Makefile b/devel/ruby-langscan/Makefile index 2da68e8..4db5e17 100644 --- a/devel/ruby-langscan/Makefile +++ b/devel/ruby-langscan/Makefile @@ -64,4 +64,10 @@ x-generate-plist: ${FIND} ${RUBY_SITELIBDIR}/${PORTNAME} -type d -depth | ${SORT} -r | ${SED} -e 's,${RUBY_SITELIBDIR},@dirrm %%RUBY_SITELIBDIR%%,' >> pkg-plist.new ${FIND} ${RUBY_SITEARCHLIBDIR}/${PORTNAME} -type d -depth | ${SORT} -r | ${SED} -e 's,${RUBY_SITEARCHLIBDIR},@dirrm %%RUBY_SITEARCHLIBDIR%%,' >> pkg-plist.new -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${RUBY_VER} == 2.1 +BROKEN= Does not build with Ruby 2.1 +.endif + +.include <bsd.port.post.mk> diff --git a/graphics/ruby-gd/Makefile b/graphics/ruby-gd/Makefile index e721544..9c4adae 100644 --- a/graphics/ruby-gd/Makefile +++ b/graphics/ruby-gd/Makefile @@ -87,4 +87,10 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${RUBY_VER} == 2.1 +BROKEN= Does not build with Ruby 2.1 +.endif + +.include <bsd.port.post.mk> diff --git a/security/ruby-camellia/Makefile b/security/ruby-camellia/Makefile index 0b1b2ec..5c13f8f 100644 --- a/security/ruby-camellia/Makefile +++ b/security/ruby-camellia/Makefile @@ -32,4 +32,10 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ .endfor -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${RUBY_VER} == 2.1 +BROKEN= Does not build with Ruby 2.1 +.endif + +.include <bsd.port.post.mk> |