blob: 415cf430afc2169ab1e61081862e87399fe16154 (
plain)
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
|
require 'mkmf'
# system dependencies
gcj = with_config('gcj', '/usr/share/java/libgcj.jar')
# headers for JAXP
CONFIG['CC'] = 'g++'
with_cppflags('-xc++') do
unless find_header('org/w3c/dom/Document.h', 'headers')
`jar tf #{gcj}`.split.each do |file|
next unless file =~ /\.class$/
next unless file =~ /^(javax|org)\/(w3c|xml)/
next if file.include? '$'
dest = 'headers/' + file.sub(/\.class$/,'.h')
name = file.sub(/\.class$/,'').gsub('/','.')
next if File.exist? dest
cmd = "gcjh -cp #{gcj} -o #{dest} #{name}"
puts cmd
break unless system cmd
system "ruby -pi -e '$_.sub!(/namespace namespace$/," +
"\"namespace namespace$\")' #{dest}"
system "ruby -pi -e '$_.sub!(/::namespace::/," +
"\"::namespace$::\")' #{dest}"
end
exit unless find_header('org/w3c/dom/Document.h', 'headers')
end
find_header 'nu/validator/htmlparser/dom/HtmlDocumentBuilder.h', 'headers'
end
# Java libraries
Config::CONFIG['CC'] = 'g++ -shared'
dir_config('nu-htmlparser', nil, 'lib')
have_library 'nu-htmlparser'
have_library 'nu-icu'
have_library 'nu-chardet'
# Ruby library
create_makefile 'nu/validator'
|