4f84211b4a
Closes Homebrew/homebrew#17332. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
144 lines
4.9 KiB
Ruby
144 lines
4.9 KiB
Ruby
require 'formula'
|
|
|
|
class Vtk < Formula
|
|
homepage 'http://www.vtk.org'
|
|
url 'http://www.vtk.org/files/release/5.10/vtk-5.10.1.tar.gz'
|
|
sha1 'deb834f46b3f7fc3e122ddff45e2354d69d2adc3'
|
|
|
|
depends_on 'cmake' => :build
|
|
depends_on :x11 if build.include? 'x11'
|
|
depends_on 'qt' => :optional if build.include? 'qt'
|
|
|
|
if build.include? 'pyqt' and build.include? 'python'
|
|
depends_on 'sip'
|
|
depends_on 'pyqt'
|
|
end
|
|
|
|
option 'examples', 'Compile and install various examples'
|
|
option 'python', 'Enable python wrapping of VTK classes'
|
|
option 'pyqt', 'Make python wrapped classes available to SIP/PyQt'
|
|
option 'qt', 'Enable Qt4 extension via the Homebrew qt formula'
|
|
option 'qt-extern', 'Enable Qt4 extension via non-Homebrew external Qt4'
|
|
option 'tcl', 'Enable Tcl wrapping of VTK classes'
|
|
option 'x11', 'Enable X11 extension rather than OSX native Aqua'
|
|
|
|
def patches
|
|
# Fix bug in Wrapping/Python/setup_install_paths.py: http://vtk.org/Bug/view.php?id=13699
|
|
DATA
|
|
end
|
|
|
|
def install
|
|
args = std_cmake_args + %W[
|
|
-DVTK_REQUIRED_OBJCXX_FLAGS=''
|
|
-DVTK_USE_CARBON=OFF
|
|
-DBUILD_TESTING=OFF
|
|
-DBUILD_SHARED_LIBS=ON
|
|
-DCMAKE_INSTALL_RPATH:STRING='#{lib}/vtk-5.10'
|
|
-DCMAKE_INSTALL_NAME_DIR:STRING='#{lib}/vtk-5.10'
|
|
]
|
|
|
|
args << '-DBUILD_EXAMPLES=' + ((build.include? 'examples') ? 'ON' : 'OFF')
|
|
|
|
if build.include? 'python'
|
|
args << '-DVTK_WRAP_PYTHON=ON'
|
|
|
|
# Cmake picks up the system's python dylib, even if we have a brewed one.
|
|
python_prefix = `python-config --prefix`.strip
|
|
args << "-DPYTHON_LIBRARY='#{python_prefix}/Python'"
|
|
|
|
# Install to lib and let installer symlink to global python site-packages.
|
|
# The path in lib needs to exist first and be listed in PYTHONPATH.
|
|
pydir = lib/which_python/'site-packages'
|
|
pydir.mkpath
|
|
ENV['PYTHONPATH'] = pydir
|
|
args << "-DVTK_PYTHON_SETUP_ARGS:STRING='--prefix=#{prefix} --install-lib=#{pydir} --single-version-externally-managed --record=installed-files.txt'"
|
|
|
|
# For Xcode-only systems, the headers of system's python are inside of Xcode
|
|
if !MacOS::CLT.installed? and python_prefix.start_with? '/System/Library'
|
|
args << "-DPYTHON_INCLUDE_DIR='#{MacOS.sdk_path}/System/Library/Frameworks/Python.framework/Versions/2.7/Headers'"
|
|
end
|
|
|
|
if build.include? 'pyqt'
|
|
args << '-DVTK_WRAP_PYTHON_SIP=ON'
|
|
args << "-DSIP_PYQT_DIR='#{HOMEBREW_PREFIX}/share/sip'"
|
|
end
|
|
end
|
|
|
|
if build.include? 'qt' or build.include? 'qt-extern'
|
|
args << '-DVTK_USE_GUISUPPORT=ON'
|
|
args << '-DVTK_USE_QT=ON'
|
|
args << '-DVTK_USE_QVTK=ON'
|
|
end
|
|
|
|
args << '-DVTK_WRAP_TCL=ON' if build.include? 'tcl'
|
|
|
|
# Cocoa for everything except x11
|
|
if build.include? 'x11'
|
|
args << '-DVTK_USE_COCOA=OFF'
|
|
args << '-DVTK_USE_X=ON'
|
|
else
|
|
args << '-DVTK_USE_COCOA=ON'
|
|
end
|
|
|
|
unless MacOS::CLT.installed?
|
|
# We are facing an Xcode-only installation, and we have to keep
|
|
# vtk from using its internal Tk headers (that differ from OSX's).
|
|
args << "-DTK_INCLUDE_PATH:PATH=#{MacOS.sdk_path}/System/Library/Frameworks/Tk.framework/Headers"
|
|
args << "-DTK_INTERNAL_PATH:PATH=#{MacOS.sdk_path}/System/Library/Frameworks/Tk.framework/Headers/tk-private"
|
|
end
|
|
|
|
args << ".."
|
|
|
|
mkdir 'build' do
|
|
system 'cmake', *args
|
|
system 'make'
|
|
system 'make install'
|
|
end
|
|
|
|
(share+'vtk').install 'Examples' if build.include? 'examples'
|
|
end
|
|
|
|
def caveats
|
|
s = ''
|
|
vtk = Tab.for_formula 'vtk'
|
|
if build.include? 'python' or vtk.include? 'python'
|
|
s += <<-EOS.undent
|
|
For non-homebrew Python, you need to amend your PYTHONPATH like so:
|
|
export PYTHONPATH=#{HOMEBREW_PREFIX}/lib/#{which_python}/site-packages:$PYTHONPATH
|
|
|
|
Even without the --pyqt option, you can display native VTK render windows
|
|
from python. Alternatively, you can integrate the RenderWindowInteractor
|
|
in PyQt, PySide, Tk or Wx at runtime. Look at
|
|
import vtk.qt4; help(vtk.qt4) or import vtk.wx; help(vtk.wx)
|
|
|
|
EOS
|
|
end
|
|
if build.include? 'examples' or vtk.include? 'examples'
|
|
s += <<-EOS.undent
|
|
|
|
The scripting examples are stored in #{HOMEBREW_PREFIX}/share/vtk
|
|
|
|
EOS
|
|
end
|
|
return s.empty? ? nil : s
|
|
end
|
|
|
|
def which_python
|
|
"python" + `python -c 'import sys;print(sys.version[:3])'`.strip
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/Wrapping/Python/setup_install_paths.py b/Wrapping/Python/setup_install_paths.py
|
|
index 00f48c8..014b906 100755
|
|
--- a/Wrapping/Python/setup_install_paths.py
|
|
+++ b/Wrapping/Python/setup_install_paths.py
|
|
@@ -35,7 +35,7 @@ def get_install_path(command, *args):
|
|
option, value = string.split(arg,"=")
|
|
options[option] = value
|
|
except ValueError:
|
|
- options[option] = 1
|
|
+ options[arg] = 1
|
|
|
|
# check for the prefix and exec_prefix
|
|
try:
|