mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-25 16:01:37 +01:00

new file: f/FriBidi/FriBidi-1.0.2.eb new file: f/fontconfig/fontconfig-2.13.0-libpng-1.6.34.eb new file: f/freetype/freetype-2.9.1-libpng-1.6.34.eb new file: g/GLib/GLib-2.56.1.eb new file: g/GObject-Introspection/GObject-Introspection-1.52.0.eb new file: g/GObject-Introspection/GObject-Introspection-1.56.1.eb new file: g/gnuplot/.gnuplot-5.2.3.eb.swp modified: g/gnuplot/gnuplot-5.0.6-GCC-6.3.0-2.27.eb new file: g/gnuplot/gnuplot-5.2.3.eb new file: h/HarfBuzz/HarfBuzz-1.7.6.eb new file: l/LibUUID/LibUUID-1.0.3.eb new file: l/libgd/libgd-2.2.5.eb new file: l/libjpeg-turbo/libjpeg-turbo-1.5.3.eb new file: l/libpng/libpng-1.6.34.eb new file: n/NASM/NASM-2.13.03.eb new file: p/Pango/Pango-1.42.1.eb modified: x/X11/X11-20170314.eb Former-commit-id: 0f3703e98739cc0d5678ef5f9fc38320ceafbbd5
44 lines
1.8 KiB
Plaintext
44 lines
1.8 KiB
Plaintext
easyblock = 'ConfigureMake'
|
|
|
|
name = 'cairo'
|
|
version = '1.14.12'
|
|
|
|
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]
|
|
|
|
dependencies = [
|
|
('bzip2', '1.0.6'),
|
|
('zlib', '1.2.11'),
|
|
('libpng', '1.6.34'),
|
|
('freetype', '2.9.1', '-libpng-1.6.34'),
|
|
('pixman', '0.34.0'),
|
|
('expat', '2.2.0'),
|
|
('GLib', '2.56.1'),
|
|
('X11', '20170314'),
|
|
]
|
|
|
|
# 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'
|