ports/textproc/eruby/files/patch-Makefile.in
Dirk Meyer 08a5a0f3a7 - make configure work with ruby19
- set PKGNAMEPREFIX
- ugly fix for threads with ruby-1.8.7.160
- replace obsolteted funtions, experimental build with ruby19
2009-07-12 14:36:01 +00:00

17 lines
982 B
Text

--- Makefile.in.orig 2003-07-26 12:21:33.000000000 +0200
+++ Makefile.in 2009-06-21 17:14:51.000000000 +0200
@@ -37,10 +37,10 @@
DLDFLAGS = @DLDFLAGS@
LDSHARED = @LDSHARED@
EXT_DLDFLAGS = @EXT_DLDFLAGS@
-INSTALL_PROGRAM = $(RUBY) -r ftools -e 'File.install ARGV[0], ARGV[1], 0755, true'
-INSTALL_DLLIB = $(RUBY) -r ftools -e 'File.install ARGV[0], ARGV[1], 0555, true'
-INSTALL_DATA = $(RUBY) -r ftools -e 'File.install ARGV[0], ARGV[1], 0644, true'
-INSTALL_DIR = $(RUBY) -r ftools -e 'File.makedirs(*ARGV)'
+INSTALL_PROGRAM = $(RUBY) -r fileutils -e 'FileUtils.install ARGV[0], ARGV[1], :mode => 0755, :verbose => true'
+INSTALL_DLLIB = $(RUBY) -r fileutils -e 'FileUtils.install ARGV[0], ARGV[1], :mode => 0555, :verbose => true'
+INSTALL_DATA = $(RUBY) -r fileutils -e 'FileUtils.install ARGV[0], ARGV[1], :mode => 0644, :verbose => true'
+INSTALL_DIR = $(RUBY) -r fileutils -e 'FileUtils.mkdir_p(*ARGV)'
RUBY_INSTALL_NAME = @RUBY_INSTALL_NAME@
LIBRUBYARG = @LIBRUBYARG@