homebrew-core/Formula/qt.rb

124 lines
3.6 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Qt < Formula
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'
md5 '3c1146ddf56247e16782f96910a8423b'
bottle do
2012-05-22 14:01:48 +00:00
sha1 'a634c873a3ce825649c913f5d9ad790397390f74' => :snowleopard
sha1 'd11c466d3cbc80d3b94431daf481a217bf9097fd' => :lion
end
head 'git://gitorious.org/qt/qt.git', :branch => 'master'
fails_with :clang do
build 318
end
def options
[
2009-12-23 14:27:37 +00:00
['--with-qtdbus', "Enable QtDBus module."],
['--with-qt3support', "Enable deprecated Qt3Support module."],
['--with-demos-examples', "Enable Qt demos and examples."],
['--with-debug-and-release', "Compile Qt in debug and release mode."],
['--universal', "Build both x86_64 and x86 architectures."],
]
end
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?
def install
2011-04-05 22:33:16 +00:00
ENV.x11
ENV.append "CXXFLAGS", "-fvisibility=hidden"
args = ["-prefix", prefix,
"-system-libpng", "-system-zlib",
"-L/usr/X11/lib", "-I/usr/X11/include",
"-confirm-license", "-opensource",
"-cocoa", "-fast" ]
# See: https://github.com/mxcl/homebrew/issues/issue/744
2011-04-08 18:16:37 +00:00
args << "-system-sqlite" if MacOS.leopard?
args << "-plugin-sql-mysql" if (HOMEBREW_CELLAR+"mysql").directory?
2009-12-23 14:27:37 +00:00
if ARGV.include? '--with-qtdbus'
args << "-I#{Formula.factory('d-bus').lib}/dbus-1.0/include"
args << "-I#{Formula.factory('d-bus').include}/dbus-1.0"
end
if ARGV.include? '--with-qt3support'
args << "-qt3support"
else
args << "-no-qt3support"
end
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?
args << '-arch' << 'x86_64'
end
2011-04-21 16:42:27 +00:00
if !MacOS.prefer_64_bit? or ARGV.build_universal?
args << '-arch' << 'x86'
2009-10-12 18:51:17 +00:00
end
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
mv "../qt-everywhere-opensource-src-#{version}", "#{prefix}/src"
cd "#{prefix}/src"
2011-05-08 19:22:57 +00:00
else
args << "-release"
end
# Needed for Qt 4.8.1 due to attempting to link moc with gcc.
ENV['LD'] = ENV.cxx
system "./configure", *args
system "make"
ENV.j1
system "make install"
2009-12-23 14:27:37 +00:00
# stop crazy disk usage
(prefix+'doc/html').rmtree
(prefix+'doc/src').rmtree
2009-12-23 14:27:37 +00:00
# what are these anyway?
(bin+'pixeltool.app').rmtree
(bin+'qhelpconverter.app').rmtree
2009-12-23 14:27:37 +00:00
# remove porting file for non-humans
(prefix+'q3porting.xml').unlink
# 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
# See: https://github.com/mxcl/homebrew/issues/issue/745
2010-02-16 20:53:29 +00:00
cd prefix do
ln_s lib, prefix + "Frameworks"
2010-02-16 20:53:29 +00:00
end
# 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.
Pathname.glob(lib + '*.framework/Headers').each do |path|
framework_name = File.basename(File.dirname(path), '.framework')
ln_s path.realpath, include+framework_name
end
Pathname.glob(bin + '*.app').each do |path|
mv path, prefix
end
end
2012-03-28 23:26:46 +00:00
def test
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
end
2009-09-12 16:06:43 +00:00
end