easyconfigs-it4i/p/Paraview/Paraview-5.0.0-foss-2015g.eb
Lukáš Krupčík 92cb0848fe formatter
2018-10-03 07:48:02 +02:00

55 lines
1.9 KiB
Plaintext

easyblock = 'CMakeMake'
name = 'ParaView'
version = '5.0.0'
homepage = "http://www.paraview.org"
description = "ParaView is a scientific parallel visualizer."
toolchain = {'name': 'foss', 'version': '2015g'}
toolchainopts = {'pic': True, 'usempi': True}
download_suffix = 'download.php?submit=Download&version=v%(version_major_minor)s&type=source&os=all&downloadFile='
source_urls = [
'http://www.paraview.org/paraview-downloads/%s' %
download_suffix]
sources = ["ParaView-v%(version)s-source.tar.gz"]
python = 'Python'
pyver = '2.7.9'
pysuff = '-%s-%s' % (python, pyver)
dependencies = [
('Mesa', '11.0.8', pysuff),
('libGLU', '9.0.0'),
('libXt', '1.1.5'),
('Qt', '4.8.6'),
('libXext', '1.3.3', pysuff),
('libX11', '1.6.2', pysuff),
('zlib', '1.2.8'),
]
builddependencies = [('CMake', '3.3.1')]
separate_build_dir = True
maxparallel = 4
preconfigopts = 'export SOME_VAR=something && '
configopts = '-DPARAVIEW_INSTALL_DEVELOPMENT_FILES=ON -DVTK_OPENGL_HAS_OSMESA=ON '
configopts += '-DOPENGL_INCLUDE_DIR=$EBROOTMESA/include -DOPENGL_gl_LIBRARY=$EBROOTMESA/lib/libGL.so '
configopts += '-DOSMESA_INCLUDE_DIR=$EBROOTMESA/include -DOSMESA_LIBRARY=$EBROOTMESA/lib/libOSMesa.so '
# Without internet connection turn off testing (uncomment the following line)
#configopts += '-DBUILD_TESTING=OFF '
# Or consult https://gitlab.kitware.com/vtk/vtk/blob/master/Documentation/dev/git/data.md
# and download ExternalData to $EASYBUILD_SOURCEPATH and adjust -DExternalData_OBJECT_STORES accordingly
# Without internet connection, comment the following two lines (configopts
# and prebuildopts)
configopts += '-DExternalData_OBJECT_STORES=%(builddir)s/ExternalData '
# The ParaView server can be cranky, test downloads are quite often failing, especially in the case
# of parallel downloads. Using ; insted of && gives a second chance to download the test files, if the
# first serial attempt would fail.
prebuildopts = 'make VTKData ;'
moduleclass = 'vis'