[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[dennou-ruby:003096] Re: Ruby1.9 Misc install



木村様:

京大・理・気象の大塚です。

Miscのインストールですが、install.rbを、このメールに添付したものに
差し替えていただければ動くと思います。

ただし、ruby-netcdfなど他のパッケージにも未対応の部分があるので、
今の段階ではRuby 1.8.7を使われるのが良いかと思います。

# パッチは色々手元にあるんですが。

Keiji Kimura さんは書きました:
> 皆様
> 
> 
> 京都大学数理解析研究所 修士2回生の木村恵二と申します.
> 
> 現在,京大の大型計算機にGphysをインストールしようと思い,
> まずRuby1.9からインストールし始めました.
> 最新版であるRuby1.9.1をインストールし,パッチもあてました.
> 
> そののち,NArray,Misc,…とインストールしていこうと思ったのですが,
> NArrayのインストールはうまくいったものの,
> Miscのインストールがうまくいきませんでした.
> 
> 症状としては,
> $ ruby install.rb
> とすると,
> require 'ftools'
> のところで,ftoolsライブラリがloadErrorと言われました.
> 
> そこで,ちょっとRuby1.9に関して調べてみたのですが,
> Ruby1.8からRuby1.9に移行したときに,
> ftoolsがなくなったという記事を見つけました.
> 
> ということは,
> Ruby1.9ではMiscはインストールできないのでしょうか?
> 従って,GphysはRuby1.9ではインストールできないのでしょうか?
> 
> 
> 当方,Rubyなどに関して初心者のため,
> 馬鹿な質問,もしくは解決済みの質問でしたら
> 申し訳ありません.
> 
> 
> ---------------------------------------------------
> 木村 恵二  Kimura Keiji
> 数理解析研究所  修士2回生
> (京都大学 理学研究科 数学・数理解析専攻 数理解析系)
> Mail Address : kimura@xxxxxxxxxxxxxxxxxxxx
> ---------------------------------------------------


-- 
京都大学大学院理学研究科
気象学研究室
大塚成徳 (Shigenori OTSUKA)
email: otsuka@xxxxxxxxxxxxxxxxxx
require 'rbconfig'
require 'find'
include Config

if CONFIG["MINOR"].to_i > 6 then $rb_18 = true else $rb_18 = false end
if $rb_18
  require 'fileutils'
else
  require 'ftools'
end

=begin
$version = CONFIG["MAJOR"]+"."+CONFIG["MINOR"]
$libdir = File.join(CONFIG["libdir"], "ruby", $version)
# $archdir = File.join($libdir, CONFIG["arch"])
$site_libdir = $:.find {|x| x =~ /site_ruby$/}
if !$site_libdir
  $site_libdir = File.join($libdir, "site_ruby")
elsif Regexp.compile($site_libdir) !~ Regexp.quote($version)
  $site_libdir = File.join($site_libdir, $version)
end

default_destdir = $site_libdir
=end

default_destdir = CONFIG["sitelibdir"]

def install_rb(srcdir, destdir)
  libdir = "lib"
  libdir = File.join(srcdir, libdir) if srcdir
  path = []
  dir = []
  Find.find(libdir) do |f|
    next unless FileTest.file?(f)
    next if (f = f[libdir.length+1..-1]) == nil
    next if (/CVS$/ =~ File.dirname(f))
    path.push f
    dir |= [File.dirname(f)]
  end
  for f in dir
    next if f == "."
    next if f == "CVS"
    if $rb_18
      FileUtils.makedirs(File.join(destdir, f))
    else
      File::makedirs(File.join(destdir, f))
    end
  end
  for f in path
    next if (/\~$/ =~ f)
    next if (/^\./ =~ File.basename(f))
    if $rb_18
      FileUtils.install(File.join("lib", f), File.join(destdir, f), {:mode => 0644, :verbose => true})
    else
      File::install(File.join("lib", f), File.join(destdir, f), 0644, true)
    end
  end
end

def ARGV.switch
  return nil if self.empty?
  arg = self.shift
  return nil if arg == '--'
  if arg =~ /^-(.)(.*)/
    return arg if $1 == '-'
    raise 'unknown switch "-"' if $2.index('-')
    self.unshift "-#{$2}" if $2.size > 0
    "-#{$1}"
  else
    self.unshift arg
    nil
  end
end

def ARGV.req_arg
  self.shift || raise('missing argument')
end

destdir = default_destdir

begin
  while switch = ARGV.switch
    case switch
    when '-d', '--destdir'
      destdir = ARGV.req_arg
#    when '-u', '--uninstall'
#      uninstall = true
    else
      raise "unknown switch #{switch.dump}"
    end
  end
rescue
  STDERR.puts $!.to_s
  STDERR.puts File.basename($0) + 
    " -d <destdir>"
  exit 1
end    

#if( defined?(uninstall) && uninstall )
#   uninstall_rb(nil, destdir)
#else
   install_rb(nil, destdir)
#end