1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
|
=begin
top-level extconf.rb for Ruby-GNOME2
$Id: extconf.rb,v 1.17 2007/10/22 12:19:17 ktou Exp $
Copyright (C) 2003-2005 Ruby-GNOME2 Project Team
=end
require 'English'
require 'mkmf'
require 'fileutils'
require 'pathname'
priorlibs = [
"glib2",
"gobject-introspection",
"gio2",
"gdk_pixbuf2",
"pango",
"atk",
"gtk2",
"gdk3",
"gtk3",
]
unsupported_libraries = [
"clutter-gstreamer",
"vte",
"vte3",
"gdk_pixbuf2-no-gi",
"gdk3-no-gi",
"gtk3-no-gi",
"gtksourceview3-no-gi",
"vte3-no-gi",
]
#
# detect sub-directories
#
$ruby = File.join(RbConfig::CONFIG['bindir'], RbConfig::CONFIG['RUBY_INSTALL_NAME'] + RbConfig::CONFIG['EXEEXT'])
$ruby = arg_config("--ruby", $ruby)
rm = "rm -f"
if /mswin/ =~ RUBY_PLATFORM
rm = "del"
end
$srcdir = File.dirname(__FILE__)
$topsrcdir = $configure_args["--topsrcdir"] ||= $srcdir
$topdir = $configure_args["--topdir"] ||= Dir.pwd
$strict = $configure_args["--strict"] ? "--strict" : ""
$srcdir = File.expand_path($srcdir)
$topsrcdir = File.expand_path($topsrcdir)
$topdir = File.expand_path($topdir)
subdirs = ARGV.select{|v| /^--/ !~ v}
if subdirs.size == 0
subdirs = Dir.glob($topsrcdir+"/*/extconf.rb")
subdirs.collect! do |subdir|
subdir[0..$topsrcdir.size] = ""
File.dirname(subdir)
end
subdirs.reject! do |subdir|
subdir =~ /gvlc/
end
priorlibs &= subdirs
subdirs -= priorlibs
subdirs = priorlibs + subdirs #Change the order
end
subdirs -= unsupported_libraries
#
# generate sub-directory Makefiles
#
target_modules = []
ignore_modules = []
ruby, *ruby_args = Shellwords.shellwords($ruby)
if ARGV.grep(/\A--ruby=/)
extra_args = ["--ruby=#{$ruby}"] + ARGV.reject {|arg| /\A--ruby=/ =~ arg}
else
extra_args = ARGV.dup
end
subdirs.each do |subdir|
STDERR.puts("#{$0}: Entering directory `#{subdir}'")
FileUtils.mkdir_p(subdir)
topdir = File.join(*([".."] * subdir.split(/\/+/).size))
dir = $topsrcdir
dir = File.join(topdir, dir) unless Pathname.new(dir).absolute?
srcdir = File.join(dir, subdir)
args = ruby_args + ["-C", subdir, File.join(srcdir, "extconf.rb"),
"--topsrcdir=#{dir}", "--topdir=#{topdir}",
*extra_args]
ret = system(ruby, *args)
STDERR.puts("#{$0}: Leaving directory '#{subdir}'")
if ret
target_modules << subdir
else
if $strict
exit(1)
end
ignore_modules << subdir
end
end
puts "\n-----"
unless target_modules.empty?
puts "Target libraries: #{target_modules.join(', ')}"
end
unless ignore_modules.empty?
puts "Ignored libraries: #{ignore_modules.join(', ')}"
end
#
# generate top-level Makefile
#
def run_make_in_sub_dir(sub_dir, target)
if /mswin/ =~ RUBY_PLATFORM
" $(COMMAND) '#{sub_dir}' $(MAKE) #{target}"
else
" (cd '#{sub_dir}' && $(MAKE) #{target})"
end
end
File.open("Makefile", "w") do |makefile|
makefile.print(<<-EOM)
TOPSRCDIR = #{$topsrcdir}
COMMAND = #{$ruby} #{$topsrcdir}/exec_make.rb #{$strict}
RM = #{rm}
EOM
["all", "install", "site-install", "clean", "distclean"].each do |target|
makefile.print(<<-EOM)
#{target}:
EOM
target_modules.each do |target_module|
sub_target = "#{target}-#{target_module}"
makefile.print(<<-EOM)
#{target}: #{sub_target}
#{sub_target}:
#{run_make_in_sub_dir(target_module, target)}
EOM
end
end
makefile.print(<<-EOM)
distclean: distclean-toplevel
distclean-toplevel:
$(RM) Makefile mkmf.log
EOM
end
puts "-----"
puts "Done."
$makefile_created = true
|