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-04-04 02:19:41 +00:00
|
|
|
url 'http://get.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.8.1.tar.gz'
|
|
|
|
md5 '7960ba8e18ca31f0c6e4895a312f92ff'
|
2012-01-23 04:32:15 +00:00
|
|
|
|
|
|
|
bottle do
|
2012-04-04 19:47:11 +00:00
|
|
|
sha1 '6913b065d9e4647e4389269012bf9c7fe13dd726' => :snowleopard
|
2012-04-04 02:19:41 +00:00
|
|
|
sha1 'd523bfbc1c7e50cdd10b64b1b10db187ec7e7c2b' => :lion
|
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-03-18 20:33:24 +00:00
|
|
|
fails_with :clang do
|
|
|
|
build 318
|
|
|
|
end
|
|
|
|
|
2009-11-05 23:16:31 +00:00
|
|
|
def options
|
|
|
|
[
|
2009-12-23 14:27:37 +00:00
|
|
|
['--with-qtdbus', "Enable QtDBus module."],
|
2009-11-05 23:16:31 +00:00
|
|
|
['--with-qt3support', "Enable deprecated Qt3Support module."],
|
2010-11-18 05:56:57 +00:00
|
|
|
['--with-demos-examples', "Enable Qt demos and examples."],
|
2011-02-12 09:49:26 +00:00
|
|
|
['--with-debug-and-release', "Compile Qt in debug and release mode."],
|
|
|
|
['--universal', "Build both x86_64 and x86 architectures."],
|
2009-11-05 23:16:31 +00:00
|
|
|
]
|
|
|
|
end
|
2010-04-07 05:58:35 +00:00
|
|
|
|
2009-12-23 14:27:37 +00:00
|
|
|
depends_on "d-bus" if ARGV.include? '--with-qtdbus'
|
2011-04-08 18:16:37 +00:00
|
|
|
depends_on 'sqlite' if MacOS.leopard?
|
2009-11-05 12:16:37 +00:00
|
|
|
|
2009-06-04 18:21:19 +00:00
|
|
|
def install
|
2011-04-05 22:33:16 +00:00
|
|
|
ENV.x11
|
2011-02-12 09:48:41 +00:00
|
|
|
ENV.append "CXXFLAGS", "-fvisibility=hidden"
|
2010-08-08 04:04:37 +00:00
|
|
|
args = ["-prefix", prefix,
|
|
|
|
"-system-libpng", "-system-zlib",
|
2011-04-18 02:45:22 +00:00
|
|
|
"-L/usr/X11/lib", "-I/usr/X11/include",
|
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?
|
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
|
|
|
|
2009-12-23 14:27:37 +00:00
|
|
|
if ARGV.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
|
|
|
|
|
|
|
|
if ARGV.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
|
|
|
|
|
2010-11-18 05:56:57 +00:00
|
|
|
unless ARGV.include? '--with-demos-examples'
|
|
|
|
args << "-nomake" << "demos" << "-nomake" << "examples"
|
|
|
|
end
|
|
|
|
|
2011-04-21 16:42:27 +00:00
|
|
|
if MacOS.prefer_64_bit? or ARGV.build_universal?
|
2010-08-08 04:04:37 +00:00
|
|
|
args << '-arch' << 'x86_64'
|
2011-02-12 09:49:26 +00:00
|
|
|
end
|
|
|
|
|
2011-04-21 16:42:27 +00:00
|
|
|
if !MacOS.prefer_64_bit? or ARGV.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
|
|
|
|
2011-05-08 19:22:57 +00:00
|
|
|
if ARGV.include? '--with-debug-and-release'
|
|
|
|
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-04-04 02:19:41 +00:00
|
|
|
# Needed for Qt 4.8.1 due to attempting to link moc with gcc.
|
2012-03-28 19:14:18 +00:00
|
|
|
ENV['LD'] = ENV['CXX']
|
|
|
|
|
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
|
2012-02-21 06:04:21 +00:00
|
|
|
# TODO - surely this link can be made without the `cd`
|
2010-02-16 20:53:29 +00:00
|
|
|
cd prefix do
|
|
|
|
ln_s lib, "Frameworks"
|
|
|
|
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
|
2009-06-04 18:21:19 +00:00
|
|
|
end
|
|
|
|
|
2012-03-28 23:26:46 +00:00
|
|
|
def test
|
|
|
|
"#{bin}/qmake --version"
|
|
|
|
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
|