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-fpu.inc6
-rw-r--r--meta/recipes-graphics/cairo/cairo.inc37
-rw-r--r--meta/recipes-graphics/cairo/cairo_1.12.16.bb45
3 files changed, 88 insertions, 0 deletions
diff --git a/meta/recipes-graphics/cairo/cairo-fpu.inc b/meta/recipes-graphics/cairo/cairo-fpu.inc
new file mode 100644
index 0000000000..ef72e8904b
--- /dev/null
+++ b/meta/recipes-graphics/cairo/cairo-fpu.inc
@@ -0,0 +1,6 @@
1
2def get_cairo_fpu_setting(bb, d):
3 if d.getVar('TARGET_FPU', True) in [ 'soft' ]:
4 return "--disable-some-floating-point"
5 return ""
6
diff --git a/meta/recipes-graphics/cairo/cairo.inc b/meta/recipes-graphics/cairo/cairo.inc
new file mode 100644
index 0000000000..b15fbc94b9
--- /dev/null
+++ b/meta/recipes-graphics/cairo/cairo.inc
@@ -0,0 +1,37 @@
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"
12LICENSE = "MPL-1 & LGPLv2.1"
13X11DEPENDS = "virtual/libx11 libsm libxrender libxext"
14DEPENDS = "libpng fontconfig pixman glib-2.0 zlib"
15
16PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'x11', 'x11', '', d)} \
17 ${@base_contains('DISTRO_FEATURES', 'directfb', 'directfb', '', d)}"
18PACKAGECONFIG[x11] = "--with-x=yes,--without-x,${X11DEPENDS}"
19PACKAGECONFIG[directfb] = "--enable-directfb=yes,,directfb"
20PACKAGECONFIG[valgrind] = "--enable-valgrind=yes,--disable-valgrind,valgrind"
21PACKAGECONFIG[egl] = "--enable-egl=yes,--disable-egl,virtual/egl"
22PACKAGECONFIG[glesv2] = "--enable-glesv2,--disable-glesv2,virtual/libgles2"
23
24#check for TARGET_FPU=soft and inform configure of the result so it can disable some floating points
25require cairo-fpu.inc
26EXTRA_OECONF += "${@get_cairo_fpu_setting(bb, d)} \
27 --enable-tee \
28 "
29
30inherit autotools pkgconfig
31
32# We don't depend on binutils so we need to disable this
33export ac_cv_lib_bfd_bfd_openr="no"
34# Ensure we don't depend on LZO
35export ac_cv_lib_lzo2_lzo2a_decompress="no"
36
37BBCLASSEXTEND = "native"
diff --git a/meta/recipes-graphics/cairo/cairo_1.12.16.bb b/meta/recipes-graphics/cairo/cairo_1.12.16.bb
new file mode 100644
index 0000000000..246bd0be64
--- /dev/null
+++ b/meta/recipes-graphics/cairo/cairo_1.12.16.bb
@@ -0,0 +1,45 @@
1require cairo.inc
2
3LIC_FILES_CHKSUM = "file://COPYING;md5=e73e999e0c72b5ac9012424fa157ad77"
4
5SRC_URI = "http://cairographics.org/releases/cairo-${PV}.tar.xz"
6
7SRC_URI[md5sum] = "a1304edcdc99282f478b995ee5f8f854"
8SRC_URI[sha256sum] = "2505959eb3f1de3e1841023b61585bfd35684b9733c7b6a3643f4f4cbde6d846"
9
10PACKAGES =+ "cairo-gobject cairo-script-interpreter cairo-perf-utils"
11
12SUMMARY_${PN} = "The Cairo 2D vector graphics library"
13DESCRIPTION_${PN} = "Cairo is a multi-platform library providing anti-aliased \
14vector-based rendering for multiple target backends. Paths consist \
15of line segments and cubic splines and can be rendered at any width \
16with various join and cap styles. All colors may be specified with \
17optional translucence (opacity/alpha) and combined using the \
18extended Porter/Duff compositing algebra as found in the X Render \
19Extension."
20
21SUMMARY_cairo-gobject = "The Cairo library GObject wrapper library"
22DESCRIPTION_cairo-gobject = "A GObject wrapper library for the Cairo API."
23
24SUMMARY_cairo-script-interpreter = "The Cairo library script interpreter"
25DESCRIPTION_cairo-script-interpreter = "The Cairo script interpreter implements \
26CairoScript. CairoScript is used by tracing utilities to enable the ability \
27to replay rendering."
28
29DESCRIPTION_cairo-perf-utils = "The Cairo library performance utilities"
30
31FILES_${PN} = "${libdir}/libcairo.so.*"
32FILES_${PN}-dev += "${libdir}/cairo/*.la ${libdir}/cairo/*.so"
33#FILES_${PN}-dbg += "${libdir}/cairo/.debug"
34#FILES_${PN}-staticdev += "${libdir}/cairo/*.a"
35FILES_cairo-gobject = "${libdir}/libcairo-gobject.so.*"
36FILES_cairo-script-interpreter = "${libdir}/libcairo-script-interpreter.so.*"
37FILES_cairo-perf-utils = "${bindir}/cairo-trace ${libdir}/cairo/libcairo-trace.so.*"
38
39do_install_append () {
40 rm -rf ${D}${bindir}/cairo-sphinx
41 rm -rf ${D}${libdir}/cairo/cairo-fdr*
42 rm -rf ${D}${libdir}/cairo/cairo-sphinx*
43 rm -rf ${D}${libdir}/cairo/.debug/cairo-fdr*
44 rm -rf ${D}${libdir}/cairo/.debug/cairo-sphinx*
45}