summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/cairo
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-graphics/cairo')
-rw-r--r--meta/recipes-graphics/cairo/cairo/CVE-2018-19876.patch34
-rw-r--r--meta/recipes-graphics/cairo/cairo/CVE-2019-6461.patch19
-rw-r--r--meta/recipes-graphics/cairo/cairo/CVE-2019-6462.patch20
-rw-r--r--meta/recipes-graphics/cairo/cairo/cairo-get_bitmap_surface-bsc1036789-CVE-2017-7475.diff2
-rw-r--r--meta/recipes-graphics/cairo/cairo_1.16.0.bb98
-rw-r--r--meta/recipes-graphics/cairo/cairo_1.18.0.bb86
6 files changed, 87 insertions, 172 deletions
diff --git a/meta/recipes-graphics/cairo/cairo/CVE-2018-19876.patch b/meta/recipes-graphics/cairo/cairo/CVE-2018-19876.patch
deleted file mode 100644
index 4252a5663b..0000000000
--- a/meta/recipes-graphics/cairo/cairo/CVE-2018-19876.patch
+++ /dev/null
@@ -1,34 +0,0 @@
1CVE: CVE-2018-19876
2Upstream-Status: Backport
3Signed-off-by: Ross Burton <ross.burton@intel.com>
4
5From 90e85c2493fdfa3551f202ff10282463f1e36645 Mon Sep 17 00:00:00 2001
6From: Carlos Garcia Campos <cgarcia@igalia.com>
7Date: Mon, 19 Nov 2018 12:33:07 +0100
8Subject: [PATCH] ft: Use FT_Done_MM_Var instead of free when available in
9 cairo_ft_apply_variations
10
11Fixes a crash when using freetype >= 2.9
12---
13 src/cairo-ft-font.c | 4 ++++
14 1 file changed, 4 insertions(+)
15
16diff --git a/src/cairo-ft-font.c b/src/cairo-ft-font.c
17index 325dd61b4..981973f78 100644
18--- a/src/cairo-ft-font.c
19+++ b/src/cairo-ft-font.c
20@@ -2393,7 +2393,11 @@ skip:
21 done:
22 free (coords);
23 free (current_coords);
24+#if HAVE_FT_DONE_MM_VAR
25+ FT_Done_MM_Var (face->glyph->library, ft_mm_var);
26+#else
27 free (ft_mm_var);
28+#endif
29 }
30 }
31
32--
332.11.0
34
diff --git a/meta/recipes-graphics/cairo/cairo/CVE-2019-6461.patch b/meta/recipes-graphics/cairo/cairo/CVE-2019-6461.patch
deleted file mode 100644
index 5232cf70c6..0000000000
--- a/meta/recipes-graphics/cairo/cairo/CVE-2019-6461.patch
+++ /dev/null
@@ -1,19 +0,0 @@
1There is a potential infinite-loop in function _arc_error_normalized().
2
3CVE: CVE-2019-6461
4Upstream-Status: Pending
5Signed-off-by: Ross Burton <ross.burton@intel.com>
6
7diff --git a/src/cairo-arc.c b/src/cairo-arc.c
8index 390397bae..f9249dbeb 100644
9--- a/src/cairo-arc.c
10+++ b/src/cairo-arc.c
11@@ -99,7 +99,7 @@ _arc_max_angle_for_tolerance_normalized (double tolerance)
12 do {
13 angle = M_PI / i++;
14 error = _arc_error_normalized (angle);
15- } while (error > tolerance);
16+ } while (error > tolerance && error > __DBL_EPSILON__);
17
18 return angle;
19 }
diff --git a/meta/recipes-graphics/cairo/cairo/CVE-2019-6462.patch b/meta/recipes-graphics/cairo/cairo/CVE-2019-6462.patch
deleted file mode 100644
index 4e4598c5b5..0000000000
--- a/meta/recipes-graphics/cairo/cairo/CVE-2019-6462.patch
+++ /dev/null
@@ -1,20 +0,0 @@
1There is an assertion in function _cairo_arc_in_direction().
2
3CVE: CVE-2019-6462
4Upstream-Status: Pending
5Signed-off-by: Ross Burton <ross.burton@intel.com>
6
7diff --git a/src/cairo-arc.c b/src/cairo-arc.c
8index 390397bae..1bde774a4 100644
9--- a/src/cairo-arc.c
10+++ b/src/cairo-arc.c
11@@ -186,7 +186,8 @@ _cairo_arc_in_direction (cairo_t *cr,
12 if (cairo_status (cr))
13 return;
14
15- assert (angle_max >= angle_min);
16+ if (angle_max < angle_min)
17+ return;
18
19 if (angle_max - angle_min > 2 * M_PI * MAX_FULL_CIRCLES) {
20 angle_max = fmod (angle_max - angle_min, 2 * M_PI);
diff --git a/meta/recipes-graphics/cairo/cairo/cairo-get_bitmap_surface-bsc1036789-CVE-2017-7475.diff b/meta/recipes-graphics/cairo/cairo/cairo-get_bitmap_surface-bsc1036789-CVE-2017-7475.diff
index 7aaad2eedd..6c761bf2a7 100644
--- a/meta/recipes-graphics/cairo/cairo/cairo-get_bitmap_surface-bsc1036789-CVE-2017-7475.diff
+++ b/meta/recipes-graphics/cairo/cairo/cairo-get_bitmap_surface-bsc1036789-CVE-2017-7475.diff
@@ -3,7 +3,7 @@ Cairo: Fix Denial-of-Service Attack due to Logical Problem in Program
3https://bugs.freedesktop.org/show_bug.cgi?id=100763 3https://bugs.freedesktop.org/show_bug.cgi?id=100763
4 4
5CVE: CVE-2017-7475 5CVE: CVE-2017-7475
6Upstream-Status: Submitted 6Upstream-Status: Submitted [https://gitlab.freedesktop.org/cairo/cairo/-/issues/80]
7 7
8Signed-off-by: Fan Xin <fan.xin@jp.fujitsu.com> 8Signed-off-by: Fan Xin <fan.xin@jp.fujitsu.com>
9 9
diff --git a/meta/recipes-graphics/cairo/cairo_1.16.0.bb b/meta/recipes-graphics/cairo/cairo_1.16.0.bb
deleted file mode 100644
index 68f993d7ca..0000000000
--- a/meta/recipes-graphics/cairo/cairo_1.16.0.bb
+++ /dev/null
@@ -1,98 +0,0 @@
1SUMMARY = "The Cairo 2D vector graphics library"
2DESCRIPTION = "Cairo is a multi-platform library providing anti-aliased \
3vector-based rendering for multiple target backends. Paths consist \
4of line segments and cubic splines and can be rendered at any width \
5with various join and cap styles. All colors may be specified with \
6optional translucence (opacity/alpha) and combined using the \
7extended Porter/Duff compositing algebra as found in the X Render \
8Extension."
9HOMEPAGE = "http://cairographics.org"
10BUGTRACKER = "http://bugs.freedesktop.org"
11SECTION = "libs"
12
13LICENSE = "(MPL-1.1 | LGPLv2.1) & GPLv3+"
14LICENSE_${PN} = "MPL-1.1 | LGPLv2.1"
15LICENSE_${PN}-dev = "MPL-1.1 | LGPLv2.1"
16LICENSE_${PN}-doc = "MPL-1.1 | LGPLv2.1"
17LICENSE_${PN}-gobject = "MPL-1.1 | LGPLv2.1"
18LICENSE_${PN}-script-interpreter = "MPL-1.1 | LGPLv2.1"
19LICENSE_${PN}-perf-utils = "GPLv3+"
20
21LIC_FILES_CHKSUM = "file://COPYING;md5=e73e999e0c72b5ac9012424fa157ad77"
22
23DEPENDS = "fontconfig glib-2.0 libpng pixman zlib"
24
25SRC_URI = "http://cairographics.org/releases/cairo-${PV}.tar.xz \
26 file://cairo-get_bitmap_surface-bsc1036789-CVE-2017-7475.diff \
27 file://CVE-2018-19876.patch \
28 file://CVE-2019-6461.patch \
29 file://CVE-2019-6462.patch \
30 "
31
32SRC_URI[md5sum] = "f19e0353828269c22bd72e271243a552"
33SRC_URI[sha256sum] = "5e7b29b3f113ef870d1e3ecf8adf21f923396401604bda16d44be45e66052331"
34
35inherit autotools pkgconfig upstream-version-is-even gtk-doc multilib_script
36
37MULTILIB_SCRIPTS = "${PN}-perf-utils:${bindir}/cairo-trace"
38
39X11DEPENDS = "virtual/libx11 libsm libxrender libxext"
40
41PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'directfb', d)} \
42 ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11 xcb', '', d)} \
43 ${@bb.utils.contains('DISTRO_FEATURES', 'x11 opengl', 'opengl', '', d)} \
44 trace"
45PACKAGECONFIG_class-native = "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11 xcb', '', d)}"
46PACKAGECONFIG_class-nativesdk = "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11 xcb', '', d)}"
47
48PACKAGECONFIG[x11] = "--with-x=yes -enable-xlib,--with-x=no --disable-xlib,${X11DEPENDS}"
49PACKAGECONFIG[xcb] = "--enable-xcb,--disable-xcb,libxcb"
50PACKAGECONFIG[directfb] = "--enable-directfb=yes,,directfb"
51PACKAGECONFIG[valgrind] = "--enable-valgrind=yes,--disable-valgrind,valgrind"
52PACKAGECONFIG[egl] = "--enable-egl=yes,--disable-egl,virtual/egl"
53PACKAGECONFIG[glesv2] = "--enable-glesv2,--disable-glesv2,virtual/libgles2"
54PACKAGECONFIG[opengl] = "--enable-gl,--disable-gl,virtual/libgl"
55PACKAGECONFIG[trace] = "--enable-trace,--disable-trace"
56
57EXTRA_OECONF += " \
58 ${@bb.utils.contains('TARGET_FPU', 'soft', '--disable-some-floating-point', '', d)} \
59 --enable-tee \
60"
61
62# We don't depend on binutils so we need to disable this
63export ac_cv_lib_bfd_bfd_openr="no"
64# Ensure we don't depend on LZO
65export ac_cv_lib_lzo2_lzo2a_decompress="no"
66
67do_install_append () {
68 rm -rf ${D}${bindir}/cairo-sphinx
69 rm -rf ${D}${libdir}/cairo/cairo-fdr*
70 rm -rf ${D}${libdir}/cairo/cairo-sphinx*
71 rm -rf ${D}${libdir}/cairo/.debug/cairo-fdr*
72 rm -rf ${D}${libdir}/cairo/.debug/cairo-sphinx*
73 [ ! -d ${D}${bindir} ] ||
74 rmdir -p --ignore-fail-on-non-empty ${D}${bindir}
75 [ ! -d ${D}${libdir}/cairo ] ||
76 rmdir -p --ignore-fail-on-non-empty ${D}${libdir}/cairo
77}
78
79PACKAGES =+ "cairo-gobject cairo-script-interpreter cairo-perf-utils"
80
81SUMMARY_cairo-gobject = "The Cairo library GObject wrapper library"
82DESCRIPTION_cairo-gobject = "A GObject wrapper library for the Cairo API."
83
84SUMMARY_cairo-script-interpreter = "The Cairo library script interpreter"
85DESCRIPTION_cairo-script-interpreter = "The Cairo script interpreter implements \
86CairoScript. CairoScript is used by tracing utilities to enable the ability \
87to replay rendering."
88
89DESCRIPTION_cairo-perf-utils = "The Cairo library performance utilities"
90
91FILES_${PN} = "${libdir}/libcairo.so.*"
92FILES_${PN}-gobject = "${libdir}/libcairo-gobject.so.*"
93FILES_${PN}-script-interpreter = "${libdir}/libcairo-script-interpreter.so.*"
94FILES_${PN}-perf-utils = "${bindir}/cairo-trace* ${libdir}/cairo/*.la ${libdir}/cairo/libcairo-trace.so"
95
96BBCLASSEXTEND = "native nativesdk"
97
98UPSTREAM_CHECK_REGEX = "cairo-(?P<pver>\d+(\.\d+)+).tar.xz"
diff --git a/meta/recipes-graphics/cairo/cairo_1.18.0.bb b/meta/recipes-graphics/cairo/cairo_1.18.0.bb
new file mode 100644
index 0000000000..4c97e973d0
--- /dev/null
+++ b/meta/recipes-graphics/cairo/cairo_1.18.0.bb
@@ -0,0 +1,86 @@
1SUMMARY = "The Cairo 2D vector graphics library"
2DESCRIPTION = "Cairo is a multi-platform library providing anti-aliased \
3vector-based rendering for multiple target backends. Paths consist \
4of line segments and cubic splines and can be rendered at any width \
5with various join and cap styles. All colors may be specified with \
6optional translucence (opacity/alpha) and combined using the \
7extended Porter/Duff compositing algebra as found in the X Render \
8Extension."
9HOMEPAGE = "http://cairographics.org"
10BUGTRACKER = "https://gitlab.freedesktop.org/cairo/cairo/-/issues"
11SECTION = "libs"
12
13LICENSE = "(MPL-1.1 | LGPL-2.1-only) & GPL-3.0-or-later"
14LICENSE:${PN} = "MPL-1.1 | LGPL-2.1-only"
15LICENSE:${PN}-dev = "MPL-1.1 | LGPL-2.1-only"
16LICENSE:${PN}-doc = "MPL-1.1 | LGPL-2.1-only"
17LICENSE:${PN}-gobject = "MPL-1.1 | LGPL-2.1-only"
18LICENSE:${PN}-script-interpreter = "MPL-1.1 | LGPL-2.1-only"
19LICENSE:${PN}-perf-utils = "GPL-3.0-or-later"
20# Adapt the licenses for cairo-dbg and cairo-src depending on whether
21# cairo-trace is being built.
22LICENSE:${PN}-dbg = "(MPL-1.1 | LGPL-2.1-only)${@bb.utils.contains('PACKAGECONFIG', 'trace', ' & GPL-3.0-or-later', '', d)}"
23LICENSE:${PN}-src = "(MPL-1.1 | LGPL-2.1-only)${@bb.utils.contains('PACKAGECONFIG', 'trace', ' & GPL-3.0-or-later', '', d)}"
24
25LIC_FILES_CHKSUM = "file://COPYING;md5=e73e999e0c72b5ac9012424fa157ad77 \
26 ${@bb.utils.contains('PACKAGECONFIG', 'trace', 'file://util/cairo-trace/COPYING-GPL-3;md5=d32239bcb673463ab874e80d47fae504', '', d)}"
27
28
29DEPENDS = "fontconfig freetype glib-2.0 libpng pixman zlib"
30
31SRC_URI = "http://cairographics.org/releases/cairo-${PV}.tar.xz \
32 file://cairo-get_bitmap_surface-bsc1036789-CVE-2017-7475.diff \
33 "
34
35SRC_URI[sha256sum] = "243a0736b978a33dee29f9cca7521733b78a65b5418206fef7bd1c3d4cf10b64"
36
37inherit meson pkgconfig upstream-version-is-even gtk-doc multilib_script
38
39# if qemu usermode isn't available, this value needs to be set statically
40# (otherwise it's determinted by running a small target executable with qemu)
41do_write_config:append() {
42 cat >${WORKDIR}/cairo.cross <<EOF
43[properties]
44ipc_rmid_deferred_release = 'true'
45EOF
46}
47EXTRA_OEMESON:append:class-nativesdk = "${@' --cross-file ${WORKDIR}/cairo.cross' if d.getVar('EXEWRAPPER_ENABLED') == 'False' else ''}"
48EXTRA_OEMESON:append:class-target = "${@' --cross-file ${WORKDIR}/cairo.cross' if d.getVar('EXEWRAPPER_ENABLED') == 'False' else ''}"
49
50GTKDOC_MESON_OPTION = "gtk_doc"
51
52MULTILIB_SCRIPTS = "${PN}-perf-utils:${bindir}/cairo-trace"
53
54PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'xlib xcb', '', d)} trace"
55PACKAGECONFIG[xlib] = "-Dxlib=enabled,-Dxlib=disabled,virtual/libx11 libxrender libxext"
56PACKAGECONFIG[xcb] = "-Dxcb=enabled,-Dxcb=disabled,libxcb"
57# cairo-trace is GPLv3 so add an option to remove it
58PACKAGECONFIG[trace] = ""
59
60do_install:append () {
61 if ! ${@bb.utils.contains('PACKAGECONFIG', 'trace', 'true', 'false', d)}; then
62 rm ${D}${bindir}/cairo-trace ${D}${libdir}/cairo/libcairo-trace.so
63 rmdir --ignore-fail-on-non-empty ${D}${bindir} ${D}${libdir}/cairo
64 fi
65}
66
67PACKAGES =+ "cairo-gobject cairo-script-interpreter cairo-perf-utils"
68
69SUMMARY:cairo-gobject = "The Cairo library GObject wrapper library"
70DESCRIPTION:cairo-gobject = "A GObject wrapper library for the Cairo API."
71
72SUMMARY:cairo-script-interpreter = "The Cairo library script interpreter"
73DESCRIPTION:cairo-script-interpreter = "The Cairo script interpreter implements \
74CairoScript. CairoScript is used by tracing utilities to enable the ability \
75to replay rendering."
76
77DESCRIPTION:cairo-perf-utils = "The Cairo library performance utilities"
78
79FILES:${PN} = "${libdir}/libcairo.so.*"
80FILES:${PN}-gobject = "${libdir}/libcairo-gobject.so.*"
81FILES:${PN}-script-interpreter = "${libdir}/libcairo-script-interpreter.so.*"
82FILES:${PN}-perf-utils = "${bindir}/cairo-* ${libdir}/cairo/libcairo-trace.so ${libdir}/cairo/libcairo-fdr.so"
83
84BBCLASSEXTEND = "native nativesdk"
85
86UPSTREAM_CHECK_REGEX = "cairo-(?P<pver>\d+(\.\d+)+).tar.xz"