148 lines
4.6 KiB
Ruby
148 lines
4.6 KiB
Ruby
require 'formula'
|
|
|
|
class Qt < Formula
|
|
homepage 'http://qt-project.org/'
|
|
url 'http://releases.qt-project.org/qt4/source/qt-everywhere-opensource-src-4.8.4.tar.gz'
|
|
sha1 'f5880f11c139d7d8d01ecb8d874535f7d9553198'
|
|
|
|
bottle do
|
|
revision 1
|
|
sha1 '7fb679119b8b463055849dea791cc7fca62c62d1' => :mountain_lion
|
|
sha1 'b456ff5f8d18fc53b4546119d00d8ff0dda92f90' => :lion
|
|
sha1 '920992e5059a5c816b4eb245597fc028ff6b09ae' => :snow_leopard
|
|
end
|
|
|
|
head 'git://gitorious.org/qt/qt.git', :branch => 'master'
|
|
|
|
option :universal
|
|
option 'with-qtdbus', 'Enable QtDBus module'
|
|
option 'with-qt3support', 'Enable deprecated Qt3Support module'
|
|
option 'with-demos-examples', 'Enable Qt demos and examples'
|
|
option 'with-debug-and-release', 'Compile Qt in debug and release mode'
|
|
option 'developer', 'Compile and link Qt with developer options'
|
|
|
|
depends_on :libpng
|
|
|
|
depends_on "d-bus" if build.with? 'qtdbus'
|
|
depends_on "mysql" => :optional
|
|
depends_on 'sqlite' if MacOS.version == :leopard
|
|
|
|
def patches
|
|
# Fixes compilation failure on Leopard.
|
|
# https://bugreports.qt-project.org/browse/QTBUG-23258
|
|
if MacOS.version == :leopard
|
|
"http://bugreports.qt-project.org/secure/attachment/26712/Patch-Qt-4.8-for-10.5"
|
|
end
|
|
end
|
|
|
|
def install
|
|
ENV.append "CXXFLAGS", "-fvisibility=hidden"
|
|
|
|
# clang complains about extra qualifier since Xcode 4.6 (clang build 425)
|
|
# https://bugreports.qt-project.org/browse/QTBUG-29373
|
|
if MacOS.clang_build_version >= 425
|
|
inreplace "src/gui/kernel/qt_cocoa_helpers_mac_p.h",
|
|
"::TabletProximityRec",
|
|
"TabletProximityRec"
|
|
end
|
|
|
|
args = ["-prefix", prefix,
|
|
"-system-libpng", "-system-zlib",
|
|
"-confirm-license", "-opensource",
|
|
"-cocoa", "-fast" ]
|
|
|
|
# we have to disable 3DNow! to avoid triggering optimization code
|
|
# that will fail with clang. Only seems to occur in superenv, perhaps
|
|
# because we rename clang to cc and Qt thinks it can build with special
|
|
# assembler commands. In --env=std, Qt seems aware of this.)
|
|
# But we want superenv, because it allows to build Qt in non-standard
|
|
# locations and with Xcode-only.
|
|
args << "-no-3dnow" if superenv?
|
|
|
|
args << "-L#{MacOS::X11.prefix}/lib" << "-I#{MacOS::X11.prefix}/include" if MacOS::X11.installed?
|
|
|
|
args << "-platform" << "unsupported/macx-clang" if ENV.compiler == :clang
|
|
|
|
# See: https://github.com/mxcl/homebrew/issues/issue/744
|
|
args << "-system-sqlite" if MacOS.version == :leopard
|
|
|
|
args << "-plugin-sql-mysql" if build.with? 'mysql'
|
|
|
|
if build.with? 'qtdbus'
|
|
args << "-I#{Formula.factory('d-bus').lib}/dbus-1.0/include"
|
|
args << "-I#{Formula.factory('d-bus').include}/dbus-1.0"
|
|
args << "-L#{Formula.factory('d-bus').lib}"
|
|
args << "-ldbus-1"
|
|
end
|
|
|
|
if build.with? 'qt3support'
|
|
args << "-qt3support"
|
|
else
|
|
args << "-no-qt3support"
|
|
end
|
|
|
|
unless build.with? 'demos-examples'
|
|
args << "-nomake" << "demos" << "-nomake" << "examples"
|
|
end
|
|
|
|
if MacOS.prefer_64_bit? or build.universal?
|
|
args << '-arch' << 'x86_64'
|
|
end
|
|
|
|
if !MacOS.prefer_64_bit? or build.universal?
|
|
args << '-arch' << 'x86'
|
|
end
|
|
|
|
if build.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"
|
|
else
|
|
args << "-release"
|
|
end
|
|
|
|
args << '-developer-build' if build.include? 'developer'
|
|
|
|
system "./configure", *args
|
|
system "make"
|
|
ENV.j1
|
|
system "make install"
|
|
|
|
# stop crazy disk usage
|
|
(prefix+'doc/html').rmtree
|
|
(prefix+'doc/src').rmtree
|
|
# what are these anyway?
|
|
(bin+'pixeltool.app').rmtree
|
|
(bin+'qhelpconverter.app').rmtree
|
|
# remove porting file for non-humans
|
|
(prefix+'q3porting.xml').unlink
|
|
|
|
# Some config scripts will only find Qt in a "Frameworks" folder
|
|
cd prefix do
|
|
ln_s lib, frameworks
|
|
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
|
|
|
|
test do
|
|
system "#{bin}/qmake", '-project'
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
We agreed to the Qt opensource license for you.
|
|
If this is unacceptable you should uninstall.
|
|
EOS
|
|
end
|
|
end
|