2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-12-23 14:27:37 +00:00
|
|
|
require 'hardware'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Qt < Formula
|
2011-05-04 13:05:31 +00:00
|
|
|
url 'http://get.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.7.3.tar.gz'
|
|
|
|
md5 '49b96eefb1224cc529af6fe5608654fe'
|
2010-10-03 21:25:04 +00:00
|
|
|
homepage 'http://qt.nokia.com/'
|
2010-11-24 09:41:30 +00:00
|
|
|
bottle 'https://downloads.sourceforge.net/project/machomebrew/Bottles/qt-4.7.3-bottle.tar.gz'
|
|
|
|
bottle_sha1 '6ab865b92db92cf2c49a332010f99566178d25cf'
|
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'
|
|
|
|
|
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
|
|
|
|
Dir.chdir '..'
|
|
|
|
mv "qt-everywhere-opensource-src-#{version}", "#{prefix}/src"
|
|
|
|
Dir.chdir "#{prefix}/src"
|
|
|
|
else
|
|
|
|
args << "-release"
|
|
|
|
end
|
|
|
|
|
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
|
|
|
|
ln_s lib, "Frameworks"
|
|
|
|
end
|
2009-06-04 18:21:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def caveats
|
2009-12-23 14:27:37 +00:00
|
|
|
"We agreed to the Qt opensource license for you.\nIf this is unacceptable you should uninstall."
|
2009-06-04 18:21:19 +00:00
|
|
|
end
|
2009-09-12 16:06:43 +00:00
|
|
|
end
|