diff options
author | Sam Lawrance <lawrance@FreeBSD.org> | 2006-02-13 10:03:35 +0000 |
---|---|---|
committer | Sam Lawrance <lawrance@FreeBSD.org> | 2006-02-13 10:03:35 +0000 |
commit | 63e8775522d31529ddc0592751ca0917a92e1320 (patch) | |
tree | b7c50bcff3c5feef58eeb0e05b0f7a307c7de784 | |
parent | bbbfa1671bd12b6a41f4959064d8fc5e69d17c21 (diff) | |
download | ports-63e8775522d31529ddc0592751ca0917a92e1320.tar.gz ports-63e8775522d31529ddc0592751ca0917a92e1320.zip |
Notes
-rw-r--r-- | www/instiki/Makefile | 4 | ||||
-rw-r--r-- | www/instiki/files/patch-vendor_rails_activesupport_lib_active_support_clean_logger.rb | 14 |
2 files changed, 18 insertions, 0 deletions
diff --git a/www/instiki/Makefile b/www/instiki/Makefile index ed0da84846c5..f725d114ef56 100644 --- a/www/instiki/Makefile +++ b/www/instiki/Makefile @@ -7,6 +7,7 @@ PORTNAME= instiki PORTVERSION= 0.10.2 +PORTREVISION= 1 CATEGORIES= www ruby MASTER_SITES= http://rubyforge.lauschmusik.de/instiki/ \ http://rubyforge.planetargon.com/instiki/ \ @@ -34,6 +35,9 @@ RUBY_SHEBANG_FILES=instiki INSTIKIPORT?= 2500 +post-patch: + @${FIND} ${WRKSRC} -name '*.orig' -delete + pre-install: @${SED} ${SED_SCRIPT} ${FILESDIR}/${PORTNAME}.sh >${WRKDIR}/${PORTNAME}.sh diff --git a/www/instiki/files/patch-vendor_rails_activesupport_lib_active_support_clean_logger.rb b/www/instiki/files/patch-vendor_rails_activesupport_lib_active_support_clean_logger.rb new file mode 100644 index 000000000000..1409cd25ebcc --- /dev/null +++ b/www/instiki/files/patch-vendor_rails_activesupport_lib_active_support_clean_logger.rb @@ -0,0 +1,14 @@ +--- vendor/rails/activesupport/lib/active_support/clean_logger.rb.orig 2005-09-21 00:31:08.000000000 -0700 ++++ vendor/rails/activesupport/lib/active_support/clean_logger.rb 2005-09-21 00:45:36.000000000 -0700 +@@ -10,7 +10,9 @@ + end + + private +- remove_const "Format" ++ if const_defined?(:Format) # Not defined in Ruby 1.8.3 ++ remove_const "Format" ++ end + Format = "%s\n" + def format_message(severity, timestamp, msg, progname) + Format % [msg] +--- patch-as_clean_logger_rb ends here --- |