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

new file: g/GLib/GLib-2.64.1-GCCcore-8.3.0.eb modified: n/ncurses/ncurses-6.1-GCCcore-8.3.0.eb modified: x/X11/X11-20190717-GCCcore-8.3.0.eb deleted: g/GLib/GLib-2.64.0-GCCcore-8.3.0.eb
69 lines
1.9 KiB
Plaintext
69 lines
1.9 KiB
Plaintext
# JH 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 = {'name': 'GCCcore', 'version': '8.3.0'}
|
|
|
|
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.10.1'),
|
|
('pixman', '0.38.4'),
|
|
('expat', '2.2.7'),
|
|
('GLib', '2.64.1'),
|
|
('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'
|