mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-15 19:28:06 +01:00

new file: a/ASE/ASE-3.15.0-Python-3.6.2-base.eb new file: a/ATK/ATK-2.18.0.eb new file: c/cairo/cairo-1.14.12.eb new file: c/cairo/cairo-1.14.6.eb modified: f/fontconfig/fontconfig-2.11.1.eb new file: g/GLib/GLib-2.55.0.eb new file: g/GObject-Introspection/GObject-Introspection-1.47.1.eb new file: g/GTK+/GTK+-2.24.28.eb new file: g/Gdk-Pixbuf/Gdk-Pixbuf-2.32.3.eb new file: h/HarfBuzz/HarfBuzz-1.1.3.eb modified: l/libXext/libXext-1.3.3.eb new file: l/libXrender/libXrender-0.9.9.eb new file: l/libglade/libglade-2.6.4.eb new file: n/numpy/numpy-1.13.3-Python-3.6.2-base.eb new file: p/Pango/Pango-1.39.0.eb new file: p/PyCairo/PyCairo-1.10.0-Python-2.7.13-base.eb new file: p/PyCairo/PyCairo-1.15.4-Python-2.7.13.eb new file: p/PyGObject/PyGObject-2.28.6-Python-2.7.13-base.eb new file: p/PyGObject/PyGObject-2.28.6-Python-2.7.13.eb new file: p/PyGObject/PyGObject-2.28.6_enum-types.patch new file: p/PyGTK/PyGTK-2.24.0-Python-2.7.13-base.eb new file: p/PyGTK/PyGTK-2.24.0-Python-2.7.13.eb modified: p/p4vasp/p4vasp-0.3.30-GNU-4.9.3-2.25.eb new file: p/p4vasp/p4vasp-0.3.30.eb new file: s/scipy/scipy-1.0.0-Python-3.6.2-base.eb deleted: g/GObject-Introspection/GObject-Introspection-1.52.0.eb
57 lines
2.1 KiB
Plaintext
57 lines
2.1 KiB
Plaintext
easyblock = 'ConfigureMake'
|
|
|
|
name = 'cairo'
|
|
version = '1.14.6'
|
|
|
|
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 = {'name': 'dummy', 'version': ''}
|
|
|
|
source_urls = ['http://cairographics.org/releases/']
|
|
sources = [SOURCE_TAR_XZ]
|
|
|
|
glibver = '2.52.0'
|
|
|
|
dependencies = [
|
|
('bzip2', '1.0.6'),
|
|
('zlib', '1.2.11'),
|
|
('libpng', '1.6.29'),
|
|
('freetype', '2.8'),
|
|
('pixman', '0.34.0'),
|
|
('fontconfig', '2.11.1'),
|
|
('expat', '2.1.0'),
|
|
('GLib', glibver),
|
|
('libX11', '1.6.3'),
|
|
('libxcb', '1.11.1'),
|
|
('libXrender', '0.9.9'),
|
|
('libXext', '1.3.3'),
|
|
('libXau', '1.0.8'),
|
|
('libXdmcp', '1.1.2'),
|
|
]
|
|
builddependencies = [
|
|
('renderproto', '0.11'),
|
|
('xproto', '7.0.28'),
|
|
('xextproto', '7.3.0'),
|
|
]
|
|
|
|
# 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 "
|
|
|
|
# workaround for "hidden symbol .* in .* is referenced by DSO" and "ld: final link failed: Bad value"
|
|
buildopts = 'LD="$CC" LDFLAGS="$LDFLAGS -shared-intel"'
|
|
|
|
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'
|