homebrew-core/Formula/pyqt.rb
2015-01-16 23:39:58 -08:00

91 lines
3.1 KiB
Ruby

class Pyqt < Formula
homepage "http://www.riverbankcomputing.co.uk/software/pyqt"
url "https://downloads.sf.net/project/pyqt/PyQt4/PyQt-4.11.3/PyQt-mac-gpl-4.11.3.tar.gz"
sha1 "8c53254b38686e5366d74eba81f02f9611f39166"
bottle do
sha1 "7d0b71a8c80401f6026172f22605e5a4e9eff8a3" => :yosemite
sha1 "455a2cc8c46f64b2d27d2248b3bd6387e345377f" => :mavericks
sha1 "30c74d1bfad2bc16c0052fd767fdb21b461e41e6" => :mountain_lion
end
option "without-python", "Build without python 2 support"
depends_on :python3 => :optional
if build.without?("python3") && build.without?("python")
odie "pyqt: --with-python3 must be specified when using --without-python"
end
depends_on "qt"
if build.with? "python3"
depends_on "sip" => "with-python3"
else
depends_on "sip"
end
def install
# On Mavericks we want to target libc++, this requires a non default qt makespec
if ENV.compiler == :clang and MacOS.version >= :mavericks
ENV.append "QMAKESPEC", "unsupported/macx-clang-libc++"
end
Language::Python.each_python(build) do |python, version|
ENV.append_path "PYTHONPATH", "#{Formula["sip"].opt_lib}/python#{version}/site-packages"
args = ["--confirm-license",
"--bindir=#{bin}",
"--destdir=#{lib}/python#{version}/site-packages",
"--sipdir=#{share}/sip"]
# We need to run "configure.py" so that pyqtconfig.py is generated, which
# is needed by QGIS, PyQWT (and many other PyQt interoperable
# implementations such as the ROS GUI libs). This file is currently needed
# for generating build files appropriate for the qmake spec that was used
# to build Qt. The alternatives provided by configure-ng.py is not
# sufficient to replace pyqtconfig.py yet (see
# https://github.com/qgis/QGIS/pull/1508). Using configure.py is
# deprecated and will be removed with SIP v5, so we do the actual compile
# using the newer configure-ng.py as recommended. In order not to
# interfere with the build using configure-ng.py, we run configure.py in a
# temporary directory and only retain the pyqtconfig.py from that.
require "tmpdir"
dir = Dir.mktmpdir
begin
cp_r(Dir.glob('*'), dir)
cd dir do
system python, "configure.py", *args
(lib/"python#{version}/site-packages/PyQt4").install "pyqtconfig.py"
end
ensure
remove_entry_secure dir
end
# On Mavericks we want to target libc++, this requires a non default qt makespec
if ENV.compiler == :clang and MacOS.version >= :mavericks
args << "--spec" << "unsupported/macx-clang-libc++"
end
system python, "configure-ng.py", *args
system "make"
system "make", "install"
system "make", "clean" # for when building against multiple Pythons
end
end
def caveats
"Phonon support is broken."
end
test do
Pathname("test.py").write <<-EOS.undent
from PyQt4 import QtNetwork
QtNetwork.QNetworkAccessManager().networkAccessible()
EOS
Language::Python.each_python(build) do |python, version|
system python, "test.py"
end
end
end