From 7546c82af6c335dc561fea6b2c402f156363dd89 Mon Sep 17 00:00:00 2001 From: decke Date: Mon, 14 Mar 2011 13:23:31 +0000 Subject: - Add fix to work with RubyGems 1.6.x - Bump PORTREVISION RubyGems 1.6.x is incompatible with the bundled rails 2.3.5. It's documented in the RubyGems release notes that "RubyGems no longer requires 'thread'. Rails < 3 will need to add require 'thread' to their applications." PR: ports/155492 --- www/redmine/Makefile | 2 +- www/redmine/files/patch-Rakefile | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 www/redmine/files/patch-Rakefile (limited to 'www/redmine') diff --git a/www/redmine/Makefile b/www/redmine/Makefile index 21e9068fdb26..fa86a3fdd530 100644 --- a/www/redmine/Makefile +++ b/www/redmine/Makefile @@ -7,7 +7,7 @@ PORTNAME= redmine PORTVERSION= 1.1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_RUBYFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/www/redmine/files/patch-Rakefile b/www/redmine/files/patch-Rakefile new file mode 100644 index 000000000000..6980fe03a8fc --- /dev/null +++ b/www/redmine/files/patch-Rakefile @@ -0,0 +1,10 @@ +--- Rakefile.orig 2011-03-07 20:44:41.000000000 +0100 ++++ Rakefile 2011-03-14 14:06:13.000000000 +0100 +@@ -6,5 +6,6 @@ + require 'rake' + require 'rake/testtask' + require 'rake/rdoctask' ++require 'thread' + + require 'tasks/rails' +\ No newline at end of file -- cgit