homebrew-core/Formula/qt.rb

89 lines
2.5 KiB
Ruby
Raw Normal View History

require 'formula'
2009-12-23 14:27:37 +00:00
require 'hardware'
class Qt <Formula
url 'http://get.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.6.3.tar.gz'
md5 '5c69f16d452b0bb3d44bc3c10556c072'
2009-10-23 15:28:52 +00:00
homepage 'http://www.qtsoftware.com'
def options
[
2009-12-23 14:27:37 +00:00
['--with-qtdbus', "Enable QtDBus module."],
['--with-qt3support', "Enable deprecated Qt3Support module."],
]
end
2009-12-05 18:27:12 +00:00
def self.x11?
File.exist? "/usr/X11R6/lib"
end
2009-12-23 14:27:37 +00:00
depends_on "d-bus" if ARGV.include? '--with-qtdbus'
2009-12-05 18:27:12 +00:00
depends_on 'libpng' unless x11?
2010-02-16 18:29:40 +00:00
depends_on 'sqlite' if MACOS_VERSION <= 10.5
def install
2009-10-12 18:51:17 +00:00
conf_args = ["-prefix", prefix,
2010-02-16 18:29:40 +00:00
"-system-libpng", "-system-zlib",
"-nomake", "demos", "-nomake", "examples",
2009-10-12 18:51:17 +00:00
"-release", "-cocoa",
"-confirm-license", "-opensource",
"-fast"]
2010-02-16 18:29:40 +00:00
# See: http://github.com/mxcl/homebrew/issues/issue/744
conf_args << "-system-sqlite" if MACOS_VERSION <= 10.5
conf_args << "-plugin-sql-mysql" if (HOMEBREW_CELLAR+"mysql").directory?
2009-12-23 14:27:37 +00:00
if ARGV.include? '--with-qtdbus'
conf_args << "-I#{Formula.factory('d-bus').lib}/dbus-1.0/include"
conf_args << "-I#{Formula.factory('d-bus').include}/dbus-1.0"
conf_args << "-L#{Formula.factory('d-bus').lib}"
conf_args << "-ldbus-1"
conf_args << "-dbus-linked"
end
if ARGV.include? '--with-qt3support'
conf_args << "-qt3support"
else
conf_args << "-no-qt3support"
end
2009-12-07 17:42:40 +00:00
if Qt.x11?
conf_args << "-L/usr/X11R6/lib"
conf_args << "-I/usr/X11R6/include"
else
conf_args << "-L#{Formula.factory('libpng').lib}"
conf_args << "-I#{Formula.factory('libpng').include}"
end
2009-12-23 14:27:37 +00:00
if MACOS_VERSION >= 10.6 and Hardware.is_64_bit?
2009-10-12 18:51:17 +00:00
conf_args << '-arch' << 'x86_64'
else
conf_args << '-arch' << 'x86'
end
2009-10-12 18:51:17 +00:00
system "./configure", *conf_args
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+'Assistant_adp.app').rmtree
(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: http://github.com/mxcl/homebrew/issues/issue/745
cd prefix do
ln_s lib, "Frameworks"
end
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."
end
2009-09-12 16:06:43 +00:00
end