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
  | 
require 'formula'
class Qt5 < Formula
  homepage 'http://qt-project.org/'
  url 'http://download.qt-project.org/official_releases/qt/5.1/5.1.0/single/qt-everywhere-opensource-src-5.1.0.tar.gz'
  sha1 '12d706124dbfac3d542dd3165176a978d478c085'
  bottle do
    revision 1
    sha1 '559797c1240c758aea1755b664fb898d492fca03' => :mountain_lion
    sha1 '67d969a4a260f4576f3fcaf5e1cef23edfd35177' => :lion
    sha1 '61cfa853784d2493ffa00b3e2897f6f46df5815f' => :snow_leopard
  end
  head 'git://gitorious.org/qt/qt5.git', :branch => 'stable'
  keg_only "Qt 5 conflicts Qt 4 (which is currently much more widely used)."
  option :universal
  option 'with-docs', 'Build documentation'
  option 'developer', 'Build and link with developer options'
  depends_on "d-bus" => :optional
  depends_on "mysql" => :optional
  odie 'qt5: --with-qtdbus has been renamed to --with-d-bus' if ARGV.include? '--with-qtdbus'
  odie 'qt5: --with-demos-examples is no longer supported' if ARGV.include? '--with-demos-examples'
  odie 'qt5: --with-debug-and-release is no longer supported' if ARGV.include? '--with-debug-and-release'
  def install
    ENV.universal_binary if build.universal?
    args = ["-prefix", prefix,
            "-system-zlib",
            "-confirm-license", "-opensource",
            "-nomake", "examples",
            "-release"]
    # In latest head `-nomake demos` is no longer recognized
    args << "-nomake" << "demos" unless build.head?
    unless MacOS::CLT.installed?
      # ... too stupid to find CFNumber.h, so we give a hint:
      ENV.append 'CXXFLAGS', "-I#{MacOS.sdk_path}/System/Library/Frameworks/CoreFoundation.framework/Headers"
    end
    args << "-L#{MacOS::X11.lib}" << "-I#{MacOS::X11.include}" if MacOS::X11.installed?
    args << "-plugin-sql-mysql" if build.with? 'mysql'
    if build.with? 'd-bus'
      dbus_opt = Formula.factory('d-bus').opt_prefix
      args << "-I#{dbus_opt}/lib/dbus-1.0/include"
      args << "-I#{dbus_opt}/include/dbus-1.0"
      args << "-L#{dbus_opt}/lib"
      args << "-ldbus-1"
    end
    unless build.with? 'docs'
      args << "-nomake" << "docs"
    end
    if MacOS.prefer_64_bit? or build.universal?
      args << '-arch' << 'x86_64'
    end
    if !MacOS.prefer_64_bit? or build.universal?
      args << '-arch' << 'x86'
    end
    args << '-developer-build' if build.include? 'developer'
    system "./configure", *args
    system "make"
    ENV.j1
    system "make install"
    # Fix https://github.com/mxcl/homebrew/issues/20020 (upstream: https://bugreports.qt-project.org/browse/QTBUG-32417)
    system "install_name_tool", "-change", "#{pwd}/qt-everywhere-opensource-src-5.1.0/qtwebkit/lib/QtWebKitWidgets.framework/Versions/5/QtWebKitWidgets", #old
                                           "#{lib}/QtWebKitWidgets.framework/Versions/5/QtWebKitWidgets",  #new
                                           "#{libexec}/QtWebProcess" # in this lib
    system "install_name_tool", "-change", "#{pwd}/qt-everywhere-opensource-src-5.1.0/qtwebkit/lib/QtWebKit.framework/Versions/5/QtWebKit",
                                           "#{lib}/QtWebKit.framework/Versions/5/QtWebKit",
                                           "#{prefix}/qml/QtWebKit/libqmlwebkitplugin.dylib"
    # Some config scripts will only find Qt in a "Frameworks" folder
    cd prefix do
      ln_s lib, frameworks
    end
    # The pkg-config files installed suggest that headers can be found in the
    # `include` directory. Make this so by creating symlinks from `include` to
    # the Frameworks' Headers folders.
    Pathname.glob(lib + '*.framework/Headers').each do |path|
      framework_name = File.basename(File.dirname(path), '.framework')
      ln_s path.realpath, include+framework_name
    end
    Pathname.glob(bin + '*.app').each do |path|
      mv path, prefix
    end
  end
  test do
    system "#{bin}/qmake", "-project"
  end
  def caveats; <<-EOS.undent
    We agreed to the Qt opensource license for you.
    If this is unacceptable you should uninstall.
    EOS
  end
end
  |