2012-12-21 11:20:35 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2013-11-07 10:20:39 +00:00
|
|
|
class Qt5HeadDownloadStrategy < GitDownloadStrategy
|
|
|
|
include FileUtils
|
|
|
|
|
|
|
|
def stage
|
|
|
|
@clone.cd { reset }
|
|
|
|
safe_system 'git', 'clone', @clone, '.'
|
|
|
|
ln_s @clone, 'qt'
|
|
|
|
safe_system './init-repository', '--mirror', "#{Dir.pwd}/"
|
|
|
|
rm 'qt'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-12-21 11:20:35 +00:00
|
|
|
class Qt5 < Formula
|
|
|
|
homepage 'http://qt-project.org/'
|
2014-02-09 12:24:44 +00:00
|
|
|
url 'http://download.qt-project.org/official_releases/qt/5.2/5.2.1/single/qt-everywhere-opensource-src-5.2.1.tar.gz'
|
|
|
|
sha1 '31a5cf175bb94dbde3b52780d3be802cbeb19d65'
|
2014-02-09 15:21:53 +00:00
|
|
|
bottle do
|
2014-03-06 09:04:25 +00:00
|
|
|
revision 1
|
|
|
|
sha1 "88f554a67bf9345c9e7abd980f7334f60b9c91cf" => :mavericks
|
|
|
|
sha1 "5d270c3d91bd729f3ddffcff5e201e7083914071" => :mountain_lion
|
|
|
|
sha1 "d2415a72aafb3ce24dc5812599fb7f7ff1f8cddd" => :lion
|
2014-02-09 15:21:53 +00:00
|
|
|
end
|
|
|
|
|
2013-11-07 10:20:39 +00:00
|
|
|
head 'git://gitorious.org/qt/qt5.git', :branch => 'stable',
|
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
|
2013-09-07 12:19:35 +00:00
|
|
|
option 'with-docs', 'Build documentation'
|
|
|
|
option 'developer', 'Build and link with developer options'
|
2012-12-21 11:20:35 +00:00
|
|
|
|
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
|
2013-06-27 00:04:23 +00:00
|
|
|
depends_on "mysql" => :optional
|
2012-12-21 11:20:35 +00:00
|
|
|
|
2014-03-06 20:40:26 +00:00
|
|
|
odie 'qt5: --with-qtdbus has been renamed to --with-d-bus' if build.with? "qtdbus"
|
|
|
|
odie 'qt5: --with-demos-examples is no longer supported' if build.with? "demos-examples"
|
|
|
|
odie 'qt5: --with-debug-and-release is no longer supported' if build.with? "debug-and-release"
|
2013-09-07 12:19:35 +00:00
|
|
|
|
2012-12-21 11:20:35 +00:00
|
|
|
def install
|
2014-01-17 05:27:35 +00:00
|
|
|
# fixed hardcoded link to plugin dir: https://bugreports.qt-project.org/browse/QTBUG-29188
|
|
|
|
inreplace "qttools/src/macdeployqt/macdeployqt/main.cpp", "deploymentInfo.pluginPath = \"/Developer/Applications/Qt/plugins\";",
|
|
|
|
"deploymentInfo.pluginPath = \"#{prefix}/plugins\";"
|
|
|
|
|
2013-08-04 23:50:33 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
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",
|
|
|
|
"-nomake", "examples",
|
2013-12-23 12:42:33 +00:00
|
|
|
"-nomake", "tests",
|
2013-09-07 12:19:35 +00:00
|
|
|
"-release"]
|
|
|
|
|
2013-03-18 17:11:59 +00:00
|
|
|
unless MacOS::CLT.installed?
|
2013-07-15 12:08:20 +00:00
|
|
|
# ... too stupid to find CFNumber.h, so we give a hint:
|
2013-03-18 17:11:59 +00:00
|
|
|
ENV.append 'CXXFLAGS', "-I#{MacOS.sdk_path}/System/Library/Frameworks/CoreFoundation.framework/Headers"
|
|
|
|
end
|
|
|
|
|
2013-11-07 10:20:39 +00:00
|
|
|
# https://bugreports.qt-project.org/browse/QTBUG-34382
|
2013-12-12 17:21:48 +00:00
|
|
|
args << "-no-xcb"
|
2013-11-07 10:20:39 +00:00
|
|
|
|
2013-08-05 23:17:00 +00:00
|
|
|
args << "-L#{MacOS::X11.lib}" << "-I#{MacOS::X11.include}" if MacOS::X11.installed?
|
2012-12-21 11:20:35 +00:00
|
|
|
|
2013-06-27 00:04:23 +00:00
|
|
|
args << "-plugin-sql-mysql" if build.with? 'mysql'
|
2012-12-21 11:20:35 +00:00
|
|
|
|
2013-09-07 12:19:35 +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?
|
|
|
|
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"
|
2013-12-30 13:48:21 +00:00
|
|
|
if build.with? 'docs'
|
|
|
|
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-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
|