mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-10 17:02:11 +01:00

new file: b/bzip2/bzip2-1.0.8.eb new file: c/Cython/Cython-0.29.14-Py-3.7.eb new file: c/cairo/cairo-1.17.2.eb modified: e/Eigen/Eigen-3.3.7.eb new file: g/GLib/GLib-2.62.4.eb new file: l/libffi/libffi-3.3.eb new file: "l/libpng/\\" new file: l/libpng/libpng-1.6.37.eb new file: m/Meson/Meson-0.51.2-Py-3.7.eb new file: m/Meson/Meson-0.53.0-Py-3.7.eb new file: n/Ninja/Ninja-1.9.0-Py-3.7.eb modified: n/numpy/numpy-1.18.1-Py-3.6.eb new file: n/numpy/numpy-1.18.1-Py-3.7.eb modified: o/OpenBabel/OpenBabel-2.4.9-GCCcore-6.3.0-Python-3.7.3.eb new file: o/OpenBabel/OpenBabel-3.0.0-Py-3.7.eb new file: p/PCRE/PCRE-8.43.eb modified: p/Py/Py-3.7.eb new file: p/Python/Python-3.7.5-GCC-8.3.0-2.32-base.eb new file: p/phono3py/phono3py-1.18.2-conda.eb new file: p/phonopy/phono3py-1.18.2-conda.eb new file: p/phonopy/phonopy-2.4.2-conda.eb new file: p/pixman/pixman-0.38.4.eb new file: s/SQLite/SQLite-3.30.1.eb new file: s/SWIG/SWIG-3.0.12-Py-3.7.eb new file: s/SWIG/SWIG-4.0.1-Py-3.7.eb new file: t/Tcl/Tcl-8.6.10.eb new file: u/util-linux/util-linux-2.34.eb deleted: p/phono3py/phono3py-1.18.2-Py-3.6.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.62.4'),
|
|
('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'
|