class Qt < Formula desc "Cross-platform application and UI framework" homepage "https://www.qt.io/" revision 1 stable do url "https://download.qt.io/official_releases/qt/4.8/4.8.7/qt-everywhere-opensource-src-4.8.7.tar.gz" mirror "https://www.mirrorservice.org/sites/download.qt-project.org/official_releases/qt/4.8/4.8.7/qt-everywhere-opensource-src-4.8.7.tar.gz" sha256 "e2882295097e47fe089f8ac741a95fef47e0a73a3f3cdf21b56990638f626ea0" end bottle do sha256 "48e2e4d7f4659409c74e6acb9b59fdf9ab5d8e4b7f9b438a73e3d0ca03635e93" => :el_capitan sha256 "8e041b0a48c8a0785022c8a77e8c40efeb9d57cd701b635cc0a7ce46692c0c5f" => :yosemite sha256 "fe687f9a9b657d33b7c11ad4ccd7208deddd8e96d2104df2df98de13b0c5d5d7" => :mavericks end # Backport of Qt5 commit to fix the fatal build error on OS X El Capitan. # http://code.qt.io/cgit/qt/qtbase.git/commit/?id=b06304e164ba47351fa292662c1e6383c081b5ca if MacOS.version >= :el_capitan patch do url "https://raw.githubusercontent.com/Homebrew/patches/480b7142c4e2ae07de6028f672695eb927a34875/qt/el-capitan.patch" sha256 "c8a0fa819c8012a7cb70e902abb7133fc05235881ce230235d93719c47650c4e" end end head "https://code.qt.io/qt/qt.git", :branch => "4.8" option :universal option "with-qt3support", "Build with deprecated Qt3Support module support" option "with-docs", "Build documentation" option "with-developer", "Build and link with developer options" depends_on "openssl" depends_on "d-bus" => :optional depends_on "mysql" => :optional depends_on "postgresql" => :optional deprecated_option "qtdbus" => "with-d-bus" deprecated_option "developer" => "with-developer" resource "test-project" do url "https://gist.github.com/tdsmith/f55e7e69ae174b5b5a03.git", :revision => "6f565390395a0259fa85fdd3a4f1968ebcd1cc7d" end def install ENV.universal_binary if build.universal? args = ["-prefix", prefix, "-system-zlib", "-qt-libtiff", "-qt-libpng", "-qt-libjpeg", "-confirm-license", "-opensource", "-nomake", "demos", "-nomake", "examples", "-cocoa", "-fast", "-release"] if ENV.compiler == :clang args << "-platform" if MacOS.version >= :mavericks args << "unsupported/macx-clang-libc++" else args << "unsupported/macx-clang" end end args << "-openssl-linked" args << "-I" << Formula["openssl"].opt_include args << "-L" << Formula["openssl"].opt_lib args << "-plugin-sql-mysql" if build.with? "mysql" args << "-plugin-sql-psql" if build.with? "postgresql" if build.with? "d-bus" dbus_opt = Formula["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" args << "-dbus-linked" end if build.with? "qt3support" args << "-qt3support" else args << "-no-qt3support" end args << "-nomake" << "docs" if build.without? "docs" if MacOS.prefer_64_bit? || build.universal? args << "-arch" << "x86_64" end if !MacOS.prefer_64_bit? || build.universal? args << "-arch" << "x86" end args << "-developer-build" if build.with? "developer" system "./configure", *args system "make" ENV.j1 system "make", "install" # what are these anyway? (bin+"pixeltool.app").rmtree (bin+"qhelpconverter.app").rmtree # remove porting file for non-humans (prefix+"q3porting.xml").unlink if build.without? "qt3support" # Some config scripts will only find Qt in a "Frameworks" folder frameworks.install_symlink Dir["#{lib}/*.framework"] # 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") do |path| include.install_symlink path => path.parent.basename(".framework") end Pathname.glob("#{bin}/*.app") { |app| mv app, prefix } end test do Encoding.default_external = "UTF-8" unless RUBY_VERSION.start_with? "1." resource("test-project").stage testpath system bin/"qmake" system "make" assert_match /GitHub/, pipe_output(testpath/"qtnetwork-test 2>&1", nil, 0) end def caveats; <<-EOS.undent We agreed to the Qt opensource license for you. If this is unacceptable you should uninstall. EOS end end