File: compile.rake

package info (click to toggle)
ruby-dataobjects-postgres 0.10.17-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 344 kB
  • sloc: ansic: 1,509; ruby: 511; sh: 60; makefile: 5
file content (78 lines) | stat: -rw-r--r-- 3,123 bytes parent folder | download
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
begin
  gem 'rake-compiler', '~>0.7'
  require 'rake/extensiontask'
  require 'rake/javaextensiontask'

  def gemspec
    @clean_gemspec ||= Gem::Specification::load(File.expand_path('../../do_postgres.gemspec', __FILE__))
  end

  unless JRUBY
    Rake::ExtensionTask.new('do_postgres', gemspec) do |ext|

      postgres_lib = File.expand_path(File.join(File.dirname(__FILE__), '..', 'vendor', 'pgsql'))

      ext.lib_dir = "lib/#{gemspec.name}"

      # automatically add build options to avoid need of manual input
      if RUBY_PLATFORM =~ /mswin|mingw/ then
        ext.config_options << "--with-pgsql-server-include=#{postgres_lib}/include/server"
        ext.config_options << "--with-pgsql-client-include=#{postgres_lib}/include"
        ext.config_options << "--with-pgsql-win32-include=#{postgres_lib}/include/server/port/win32"
        ext.config_options << "--with-pgsql-client-lib=#{postgres_lib}/lib"
      else
        ext.cross_compile = true
        ext.cross_platform = ['x86-mingw32', 'x86-mswin32-60']
        ext.cross_config_options << "--with-pgsql-server-include=#{postgres_lib}/include/server"
        ext.cross_config_options << "--with-pgsql-client-include=#{postgres_lib}/include"
        ext.cross_config_options << "--with-pgsql-win32-include=#{postgres_lib}/include/server/port/win32"
        ext.cross_config_options << "--with-pgsql-client-lib=#{postgres_lib}/lib"

        ext.cross_compiling do |gemspec|
          gemspec.post_install_message = <<-POST_INSTALL_MESSAGE

    ======================================================================================================

      You've installed the binary version of #{gemspec.name}.
      It was built using PostgreSQL version #{BINARY_VERSION}.
      It's recommended to use the exact same version to avoid potential issues.

      At the time of building this gem, the necessary DLL files where available
      in the following download:

      http://wwwmaster.postgresql.org/redir/107/h/binary/v#{BINARY_VERSION}/win32/postgresql-#{BINARY_VERSION}-1-windows-binaries.zip

      You can put the following files available in this package in your Ruby bin
      directory, for example C:\\Ruby\\bin

      - lib\\libpq.dll
      - bin\\ssleay32.dll
      - bin\\libeay32.dll
      - bin\\libintl-8.dll
      - bin\\libiconv-2.dll
      - bin\\krb5_32.dll
      - bin\\comerr32.dll
      - bin\\k5sprt32.dll
      - bin\\gssapi32.dll

    ======================================================================================================

      POST_INSTALL_MESSAGE
        end
      end
    end
  end

  Rake::JavaExtensionTask.new('do_postgres', gemspec) do |ext|
    ext.ext_dir   = 'ext-java/src/main/java'
    ext.lib_dir   = "lib/#{gemspec.name}"
    ext.debug     = ENV.has_key?('DO_JAVA_DEBUG') && ENV['DO_JAVA_DEBUG']
    ext.classpath = '../do_jdbc/lib/do_jdbc_internal.jar'
    ext.java_compiling do |gem|
      gem.add_dependency 'jdbc-postgres', '>=8.2'
      gem.add_dependency 'do_jdbc',       '0.10.17'
    end
  end
rescue LoadError
  warn "To compile, install rake-compiler (gem install rake-compiler)"
end