This repository was archived by the owner on Mar 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathinit.rb
419 lines (327 loc) · 14.1 KB
/
init.rb
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
begin
load File.join(File.dirname(__FILE__), "rubyscript2exe.rb")
rescue LoadError
require "rubyscript2exe"
end
if __FILE__ == $0
required = $"
required = required.reject{|a| File.dirname(a) == ALLINONERUBY::TEMPDIR} if defined?(ALLINONERUBY::TEMPDIR)
required = required.collect{|a| "-r '#{a}'"}
require "ev/oldandnewlocation"
require "ev/dependencies"
require "ev/ftools"
require "rbconfig" # Do not remove! It's required in bootstrap.rb.
exit if RUBYSCRIPT2EXE.is_compiling?
def backslashes(s)
s = s.gsub(/^\.\//, "").gsub(/\//, "\\\\") if windows?
s
end
def linux?
not darwin? and not windows? and not cygwin?
end
def darwin?
not (target_os.downcase =~ /darwin/).nil?
end
def windows?
not (target_os.downcase =~ /32/).nil?
end
def cygwin?
not (target_os.downcase =~ /cyg/).nil?
end
def target_os
Config::CONFIG["target_os"] or ""
end
def copyto(files, dest)
[files].flatten.sort.uniq.each do |fromfile|
tofile = File.expand_path(File.basename(fromfile), dest)
$stderr.puts "Copying #{fromfile} ..." if VERBOSE
File.copy(fromfile, tofile) unless File.file?(tofile)
end
end
RUBY = ARGV.include?("--rubyscript2exe-ruby")
RUBYW = ARGV.include?("--rubyscript2exe-rubyw")
NOSTRIP = ARGV.include?("--rubyscript2exe-nostrip")
STRACE = ARGV.include?("--rubyscript2exe-strace")
TK = ARGV.include?("--rubyscript2exe-tk")
VERBOSE = ARGV.include?("--rubyscript2exe-verbose")
QUIET = (ARGV.include?("--rubyscript2exe-quiet") and not VERBOSE)
ARGV.delete_if{|arg| arg =~ /^--rubyscript2exe-/}
script = ARGV.shift
if script.nil?
usagescript = "init.rb"
usagescript = "rubyscript2exe.rb" if defined?(TAR2RUBYSCRIPT)
$stderr.puts <<-EOF
Usage: ruby #{usagescript} application.rb[w] [parameters]
or
ruby #{usagescript} application[/] [parameters]
Where parameter is on of the following:
--rubyscript2exe-rubyw Avoid the popping up of a DOS box. (It's
annoying in the test period... No puts and
p anymore... Only use it for distributing
your application. See Logging.)
--rubyscript2exe-ruby Force the popping up of a DOS box (default).
--rubyscript2exe-nostrip Avoid stripping. The binaries (ruby and
*.so) on Linux and Darwin are stripped by
default to reduce the size of the resulting
executable.
--rubyscript2exe-strace Start the embedded application with strace
(Linux only, for debugging only).
--rubyscript2exe-tk (experimental) Embed not only the Ruby
bindings for TK, but TK itself as well.
--rubyscript2exe-verbose Verbose mode.
--rubyscript2exe-quiet Quiet mode.
On Linux and Darwin, there's no difference between ruby and rubyw.
For more information, see
http://www.erikveen.dds.nl/rubyscript2exe/index.html .
EOF
exit 1
end
bindir1 = Config::CONFIG["bindir"]
libdir1 = Config::CONFIG["libdir"]
bindir2 = tmplocation("bin/")
libdir2 = tmplocation("lib/")
appdir2 = tmplocation("app/")
app = File.basename(script.gsub(/\.rbw?$/, ""))
$stderr.puts "Tracing #{app} ..." unless QUIET
libs = $:.collect{|a| "-I '#{a}'"}
loadscript = tmplocation("require2lib2rubyscript2exe.rb")
verbose = (VERBOSE ? "--require2lib-verbose" : "")
quiet = (QUIET ? "--require2lib-quiet" : "")
argv = ARGV.collect{|a| "'#{a}'"}
ENV["REQUIRE2LIB_LIBDIR"] = libdir2
ENV["REQUIRE2LIB_LOADSCRIPT"] = loadscript
oldlocation do
unless File.exist?(script)
$stderr.puts "#{script} doesn't exist."
exit 1
end
apprb = script if File.file?(script)
apprb = "#{script}/init.rb" if File.directory?(script)
unless File.file?(apprb)
$stderr.puts "#{apprb} doesn't exist."
exit 1
end
command = backslashes("#{bindir1}/ruby") + " #{required.join(" ")} #{libs.join(" ")} -r '#{newlocation("require2lib.rb")}' '#{apprb}' #{verbose} #{quiet} #{argv.join(" ")}"
system(command)
unless File.file?(loadscript)
$stderr.puts "Couldn't execute this command (rc=#{$?}):\n#{command}"
$stderr.puts "Stopped."
exit 16
end
end
load(loadscript)
Dir.mkdir(bindir2) unless File.directory?(bindir2)
Dir.mkdir(libdir2) unless File.directory?(libdir2)
Dir.mkdir(appdir2) unless File.directory?(appdir2)
rubyw = false
rubyw = true if script =~ /\.rbw$/
rubyw = true if RUBYSCRIPT2EXE::REQUIRE2LIB_FROM_APP[:rubyw]
rubyw = false if RUBY
rubyw = true if RUBYW
if linux? or darwin?
rubyexe = "#{bindir1}/ruby"
else
rubyexe = "#{bindir1}/ruby.exe"
rubywexe = "#{bindir1}/rubyw.exe"
end
$stderr.puts "Copying files..." unless QUIET
copyto([RUBYSCRIPT2EXE::REQUIRE2LIB_FROM_APP[:dlls]].flatten.collect{|s| oldlocation(s)}, bindir2)
copyto([RUBYSCRIPT2EXE::REQUIRE2LIB_FROM_APP[:bin]].flatten.collect{|s| oldlocation(s)}, bindir2)
copyto([RUBYSCRIPT2EXE::REQUIRE2LIB_FROM_APP[:lib]].flatten.collect{|s| oldlocation(s)}, libdir2)
copyto(rubyexe, bindir2) if (linux? or darwin?) and File.file?(rubyexe)
copyto(ldds(rubyexe), bindir2) if (linux? or darwin?)
copyto(rubyexe, bindir2) if (windows? or cygwin?) and File.file?(rubyexe)
copyto(rubywexe, bindir2) if (windows? or cygwin?) and File.file?(rubywexe)
copyto(dlls(rubyexe), bindir2) if (windows? or cygwin?) and File.file?(rubyexe)
copyto(oldlocation(script), appdir2) if File.file?(oldlocation(script))
Dir.copy(oldlocation(script), appdir2) if File.directory?(oldlocation(script))
copyto(Dir.find(libdir2, :mask=>/\.(so|o|dll)$/i).collect{|file| ldds(file)}, bindir2) if linux? or darwin?
copyto(Dir.find(libdir2, :mask=>/\.(so|o|dll)$/i).collect{|file| dlls(file)}, bindir2) if windows? or cygwin?
if TK or RUBYSCRIPT2EXE::REQUIRE2LIB_FROM_APP[:tk]
if File.file?("#{libdir2}/tk.rb")
$stderr.puts "Copying TCL/TK..." unless QUIET
require "tk"
tcllib = Tk::TCL_LIBRARY
tklib = Tk::TK_LIBRARY
Dir.copy(tcllib, File.expand_path(File.basename(tcllib), libdir2))
Dir.copy(tklib, File.expand_path(File.basename(tklib), libdir2))
end
end
if not NOSTRIP and RUBYSCRIPT2EXE::REQUIRE2LIB_FROM_APP[:strip] and (linux? or darwin?)
$stderr.puts "Stripping..." unless QUIET
system("cd #{bindir2} ; strip --strip-all * 2> /dev/null")
system("cd #{libdir2} ; strip --strip-all * 2> /dev/null")
end
rubyexe = "ruby.exe"
rubyexe = "rubyw.exe" if rubyw
rubyexe = "ruby" if linux?
rubyexe = "ruby" if darwin?
eeeexe = "eee.exe"
eeeexe = "eeew.exe" if rubyw
eeeexe = "eee_linux" if linux?
eeeexe = "eee_darwin" if darwin?
appeee = "#{app}.eee"
appexe = "#{app}.exe"
appexe = "#{app}_linux" if linux?
appexe = "#{app}_darwin" if darwin?
appico = "#{app}.ico"
strace = ""
strace = "strace" if STRACE
$stderr.puts "Creating #{appexe} ..." unless QUIET
File.open(tmplocation("bootstrap.rb"), "w") do |f|
f.puts "# Set up the environment"
f.puts "# Define some RUBYSCRIPT2EXE constants"
f.puts "module RUBYSCRIPT2EXE"
f.puts " RUBYEXE = '#{rubyexe}'"
f.puts " COMPILED = true"
f.puts " USERDIR = Dir.pwd"
f.puts "end"
f.puts "dir = File.expand_path(File.dirname(__FILE__))"
f.puts "dir.sub!(/^.:/, '/cygdrive/%s' % $&[0..0].downcase) if dir =~ /^.:/" if cygwin?
f.puts "bin = dir + '/bin'"
f.puts "lib = dir + '/lib'"
f.puts "verbose = $VERBOSE"
f.puts "$VERBOSE = nil"
f.puts "s = ENV['PATH'].dup"
f.puts "$VERBOSE = verbose"
f.puts "if Dir.pwd[1..2] == ':/'"
f.puts " s.replace(bin.gsub(/\\//, '\\\\')+';'+s)"
f.puts "else"
f.puts " s.replace(bin+':'+s)"
f.puts "end"
f.puts "ENV['PATH'] = s"
f.puts "$:.clear"
f.puts "$: << lib"
# I'm not happy with the following code.
# It's just a stupid hack to get rid of /usr/local/**/*
# Should and will be changed in the future.
# For now it's necessary to make it work again with RubyGems >= 0.9.3.
f.puts "require 'rbconfig'"
f.puts "Config::CONFIG['archdir'] = dir + '/lib'" # /usr/local/lib/ruby/1.8/i686-linux
f.puts "Config::CONFIG['bindir'] = dir + '/bin'" # /usr/local/bin
f.puts "Config::CONFIG['datadir'] = dir + '/share'" # /usr/local/share
f.puts "Config::CONFIG['datarootdir'] = dir + '/share'" # /usr/local/share
f.puts "Config::CONFIG['docdir'] = dir + '/share/doc/$(PACKAGE)'" # /usr/local/share/doc/$(PACKAGE)
f.puts "Config::CONFIG['dvidir'] = dir + '/share/doc/$(PACKAGE)'" # /usr/local/share/doc/$(PACKAGE)
f.puts "Config::CONFIG['exec_prefix'] = dir + ''" # /usr/local
f.puts "Config::CONFIG['htmldir'] = dir + '/share/doc/$(PACKAGE)'" # /usr/local/share/doc/$(PACKAGE)
f.puts "Config::CONFIG['includedir'] = dir + '/include'" # /usr/local/include
f.puts "Config::CONFIG['infodir'] = dir + '/share/info'" # /usr/local/share/info
f.puts "Config::CONFIG['libdir'] = dir + '/lib'" # /usr/local/lib
f.puts "Config::CONFIG['libexecdir'] = dir + '/libexec'" # /usr/local/libexec
f.puts "Config::CONFIG['localedir'] = dir + '/share/locale'" # /usr/local/share/locale
f.puts "Config::CONFIG['localstatedir'] = dir + '/var'" # /usr/local/var
f.puts "Config::CONFIG['mandir'] = dir + '/share/man'" # /usr/local/share/man
f.puts "Config::CONFIG['pdfdir'] = dir + '/share/doc/$(PACKAGE)'" # /usr/local/share/doc/$(PACKAGE)
f.puts "Config::CONFIG['prefix'] = dir + ''" # /usr/local
f.puts "Config::CONFIG['psdir'] = dir + '/share/doc/$(PACKAGE)'" # /usr/local/share/doc/$(PACKAGE)
f.puts "Config::CONFIG['rubylibdir'] = dir + '/lib'" # /usr/local/lib/ruby/1.8
f.puts "Config::CONFIG['sbindir'] = dir + '/sbin'" # /usr/local/sbin
f.puts "Config::CONFIG['sharedstatedir'] = dir + '/com'" # /usr/local/com
f.puts "Config::CONFIG['sitearchdir'] = dir + '/lib'" # /usr/local/lib/ruby/site_ruby/1.8/i686-linux
f.puts "Config::CONFIG['sitedir'] = dir + '/lib'" # /usr/local/lib/ruby/site_ruby
f.puts "Config::CONFIG['sitelibdir'] = dir + '/lib'" # /usr/local/lib/ruby/site_ruby/1.8
f.puts "Config::CONFIG['sysconfdir'] = dir + '/etc'" # /usr/local/etc
f.puts "Config::CONFIG['topdir'] = dir + '/lib'" # /usr/local/lib/ruby/1.8/i686-linux
f.puts "# Load eee.info"
f.puts "eeedir = File.dirname(__FILE__)"
f.puts "eeeinfo = File.expand_path('eee.info', eeedir)"
f.puts "if File.file?(eeeinfo)"
f.puts " lines = File.open(eeeinfo){|f| f.readlines}"
f.puts " badline = lines.find{|line| line !~ /^EEE_/}"
f.puts " while badline"
f.puts " pos = lines.index(badline)"
f.puts " raise 'Found badline at position 0.' if pos == 0"
f.puts " lines[pos-1..pos] = lines[pos-1] + lines[pos]"
f.puts " badline = lines.find{|line| line !~ /^EEE_/}"
f.puts " end"
f.puts " lines.each do |line|"
f.puts " k, v = line.strip.split(/\s*=\s*/, 2)"
f.puts " k.gsub!(/^EEE_/, '')"
f.puts " v = File.expand_path(v) if k == 'APPEXE'"
f.puts " RUBYSCRIPT2EXE.module_eval{const_set(k, v)}"
f.puts " end"
f.puts " ARGV.concat(RUBYSCRIPT2EXE::PARMSLIST.split(/\000/))"
f.puts "end"
if RUBYSCRIPT2EXE::REQUIRE2LIB_FROM_APP[:rubygems]
f.puts "# Set the RubyGems environment"
f.puts "ENV.keys.each do |key|"
f.puts " ENV.delete(key) if key =~ /^gem_/i"
f.puts "end"
f.puts "ENV['GEM_PATH']=lib+'/rubyscript2exe.gems'"
f.puts "require 'rubygems'"
end
f.puts "# Start the application"
f.puts "load($0 = ARGV.shift)"
end
File.open(tmplocation("empty.rb"), "w") do |f|
end
File.open(tmplocation(appeee), "w") do |f|
f.puts "r bin"
f.puts "r lib"
f.puts "f bootstrap.rb"
f.puts "f empty.rb"
f.puts "r app"
f.puts "i eee.info"
apprb = File.basename(script) if File.file?(oldlocation(script))
apprb = "init.rb" if File.directory?(oldlocation(script))
# ??? nog iets met app/bin?
if linux?
f.puts "t chmod +x %tempdir%/bin/*"
f.puts "c export PATH=%tempdir%/bin:$PATH ; export LD_LIBRARY_PATH=%tempdir%/bin:$LD_LIBRARY_PATH ; #{strace} %tempdir%/bin/#{rubyexe} -r %tempdir%/bootstrap.rb -T1 %tempdir%/empty.rb %tempdir%/app/#{apprb}"
elsif darwin?
f.puts "t chmod +x %tempdir%/bin/*"
f.puts "c export PATH=%tempdir%/bin:$PATH ; export DYLD_LIBRARY_PATH=%tempdir%/bin:$DYLD_LIBRARY_PATH ; %tempdir%/bin/#{rubyexe} -r %tempdir%/bootstrap.rb -T1 %tempdir%/empty.rb %tempdir%/app/#{apprb}"
elsif cygwin?
f.puts "c %tempdir%\\bin\\#{rubyexe} -r %tempdir1%/bootstrap.rb -T1 %tempdir1%/empty.rb %tempdir1%/app/#{apprb}"
else
f.puts "c %tempdir%\\bin\\#{rubyexe} -r %tempdir%\\bootstrap.rb -T1 %tempdir%\\empty.rb %tempdir%\\app\\#{apprb}"
end
end
too_long = File.read(tmplocation(appeee)).split(/\r*\n/).select{|line| line.length > 255}
unless too_long.empty?
too_long.each do |line|
$stderr.puts "Line is too long (#{line.length}): #{line}"
end
$stderr.puts "Stopped."
exit 16
end
from = newlocation(eeeexe)
from = applocation(eeeexe) unless File.file?(from)
from = oldlocation(eeeexe) unless File.file?(from)
to = tmplocation(eeeexe)
File.copy(from, to) unless from == to
File.chmod(0755, to) if linux? or darwin?
tmplocation do
ENV["EEE_EXE"] = eeeexe
ENV["EEE_DIR"] = Dir.pwd
ENV["EEE_TEMPDIR"] = RUBYSCRIPT2EXE::REQUIRE2LIB_FROM_APP[:tempdir] if RUBYSCRIPT2EXE::REQUIRE2LIB_FROM_APP[:tempdir]
eeebin1 = newlocation("eee.exe")
eeebin1 = newlocation("eee_linux") if linux?
eeebin1 = newlocation("eee_darwin") if darwin?
unless File.file?(eeebin1)
eeebin1 = applocation("eee.exe")
eeebin1 = applocation("eee_linux") if linux?
eeebin1 = applocation("eee_darwin") if darwin?
end
unless File.file?(eeebin1)
eeebin1 = oldlocation("eee.exe")
eeebin1 = oldlocation("eee_linux") if linux?
eeebin1 = oldlocation("eee_darwin") if darwin?
end
eeebin2 = tmplocation("eee.exe")
eeebin2 = tmplocation("eee_linux") if linux?
eeebin2 = tmplocation("eee_darwin") if darwin?
from = eeebin1
to = eeebin2
File.copy(from, to) unless from == to
File.chmod(0755, to) if linux? or darwin?
system(backslashes("#{eeebin2} #{appeee} #{appexe}"))
end
from = tmplocation(appexe)
to = oldlocation(appexe)
File.copy(from, to) unless from == to
oldlocation do
system(backslashes("reshacker -modify #{tmplocation(appexe)}, #{appexe}, #{appico}, icon,appicon,")) if File.file?(appico) and (windows? or cygwin?)
end
end # if __FILE__ == $0