homebrew-core/Formula/qt.rb

89 lines
2.6 KiB
Ruby
Raw Normal View History

require 'formula'
2009-12-23 14:27:37 +00:00
require 'hardware'
class Qt <Formula
2009-12-23 14:27:37 +00:00
url 'http://get.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.6.1.tar.gz'
2010-02-01 22:15:05 +00:00
md5 '0542a4be6425451ab5f668c6899cac36'
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?
def install
2009-12-23 14:27:37 +00:00
if version == '4.6.1' # being specific so needs reconfirmed each version
# Bug reported here: http://bugreports.qt.nokia.com/browse/QTBUG-7630
makefiles=%w[plugins/sqldrivers/sqlite/sqlite.pro 3rdparty/webkit/WebCore/WebCore.pro]
makefiles.each { |makefile| `echo 'LIBS += -lsqlite3' >> src/#{makefile}` }
end
2009-10-12 18:51:17 +00:00
conf_args = ["-prefix", prefix,
"-system-sqlite", "-system-libpng", "-system-zlib",
"-nomake", "demos", "-nomake", "examples",
2009-10-12 18:51:17 +00:00
"-release", "-cocoa",
"-confirm-license", "-opensource",
"-fast"]
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 << "-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
system "./configure", *conf_args
system "make install"
2009-12-23 14:27:37 +00:00
# remove unneeded files
`find #{lib} -name \*.prl -delete`
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 debugging files that slipped through
(lib+'libQtUiTools_debug.a').unlink
(lib+'pkgconfig/QtUiTools_debug.pc').unlink
2009-12-23 14:27:37 +00:00
# remove porting file for non-humans
(prefix+'q3porting.xml').unlink
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