diff --git a/f/fontconfig/fontconfig-2.13.0.eb b/f/fontconfig/fontconfig-2.13.0.eb index 2726ddc8..e20c99b8 100644 --- a/f/fontconfig/fontconfig-2.13.0.eb +++ b/f/fontconfig/fontconfig-2.13.0.eb @@ -22,6 +22,7 @@ dependencies = [ ('freetype', '2.9.1'), ('expat', '2.2.0'), ('LibUUID', '1.0.3'), + ('gperf', '3.1'), ] configopts = '--disable-docs ' diff --git a/l/libGLU/libGLU-9.0.0-GCC-8.3.0-2.32.eb b/l/libGLU/libGLU-9.0.0-GCC-8.3.0-2.32.eb new file mode 100644 index 00000000..aea9e368 --- /dev/null +++ b/l/libGLU/libGLU-9.0.0-GCC-8.3.0-2.32.eb @@ -0,0 +1,29 @@ +# IT4Innovations 2020 + +easyblock = 'ConfigureMake' + +name = 'libGLU' +version = '9.0.0' + +homepage = 'ftp://ftp.freedesktop.org/pub/mesa/glu/' +description = """The OpenGL Utility Library (GLU) is a local_computer graphics library for OpenGL. """ + +toolchain = {'name': 'GCC', 'version': '8.3.0-2.32'} +toolchainopts = {'pic': True} + +source_urls = [ + 'http://ftp.iij.ad.jp/pub/X11/x.org/pub/mesa/glu/' +] +sources = ['glu-%(version)s.tar.gz'] + +dependencies = [ + ('Mesa', '18.3.1', '', True) +] + + +sanity_check_paths = { + 'files': ['lib/libGLU.so.1'], + 'dirs': [], +} + +moduleclass = 'vis' diff --git a/l/libGLU/libGLU-9.0.0.eb b/l/libGLU/libGLU-9.0.0.eb index 2698d682..9f3c5717 100644 --- a/l/libGLU/libGLU-9.0.0.eb +++ b/l/libGLU/libGLU-9.0.0.eb @@ -8,7 +8,7 @@ version = '9.0.0' homepage = 'ftp://ftp.freedesktop.org/pub/mesa/glu/' description = """The OpenGL Utility Library (GLU) is a local_computer graphics library for OpenGL. """ -toolchain = SYSTEM +toolchain = { toolchainopts = {'pic': True} source_urls = [ diff --git a/l/libdrm/libdrm-2.4.76.eb b/l/libdrm/libdrm-2.4.76.eb index 9c31f71a..fdd7bddf 100644 --- a/l/libdrm/libdrm-2.4.76.eb +++ b/l/libdrm/libdrm-2.4.76.eb @@ -1,3 +1,5 @@ +# IT4Innovations 2020 + easyblock = 'ConfigureMake' name = 'libdrm' @@ -12,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ] toolchain = SYSTEM dependencies = [ - ('X11', '20170314'), + ('X11', '20190717'), ] sanity_check_paths = { diff --git a/m/Mako/Mako-1.0.6-Py-2.7.eb b/m/Mako/Mako-1.0.6-Py-2.7.eb index f2865c24..1ed55405 100644 --- a/m/Mako/Mako-1.0.6-Py-2.7.eb +++ b/m/Mako/Mako-1.0.6-Py-2.7.eb @@ -18,7 +18,7 @@ dependencies = [('Py', '2.7')] sanity_check_paths = { 'files': ['bin/mako-render'], - 'dirs': ['lib/python2.7s/site-packages/%(name)s-%(version)s-py2.7.egg'], + 'dirs': ['lib/python2.7/site-packages'], } moduleclass = 'devel' diff --git a/m/Mesa/Mesa-18.3.1.eb b/m/Mesa/Mesa-18.3.1.eb index 6805e3b3..8d43cc06 100644 --- a/m/Mesa/Mesa-18.3.1.eb +++ b/m/Mesa/Mesa-18.3.1.eb @@ -1,4 +1,4 @@ -# IT4Innovations 2018 +# IT4Innovations 2020 easyblock = 'ConfigureMake' @@ -28,7 +28,7 @@ builddependencies = [ ('Bison', '3.0.5', '', True), ('Autotools', '20180311', '', True), ('pkg-config', '0.29.2', '', True), - ('Mako', '1.0.6', '-Python-2.7.14-base', True), + ('Mako', '1.0.6', '-Py-2.7', True), ('libxml2', '2.9.4', '', True), ] @@ -36,8 +36,8 @@ dependencies = [ ('zlib', '1.2.11', '', True), ('nettle', '3.4.1'), ('libdrm', '2.4.76', '', True), - ('LLVM', '6.0.1'), - ('X11', '20170314', '', True), + ('LLVM', '9.0.0', '', ('GCCcore' , '8.3.0')), + ('X11', '20190717', '', True), ('expat', '2.2.0', '', True), ] diff --git a/v/VirtualGL/VirtualGL-2.6.1-GCC-8.3.0-2.32.eb b/v/VirtualGL/VirtualGL-2.6.1-GCC-8.3.0-2.32.eb new file mode 100644 index 00000000..3bcd39d4 --- /dev/null +++ b/v/VirtualGL/VirtualGL-2.6.1-GCC-8.3.0-2.32.eb @@ -0,0 +1,35 @@ +# IT4Innovations 2020 + +easyblock = 'CMakeMake' + +name = "VirtualGL" +version = '2.6.1' + +homepage = 'http://www.virtualgl.org' +description = """VirtualGL is an open source toolkit that gives any Unix or Linux remote display software the +ability to run OpenGL applications with full 3D hardware acceleration.""" + +# empty version to ensure that dependencies are loaded +toolchain = {'name': 'GCC', 'version': '8.3.0-2.32'} + +sources = ['%(version)s.tar.gz'] +source_urls = ['https://github.com/VirtualGL/virtualgl/archive'] + +dependencies = [ + ('Mesa', '18.3.1', '', True), + ('libjpeg-turbo', '1.5.3', '', True), + ('libGLU', '9.0.0'), +] + +builddependencies = [ + ('CMake', '3.16.2', '', True), +] + +#skipsteps = ['source', 'patch', 'prepare', 'configure', 'build', 'test'] + +sanity_check_paths = { + 'files': ['bin/vglrun'], + 'dirs': [''] +} + +moduleclass = 'tools' diff --git a/v/VirtualGL/VirtualGL-2.6.3.eb b/v/VirtualGL/VirtualGL-2.6.3.eb new file mode 100644 index 00000000..455bf1a2 --- /dev/null +++ b/v/VirtualGL/VirtualGL-2.6.3.eb @@ -0,0 +1,35 @@ +# IT4Innovations 2020 + +easyblock = 'CMakeMake' + +name = "VirtualGL" +version = '2.6.3' + +homepage = 'http://www.virtualgl.org' +description = """VirtualGL is an open source toolkit that gives any Unix or Linux remote display software the +ability to run OpenGL applications with full 3D hardware acceleration.""" + +# empty version to ensure that dependencies are loaded +toolchain = SYSTEM + +sources = ['%(version)s.tar.gz'] +source_urls = ['https://github.com/VirtualGL/virtualgl/archive'] + +dependencies = [ + ('Mesa', '18.3.1'), + ('libjpeg-turbo', '1.5.3'), + ('libGLU', '9.0.0', '', ('GCC', '8.3.0-2.32')), +] + +builddependencies = [ + ('CMake', '3.16.2'), +] + +#skipsteps = ['source', 'patch', 'prepare', 'configure', 'build', 'test'] + +sanity_check_paths = { + 'files': ['bin/vglrun'], + 'dirs': [''] +} + +moduleclass = 'tools'