diff options
author | swills <swills@FreeBSD.org> | 2014-01-26 04:00:33 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2014-01-26 04:00:33 +0800 |
commit | 09675c9daefb1787b2375e015c4570a219fe1d02 (patch) | |
tree | 5be9d1fe39c5182e5c9a8966e5bc4ec6f760a3f7 /sysutils | |
parent | be71d97811f358b13f2502b5cce59ac2d6a6a2b1 (diff) | |
download | freebsd-ports-gnome-09675c9daefb1787b2375e015c4570a219fe1d02.tar.gz freebsd-ports-gnome-09675c9daefb1787b2375e015c4570a219fe1d02.tar.zst freebsd-ports-gnome-09675c9daefb1787b2375e015c4570a219fe1d02.zip |
- Fix with Ruby 1.9
PR: ports/179611
Submitted by: Tsurutani Naoki <turutani@scphys.kyoto-u.ac.jp>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/pdumpfs/Makefile | 2 | ||||
-rw-r--r-- | sysutils/pdumpfs/files/extrapatch-pdumpfs.in | 91 |
2 files changed, 92 insertions, 1 deletions
diff --git a/sysutils/pdumpfs/Makefile b/sysutils/pdumpfs/Makefile index 3e1eabe7eec0..44c39839c5d0 100644 --- a/sysutils/pdumpfs/Makefile +++ b/sysutils/pdumpfs/Makefile @@ -3,7 +3,7 @@ PORTNAME= pdumpfs PORTVERSION= 1.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils MASTER_SITES= http://0xcc.net/pdumpfs/ diff --git a/sysutils/pdumpfs/files/extrapatch-pdumpfs.in b/sysutils/pdumpfs/files/extrapatch-pdumpfs.in new file mode 100644 index 000000000000..b2320b38ad8d --- /dev/null +++ b/sysutils/pdumpfs/files/extrapatch-pdumpfs.in @@ -0,0 +1,91 @@ +--- pdumpfs.in.orig 2004-12-21 11:43:12.000000000 +0900 ++++ pdumpfs.in 2013-06-22 08:58:34.000000000 +0900 +@@ -48,21 +48,21 @@ + # + + require 'find' +-require 'ftools' ++require 'fileutils' + require 'getoptlong' + require 'date' + + class File + def self.real_file? (path) +- File.file?(path) and not File.symlink?(path) ++ FileTest.file?(path) and not FileTest.symlink?(path) + end + + def self.anything_exist? (path) +- File.exist?(path) or File.symlink?(path) ++ FileTest.exist?(path) or FileTest.symlink?(path) + end + + def self.real_directory? (path) +- File.directory?(path) and not File.symlink?(path) ++ FileTest.directory?(path) and not FileTest.symlink?(path) + end + + def self.force_symlink (src, dest) +@@ -79,7 +79,7 @@ + end + + def self.readable_file? (path) +- File.file?(path) and File.readable?(path) ++ FileTest.file?(path) and FileTest.readable?(path) + end + + def self.split_all (path) +@@ -129,7 +129,7 @@ + GetVolumeInformation = Win32API.new("kernel32", "GetVolumeInformation", + "PPLPPPPL", "I") + def get_filesystem_type (path) +- return nil unless(File.exist?(path)) ++ return nil unless(FileTest.exist?(path)) + + drive = File.expand_path(path)[0..2] + buff = "\0" * 1024 +@@ -868,7 +868,7 @@ + today = File.join(dest, datedir(start_time), base) + + File.umask(0077) +- File.mkpath(today) unless @dry_run ++ FileUtils.mkpath(today) unless @dry_run + if latest + update_snapshot(src, latest, today) + else +@@ -1018,7 +1018,7 @@ + + case type + when "directory" +- File.mkpath(today) ++ FileUtils.mkpath(today) + when "unchanged" + File.force_link(latest, today) + when "updated" +@@ -1052,7 +1052,7 @@ + + Find.find(src) do |s| # path of the source file + if @matcher.exclude?(s) +- if File.lstat(s).directory? then Find.prune() else next end ++ if FileTest.directory?(s) then Find.prune() else next end + end + r = make_relative_path(s, src) + l = File.join(latest, r) # path of the latest snapshot +@@ -1077,7 +1077,7 @@ + + Find.find(src) do |s| + if @matcher.exclude?(s) +- if File.lstat(s).directory? then Find.prune() else next end ++ if FileTest.directory?(s) then Find.prune() else next end + end + r = make_relative_path(s, src) + t = File.join(dest, r) +@@ -1089,7 +1089,7 @@ + + case type + when "directory" +- File.mkpath(t) ++ FileUtils.mkpath(t) + when "new_file" + copy(s, t) + when "symlink" |