2014-05-21 23:49:43 +00:00
|
|
|
require "formula"
|
2012-12-21 11:20:35 +00:00
|
|
|
|
2013-11-07 10:20:39 +00:00
|
|
|
class Qt5HeadDownloadStrategy < GitDownloadStrategy
|
|
|
|
def stage
|
2014-12-09 19:22:35 +00:00
|
|
|
cached_location.cd { reset }
|
2014-12-09 20:10:13 +00:00
|
|
|
quiet_safe_system "git", "clone", cached_location, "."
|
2014-12-09 19:22:35 +00:00
|
|
|
ln_s cached_location, "qt"
|
2014-12-09 20:35:01 +00:00
|
|
|
quiet_safe_system "./init-repository", { :quiet_flag => "-q" }, "--mirror", "#{Dir.pwd}/"
|
2014-05-21 23:49:43 +00:00
|
|
|
rm "qt"
|
2013-11-07 10:20:39 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-10-07 18:08:20 +00:00
|
|
|
class OracleHomeVar < Requirement
|
|
|
|
fatal true
|
|
|
|
satisfy ENV["ORACLE_HOME"]
|
|
|
|
|
|
|
|
def message; <<-EOS.undent
|
|
|
|
To use --with-oci you have to set the ORACLE_HOME environment variable.
|
|
|
|
Check Oracle Instant Client documentation for more information.
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-12-21 11:20:35 +00:00
|
|
|
class Qt5 < Formula
|
2014-05-21 23:49:43 +00:00
|
|
|
homepage "http://qt-project.org/"
|
2014-12-12 20:03:43 +00:00
|
|
|
url "http://qtmirror.ics.com/pub/qtproject/official_releases/qt/5.4/5.4.0/single/qt-everywhere-opensource-src-5.4.0.tar.xz"
|
|
|
|
mirror "http://download.qt-project.org/official_releases/qt/5.4/5.4.0/single/qt-everywhere-opensource-src-5.4.0.tar.xz"
|
|
|
|
sha1 "2f5558b87f8cea37c377018d9e7a7047cc800938"
|
2014-04-19 22:53:22 +00:00
|
|
|
|
2014-02-09 15:21:53 +00:00
|
|
|
bottle do
|
2014-12-14 09:29:07 +00:00
|
|
|
sha1 "072ed2c806664fd1da3ba7c90c8e4887509fb91b" => :yosemite
|
|
|
|
sha1 "1ca730d96a962a5c4fcbd605542b7bfb528d6c58" => :mavericks
|
|
|
|
sha1 "a6bbd39629a69c35c8a5d5e8ede4b6c752e3aecf" => :mountain_lion
|
2014-02-09 15:21:53 +00:00
|
|
|
end
|
|
|
|
|
2014-12-12 20:03:43 +00:00
|
|
|
head "https://gitorious.org/qt/qt5.git", :branch => "5.4",
|
2014-02-14 22:02:11 +00:00
|
|
|
:using => Qt5HeadDownloadStrategy, :shallow => false
|
2012-12-21 11:20:35 +00:00
|
|
|
|
2013-01-26 14:13:58 +00:00
|
|
|
keg_only "Qt 5 conflicts Qt 4 (which is currently much more widely used)."
|
|
|
|
|
2012-12-21 11:20:35 +00:00
|
|
|
option :universal
|
2014-05-21 23:49:43 +00:00
|
|
|
option "with-docs", "Build documentation"
|
2014-10-08 09:09:17 +00:00
|
|
|
option "with-examples", "Build examples"
|
2014-05-21 23:49:43 +00:00
|
|
|
option "developer", "Build and link with developer options"
|
2014-10-07 18:08:20 +00:00
|
|
|
option "with-oci", "Build with Oracle OCI plugin"
|
2012-12-21 11:20:35 +00:00
|
|
|
|
2014-12-12 20:03:43 +00:00
|
|
|
# Snow Leopard is untested and support has been removed in 5.4
|
2014-12-06 02:44:17 +00:00
|
|
|
# https://qt.gitorious.org/qt/qtbase/commit/5be81925d7be19dd0f1022c3cfaa9c88624b1f08
|
|
|
|
depends_on :macos => :lion
|
2014-03-06 07:54:47 +00:00
|
|
|
depends_on "pkg-config" => :build
|
2013-09-07 12:19:35 +00:00
|
|
|
depends_on "d-bus" => :optional
|
2014-10-07 18:08:20 +00:00
|
|
|
depends_on :mysql => :optional
|
2014-05-30 20:35:03 +00:00
|
|
|
depends_on :xcode => :build
|
2012-12-21 11:20:35 +00:00
|
|
|
|
2014-12-12 20:03:43 +00:00
|
|
|
# There needs to be an OpenSSL dep here ideally, but qt keeps ignoring it.
|
|
|
|
# Keep nagging upstream for a fix to this problem, and revision when possible.
|
|
|
|
# https://github.com/Homebrew/homebrew/pull/34929
|
|
|
|
# https://bugreports.qt-project.org/browse/QTBUG-42161
|
|
|
|
|
2014-10-07 18:08:20 +00:00
|
|
|
depends_on OracleHomeVar if build.with? "oci"
|
|
|
|
|
2014-10-19 13:10:06 +00:00
|
|
|
deprecated_option "qtdbus" => "with-d-bus"
|
|
|
|
|
2012-12-21 11:20:35 +00:00
|
|
|
def install
|
2013-08-04 23:50:33 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
2014-12-12 20:03:43 +00:00
|
|
|
|
2012-12-21 11:20:35 +00:00
|
|
|
args = ["-prefix", prefix,
|
2013-07-17 22:17:52 +00:00
|
|
|
"-system-zlib",
|
2014-01-03 13:55:46 +00:00
|
|
|
"-qt-libpng", "-qt-libjpeg",
|
2013-09-07 12:19:35 +00:00
|
|
|
"-confirm-license", "-opensource",
|
2014-12-12 20:03:43 +00:00
|
|
|
"-nomake", "tests", "-release"]
|
2013-09-07 12:19:35 +00:00
|
|
|
|
2014-10-08 09:09:17 +00:00
|
|
|
args << "-nomake" << "examples" if build.without? "examples"
|
|
|
|
|
2014-05-21 23:49:43 +00:00
|
|
|
args << "-plugin-sql-mysql" if build.with? "mysql"
|
2012-12-21 11:20:35 +00:00
|
|
|
|
2014-05-21 23:49:43 +00:00
|
|
|
if build.with? "d-bus"
|
2014-02-27 04:33:18 +00:00
|
|
|
dbus_opt = Formula["d-bus"].opt_prefix
|
2013-07-17 22:17:38 +00:00
|
|
|
args << "-I#{dbus_opt}/lib/dbus-1.0/include"
|
|
|
|
args << "-I#{dbus_opt}/include/dbus-1.0"
|
|
|
|
args << "-L#{dbus_opt}/lib"
|
2013-07-15 13:44:16 +00:00
|
|
|
args << "-ldbus-1"
|
2014-02-09 17:36:37 +00:00
|
|
|
args << "-dbus-linked"
|
2012-12-21 11:20:35 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
if MacOS.prefer_64_bit? or build.universal?
|
2014-05-21 23:49:43 +00:00
|
|
|
args << "-arch" << "x86_64"
|
2012-12-21 11:20:35 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
if !MacOS.prefer_64_bit? or build.universal?
|
2014-05-21 23:49:43 +00:00
|
|
|
args << "-arch" << "x86"
|
2012-12-21 11:20:35 +00:00
|
|
|
end
|
|
|
|
|
2014-10-07 18:08:20 +00:00
|
|
|
if build.with? "oci"
|
|
|
|
args << "-I#{ENV['ORACLE_HOME']}/sdk/include"
|
|
|
|
args << "-L{ENV['ORACLE_HOME']}"
|
|
|
|
args << "-plugin-sql-oci"
|
|
|
|
end
|
|
|
|
|
2014-05-21 23:49:43 +00:00
|
|
|
args << "-developer-build" if build.include? "developer"
|
2012-12-21 11:20:35 +00:00
|
|
|
|
|
|
|
system "./configure", *args
|
|
|
|
system "make"
|
|
|
|
ENV.j1
|
|
|
|
system "make install"
|
2014-05-21 23:49:43 +00:00
|
|
|
if build.with? "docs"
|
2013-12-30 13:48:21 +00:00
|
|
|
system "make", "docs"
|
|
|
|
system "make", "install_docs"
|
|
|
|
end
|
2012-12-21 11:20:35 +00:00
|
|
|
|
|
|
|
# Some config scripts will only find Qt in a "Frameworks" folder
|
2014-03-26 03:36:45 +00:00
|
|
|
frameworks.install_symlink Dir["#{lib}/*.framework"]
|
2012-12-21 11:20:35 +00:00
|
|
|
|
|
|
|
# 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.
|
2014-03-26 03:36:45 +00:00
|
|
|
Pathname.glob("#{lib}/*.framework/Headers") do |path|
|
|
|
|
include.install_symlink path => path.parent.basename(".framework")
|
2012-12-21 11:20:35 +00:00
|
|
|
end
|
|
|
|
|
2014-12-12 20:03:43 +00:00
|
|
|
# configure saved PKG_CONFIG_LIBDIR set up by superenv; remove it
|
2014-04-08 14:32:07 +00:00
|
|
|
# see: https://github.com/Homebrew/homebrew/issues/27184
|
|
|
|
inreplace prefix/"mkspecs/qconfig.pri", /\n\n# pkgconfig/, ""
|
|
|
|
inreplace prefix/"mkspecs/qconfig.pri", /\nPKG_CONFIG_.*=.*$/, ""
|
|
|
|
|
2014-03-26 03:36:45 +00:00
|
|
|
Pathname.glob("#{bin}/*.app") { |app| mv app, prefix }
|
2012-12-21 11:20:35 +00:00
|
|
|
end
|
|
|
|
|
2013-07-15 10:13:12 +00:00
|
|
|
test do
|
2013-09-07 12:19:35 +00:00
|
|
|
system "#{bin}/qmake", "-project"
|
2012-12-21 11:20:35 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
We agreed to the Qt opensource license for you.
|
|
|
|
If this is unacceptable you should uninstall.
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|