mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-07 23:42:12 +01:00

new file: a/ant/ant-1.10.7-Java-13.0.1.eb new file: a/at-spi2-atk/at-spi2-atk-2.34.1.eb new file: a/at-spi2-core/at-spi2-core-2.34.0.eb modified: c/cairo/cairo-1.17.2.eb new file: f/FFmpeg/FFmpeg-4.2.2.eb new file: f/FriBidi/FriBidi-1.0.9.eb new file: f/fontconfig/fontconfig-2.12.6.eb modified: f/fontconfig/fontconfig-2.13.1.eb new file: f/freetype/freetype-2.10.1.eb new file: g/GLib/GLib-2.64.0.eb new file: g/GObject-Introspection/GObject-Introspection-1.63.1-Py-3.7.eb new file: g/GTK+/GTK+-3.24.13.eb new file: g/Gdk-Pixbuf/Gdk-Pixbuf-2.38.2.eb new file: h/HarfBuzz/HarfBuzz-2.6.4.eb new file: i/ICU/ICU-64.2.eb new file: l/LibTIFF/LibTIFF-4.1.0.eb new file: l/libepoxy/libepoxy-1.5.4.eb new file: l/libjpeg-turbo/libjpeg-turbo-2.0.4.eb new file: o/OpenCV/OpenCV-3.4.7-intel-2020a-Py-3.7.eb new file: o/OpenCV/OpenCV-4.2.0-Py-3.7.eb new file: p/Pango/Pango-1.44.7.eb new file: v/VTK/VTK-8.2.0-foss-2019b-Python-3.7.4.eb modified: v/VTK/VTK-8.2.0-intel-2020a-Py-3.7.eb new file: "v/VTK/\\" modified: x/X11/X11-20190717.eb
69 lines
1.9 KiB
Plaintext
69 lines
1.9 KiB
Plaintext
# IT4Innovations 2020
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'cairo'
|
|
version = '1.17.2'
|
|
|
|
homepage = 'http://cairographics.org'
|
|
description = """Cairo is a 2D graphics library with support for multiple output devices.
|
|
Currently supported output targets include the X Window System (via both Xlib and XCB), Quartz, Win32, image buffers,
|
|
PostScript, PDF, and SVG file output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB"""
|
|
|
|
toolchain = SYSTEM
|
|
|
|
source_urls = ['https://cairographics.org/snapshots/']
|
|
sources = [SOURCE_TAR_XZ]
|
|
|
|
dependencies = [
|
|
('bzip2', '1.0.8'),
|
|
('zlib', '1.2.11'),
|
|
('libpng', '1.6.37'),
|
|
# ('freetype', '2.7.1', '-libpng-1.6.29'),
|
|
('pixman', '0.38.4'),
|
|
# ('expat', '2.2.0'),
|
|
('GLib', '2.64.0'),
|
|
('X11', '20190717'),
|
|
]
|
|
|
|
# disable symbol lookup, which requires -lbfd, to avoid link issues with
|
|
# (non-PIC) libiberty.a provided by GCC
|
|
configopts = "--enable-symbol-lookup=no --enable-gobject=yes --enable-svg=yes --enable-tee=yes --enable-xlib-xcb "
|
|
|
|
# workaround for "hidden symbol .* in .* is referenced by DSO" and "ld:
|
|
# final link failed: Bad value"
|
|
buildopts = 'LD="$CC" LDFLAGS="$LDFLAGS"'
|
|
|
|
sanity_check_paths = {
|
|
'files': [
|
|
'bin/cairo-trace',
|
|
'lib/cairo/libcairo-trace.so',
|
|
'lib/cairo/libcairo-trace.a',
|
|
'lib/libcairo.a',
|
|
'lib/libcairo-gobject.a',
|
|
'lib/libcairo-script-interpreter.a',
|
|
'lib/libcairo-gobject.so',
|
|
'lib/libcairo-script-interpreter.so',
|
|
'lib/libcairo.so'] +
|
|
[
|
|
'include/cairo/cairo%s.h' %
|
|
x for x in [
|
|
'',
|
|
'-deprecated',
|
|
'-features',
|
|
'-ft',
|
|
'-gobject',
|
|
'-pdf',
|
|
'-ps',
|
|
'-script',
|
|
'-script-interpreter',
|
|
'-svg',
|
|
'-version',
|
|
'-xcb',
|
|
'-xlib',
|
|
'-xlib-xrender']],
|
|
'dirs': ['lib/pkgconfig'],
|
|
}
|
|
|
|
moduleclass = 'vis'
|