2010-07-01 09:30:46 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Vtk < Formula
|
2010-07-01 09:30:46 +00:00
|
|
|
homepage 'http://www.vtk.org'
|
2012-02-21 06:04:21 +00:00
|
|
|
url 'http://www.vtk.org/files/release/5.8/vtk-5.8.0.tar.gz'
|
2011-09-09 07:06:17 +00:00
|
|
|
md5 '37b7297d02d647cc6ca95b38174cb41f'
|
2010-07-01 09:30:46 +00:00
|
|
|
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
depends_on 'qt' if ARGV.include? '--qt'
|
|
|
|
|
|
|
|
def options
|
|
|
|
[
|
|
|
|
['--python', "Enable python wrapping."],
|
|
|
|
['--qt', "Enable Qt extension."],
|
2011-04-14 17:45:06 +00:00
|
|
|
['--qt-extern', "Enable Qt extension (via external Qt)"],
|
2010-07-01 09:30:46 +00:00
|
|
|
['--tcl', "Enable Tcl wrapping."],
|
2011-09-04 23:31:55 +00:00
|
|
|
['--x11', "Enable X11 extension."]
|
2010-07-01 09:30:46 +00:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
def install
|
2011-04-14 17:45:06 +00:00
|
|
|
args = std_cmake_parameters.split + [
|
2010-07-01 09:30:46 +00:00
|
|
|
"-DVTK_REQUIRED_OBJCXX_FLAGS:STRING=''",
|
|
|
|
"-DVTK_USE_CARBON:BOOL=OFF",
|
|
|
|
"-DBUILD_TESTING:BOOL=OFF",
|
|
|
|
"-DBUILD_EXAMPLES:BOOL=OFF",
|
|
|
|
"-DBUILD_SHARED_LIBS:BOOL=ON",
|
2011-09-09 07:06:17 +00:00
|
|
|
"-DCMAKE_INSTALL_RPATH:STRING='#{lib}/vtk-5.8'",
|
|
|
|
"-DCMAKE_INSTALL_NAME_DIR:STRING='#{lib}/vtk-5.8'"]
|
2010-07-01 09:30:46 +00:00
|
|
|
|
|
|
|
if ARGV.include? '--python'
|
2011-04-14 17:45:06 +00:00
|
|
|
python_prefix = `python-config --prefix`.strip
|
|
|
|
# Install to global python site-packages
|
|
|
|
args << "-DVTK_PYTHON_SETUP_ARGS:STRING='--prefix=#{python_prefix}'"
|
|
|
|
# Python is actually a library. The libpythonX.Y.dylib points to this lib, too.
|
2011-05-28 09:01:44 +00:00
|
|
|
if File.exist? "#{python_prefix}/Python"
|
|
|
|
# Python was compiled with --framework:
|
|
|
|
args << "-DPYTHON_LIBRARY='#{python_prefix}/Python'"
|
|
|
|
else
|
|
|
|
python_version = `python-config --libs`.match('-lpython(\d+\.\d+)').captures.at(0)
|
|
|
|
python_lib = "#{python_prefix}/lib/libpython#{python_version}"
|
|
|
|
if File.exists? "#{python_lib}.a"
|
|
|
|
args << "-DPYTHON_LIBRARY='#{python_lib}.a'"
|
|
|
|
else
|
|
|
|
args << "-DPYTHON_LIBRARY='#{python_lib}.dylib'"
|
|
|
|
end
|
|
|
|
end
|
2010-07-01 09:30:46 +00:00
|
|
|
args << "-DVTK_WRAP_PYTHON:BOOL=ON"
|
|
|
|
end
|
|
|
|
|
2011-04-14 17:45:06 +00:00
|
|
|
if ARGV.include? '--qt' or ARGV.include? '--qt-extern'
|
2010-07-01 09:30:46 +00:00
|
|
|
args << "-DVTK_USE_GUISUPPORT:BOOL=ON"
|
|
|
|
args << "-DVTK_USE_QT:BOOL=ON"
|
|
|
|
args << "-DVTK_USE_QVTK:BOOL=ON"
|
|
|
|
end
|
|
|
|
|
|
|
|
if ARGV.include? '--tcl'
|
|
|
|
args << "-DVTK_WRAP_TCL:BOOL=ON"
|
|
|
|
end
|
|
|
|
|
2011-09-04 23:31:55 +00:00
|
|
|
# default to cocoa for everything except x11
|
|
|
|
args << "-DVTK_USE_COCOA:BOOL=ON" unless ARGV.include? "--x11"
|
|
|
|
|
|
|
|
if ARGV.include? '--x11'
|
|
|
|
args << "-DOPENGL_INCLUDE_DIR:PATH='/usr/X11R6/include'"
|
|
|
|
args << "-DOPENGL_gl_LIBRARY:FILEPATH='/usr/X11R6/lib/libGL.dylib'"
|
|
|
|
args << "-DOPENGL_glu_LIBRARY:FILEPATH='/usr/X11R6/lib/libGLU.dylib"
|
|
|
|
args << "-DVTK_USE_COCOA:BOOL=OFF"
|
|
|
|
args << "-DVTK_USE_X:BOOL=ON"
|
|
|
|
end
|
|
|
|
|
2011-04-14 17:45:06 +00:00
|
|
|
# Hack suggested at http://www.vtk.org/pipermail/vtk-developers/2006-February/003983.html
|
|
|
|
# to get the right RPATH in the python libraries (the .so files in the vtk egg).
|
|
|
|
# Also readable: http://vtk.1045678.n5.nabble.com/VTK-Python-Wrappers-on-Red-Hat-td1246159.html
|
|
|
|
args << "-DCMAKE_BUILD_WITH_INSTALL_RPATH:BOOL=ON"
|
|
|
|
ENV['DYLD_LIBRARY_PATH'] = `pwd`.strip + "/build/bin"
|
2010-07-01 09:30:46 +00:00
|
|
|
|
|
|
|
args << ".."
|
2012-02-22 04:48:36 +00:00
|
|
|
|
|
|
|
mkdir 'build' do
|
2010-07-01 09:30:46 +00:00
|
|
|
system "cmake", *args
|
2012-01-26 13:11:29 +00:00
|
|
|
# Work-a-round to avoid:
|
|
|
|
# ld: file not found: /usr/local/Cellar/vtk/5.8.0/lib/vtk-5.8/libvtkDICOMParser.5.8.dylib for architecture x86_64"
|
|
|
|
# collect2: ld returned 1 exit status
|
|
|
|
# make[2]: *** [bin/vtkpython] Error 1
|
|
|
|
# We symlink such that the DCMAKE_INSTALL_NAME_DIR is available and points to the current build/bin
|
|
|
|
mkpath "#{lib}" # create empty directories, because we need it here
|
|
|
|
system "ln -s " + ENV['DYLD_LIBRARY_PATH'] + " '#{lib}/vtk-5.8'"
|
|
|
|
system "make"
|
|
|
|
system "rm '#{lib}/vtk-5.8'" # Remove our symlink, was only needed to make make succeed.
|
|
|
|
# end work-a-round
|
|
|
|
system "make install" # Finally move libs in their places.
|
2010-07-01 09:30:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|