2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Qt < Formula
|
2012-02-21 06:04:21 +00:00
|
|
|
homepage 'http://qt.nokia.com/'
|
2012-05-22 14:01:48 +00:00
|
|
|
url 'http://releases.qt-project.org/qt4/source/qt-everywhere-opensource-src-4.8.2.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'dfa0daa951e889a2548b1cff66759b449b5a6b98'
|
2012-01-23 04:32:15 +00:00
|
|
|
|
|
|
|
bottle do
|
2012-07-27 14:34:41 +00:00
|
|
|
version 1
|
|
|
|
sha1 'dfa0daa951e889a2548b1cff66759b449b5a6b98' => :mountainlion
|
|
|
|
sha1 '0905eb8b2c5a9bae0d1f9a8234173daba680c48c' => :lion
|
|
|
|
sha1 'c37ac19d54c4684d8996a0ee96cdf971bd2c1f7b' => :snowleopard
|
2012-01-23 04:32:15 +00:00
|
|
|
end
|
2009-06-04 18:21:19 +00:00
|
|
|
|
2011-05-17 12:41:55 +00:00
|
|
|
head 'git://gitorious.org/qt/qt.git', :branch => 'master'
|
|
|
|
|
2012-08-13 21:04:30 +00:00
|
|
|
option :universal
|
|
|
|
option 'with-qtdbus', 'Enable QtDBus module'
|
|
|
|
option 'with-qt3support', 'Enable deprecated Qt3Support module'
|
|
|
|
option 'with-demos-examples', 'Eanble Qt demos and examples'
|
|
|
|
option 'with-debug-and-release', 'Compile Qt in debug and release mode'
|
|
|
|
option 'developer', 'Compile and link Qt with developer options'
|
|
|
|
|
|
|
|
depends_on "d-bus" if build.include? 'with-qtdbus'
|
|
|
|
depends_on 'sqlite' if MacOS.leopard?
|
|
|
|
|
2012-03-18 20:33:24 +00:00
|
|
|
fails_with :clang do
|
2012-07-26 20:06:01 +00:00
|
|
|
build 421
|
2012-03-18 20:33:24 +00:00
|
|
|
end
|
|
|
|
|
2012-06-18 18:42:00 +00:00
|
|
|
def patches
|
|
|
|
# fixes conflict on osx 10.5. See qt bug:
|
|
|
|
# https://bugreports.qt-project.org/browse/QTBUG-23258
|
|
|
|
if MacOS.leopard?
|
|
|
|
"http://bugreports.qt-project.org/secure/attachment/26712/Patch-Qt-4.8-for-10.5"
|
2012-07-26 20:06:01 +00:00
|
|
|
# add support for Mountain Lion
|
2012-07-30 19:44:18 +00:00
|
|
|
# should be unneeded for 4.8.3
|
2012-07-26 20:06:01 +00:00
|
|
|
elsif MacOS.mountain_lion?
|
|
|
|
[ "https://qt.gitorious.org/qt/qt/commit/422f1b?format=patch",
|
2012-07-27 14:34:41 +00:00
|
|
|
"https://qt.gitorious.org/qt/qt/commit/665355?format=patch",
|
|
|
|
"https://raw.github.com/gist/3187034/893252db0ae3bb9bb5fa3ff7c530c7978399b101/0001-Fix-WebKit-on-OS-X-Mountain-Lion.patch" ]
|
2012-06-18 18:42:00 +00:00
|
|
|
end
|
2012-07-26 20:06:01 +00:00
|
|
|
|
2012-06-18 18:42:00 +00:00
|
|
|
end
|
|
|
|
|
2009-06-04 18:21:19 +00:00
|
|
|
def install
|
2012-07-27 14:34:41 +00:00
|
|
|
# Apply binary git patch; normal patch ignores this.
|
|
|
|
# TODO: Autodetect binary patches and apply them correctly.
|
|
|
|
system "git apply --exclude=*/QtWebKit.pro 002-homebrew.diff" if MacOS.mountain_lion?
|
|
|
|
|
2011-02-12 09:48:41 +00:00
|
|
|
ENV.append "CXXFLAGS", "-fvisibility=hidden"
|
2010-08-08 04:04:37 +00:00
|
|
|
args = ["-prefix", prefix,
|
2012-07-26 20:06:01 +00:00
|
|
|
"-system-zlib",
|
2010-08-08 04:04:37 +00:00
|
|
|
"-confirm-license", "-opensource",
|
2011-02-12 09:49:26 +00:00
|
|
|
"-cocoa", "-fast" ]
|
2009-11-05 12:16:37 +00:00
|
|
|
|
2010-11-10 18:16:28 +00:00
|
|
|
# See: https://github.com/mxcl/homebrew/issues/issue/744
|
2011-04-08 18:16:37 +00:00
|
|
|
args << "-system-sqlite" if MacOS.leopard?
|
2012-07-26 20:06:01 +00:00
|
|
|
|
2010-08-08 04:04:37 +00:00
|
|
|
args << "-plugin-sql-mysql" if (HOMEBREW_CELLAR+"mysql").directory?
|
2010-01-16 19:46:38 +00:00
|
|
|
|
2012-08-13 21:04:30 +00:00
|
|
|
if build.include? 'with-qtdbus'
|
2010-08-08 04:04:37 +00:00
|
|
|
args << "-I#{Formula.factory('d-bus').lib}/dbus-1.0/include"
|
|
|
|
args << "-I#{Formula.factory('d-bus').include}/dbus-1.0"
|
2009-11-05 23:16:31 +00:00
|
|
|
end
|
|
|
|
|
2012-08-13 21:04:30 +00:00
|
|
|
if build.include? 'with-qt3support'
|
2010-08-08 04:04:37 +00:00
|
|
|
args << "-qt3support"
|
2009-11-05 23:16:31 +00:00
|
|
|
else
|
2010-08-08 04:04:37 +00:00
|
|
|
args << "-no-qt3support"
|
2009-11-05 23:16:31 +00:00
|
|
|
end
|
|
|
|
|
2012-08-13 21:04:30 +00:00
|
|
|
unless build.include? 'with-demos-examples'
|
2010-11-18 05:56:57 +00:00
|
|
|
args << "-nomake" << "demos" << "-nomake" << "examples"
|
|
|
|
end
|
|
|
|
|
2012-08-13 21:04:30 +00:00
|
|
|
if MacOS.prefer_64_bit? or build.universal?
|
2010-08-08 04:04:37 +00:00
|
|
|
args << '-arch' << 'x86_64'
|
2011-02-12 09:49:26 +00:00
|
|
|
end
|
|
|
|
|
2012-08-13 21:04:30 +00:00
|
|
|
if !MacOS.prefer_64_bit? or build.universal?
|
2010-08-08 04:04:37 +00:00
|
|
|
args << '-arch' << 'x86'
|
2009-10-12 18:51:17 +00:00
|
|
|
end
|
2010-04-07 05:58:35 +00:00
|
|
|
|
2012-08-13 21:04:30 +00:00
|
|
|
if build.include? 'with-debug-and-release'
|
2011-05-08 19:22:57 +00:00
|
|
|
args << "-debug-and-release"
|
|
|
|
# Debug symbols need to find the source so build in the prefix
|
2012-02-21 06:04:21 +00:00
|
|
|
mv "../qt-everywhere-opensource-src-#{version}", "#{prefix}/src"
|
|
|
|
cd "#{prefix}/src"
|
2011-05-08 19:22:57 +00:00
|
|
|
else
|
|
|
|
args << "-release"
|
|
|
|
end
|
|
|
|
|
2012-08-13 21:04:30 +00:00
|
|
|
args << '-developer-build' if build.include? 'developer'
|
2012-06-05 00:50:31 +00:00
|
|
|
|
2012-04-04 02:19:41 +00:00
|
|
|
# Needed for Qt 4.8.1 due to attempting to link moc with gcc.
|
2012-05-15 18:47:30 +00:00
|
|
|
ENV['LD'] = ENV.cxx
|
2012-03-28 19:14:18 +00:00
|
|
|
|
2010-08-08 04:04:37 +00:00
|
|
|
system "./configure", *args
|
2010-10-03 21:25:04 +00:00
|
|
|
system "make"
|
2011-02-12 09:49:26 +00:00
|
|
|
ENV.j1
|
2009-06-04 18:21:19 +00:00
|
|
|
system "make install"
|
2009-07-24 14:10:01 +00:00
|
|
|
|
2009-12-23 14:27:37 +00:00
|
|
|
# stop crazy disk usage
|
2010-03-07 06:27:19 +00:00
|
|
|
(prefix+'doc/html').rmtree
|
|
|
|
(prefix+'doc/src').rmtree
|
2009-12-23 14:27:37 +00:00
|
|
|
# what are these anyway?
|
2009-11-07 16:25:43 +00:00
|
|
|
(bin+'pixeltool.app').rmtree
|
|
|
|
(bin+'qhelpconverter.app').rmtree
|
2009-12-23 14:27:37 +00:00
|
|
|
# remove porting file for non-humans
|
2009-11-07 16:25:43 +00:00
|
|
|
(prefix+'q3porting.xml').unlink
|
2010-04-07 05:58:35 +00:00
|
|
|
|
2010-06-21 12:11:08 +00:00
|
|
|
# Some config scripts will only find Qt in a "Frameworks" folder
|
2010-02-16 20:53:29 +00:00
|
|
|
# VirtualBox is an example of where this is needed
|
2010-11-10 18:16:28 +00:00
|
|
|
# See: https://github.com/mxcl/homebrew/issues/issue/745
|
2010-02-16 20:53:29 +00:00
|
|
|
cd prefix do
|
2012-04-14 22:49:03 +00:00
|
|
|
ln_s lib, prefix + "Frameworks"
|
2010-02-16 20:53:29 +00:00
|
|
|
end
|
2011-06-16 21:32:24 +00:00
|
|
|
|
2012-04-04 02:19:41 +00:00
|
|
|
# The pkg-config files installed suggest that headers can be found in the
|
2011-06-16 21:32:24 +00:00
|
|
|
# `include` directory. Make this so by creating symlinks from `include` to
|
|
|
|
# the Frameworks' Headers folders.
|
2012-02-26 15:31:21 +00:00
|
|
|
Pathname.glob(lib + '*.framework/Headers').each do |path|
|
2011-06-16 21:32:24 +00:00
|
|
|
framework_name = File.basename(File.dirname(path), '.framework')
|
|
|
|
ln_s path.realpath, include+framework_name
|
|
|
|
end
|
2012-04-14 22:49:03 +00:00
|
|
|
|
|
|
|
Pathname.glob(bin + '*.app').each do |path|
|
|
|
|
mv path, prefix
|
|
|
|
end
|
2009-06-04 18:21:19 +00:00
|
|
|
end
|
|
|
|
|
2012-03-28 23:26:46 +00:00
|
|
|
def test
|
2012-05-15 21:36:45 +00:00
|
|
|
system "#{bin}/qmake", "--version"
|
2012-03-28 23:26:46 +00:00
|
|
|
end
|
|
|
|
|
2011-07-26 14:30:15 +00:00
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
We agreed to the Qt opensource license for you.
|
|
|
|
If this is unacceptable you should uninstall.
|
|
|
|
EOS
|
2009-06-04 18:21:19 +00:00
|
|
|
end
|
2009-09-12 16:06:43 +00:00
|
|
|
end
|