2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2007-01-11 00:57:40 +01:00
|
|
|
#
|
|
|
|
# cairo
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-06-06 01:53:25 +02:00
|
|
|
|
2019-09-08 18:09:09 +02:00
|
|
|
CAIRO_VERSION = 1.16.0
|
2012-12-19 13:42:22 +01:00
|
|
|
CAIRO_SOURCE = cairo-$(CAIRO_VERSION).tar.xz
|
2017-03-30 15:43:42 +02:00
|
|
|
CAIRO_LICENSE = LGPL-2.1 or MPL-1.1 (library)
|
2017-03-17 00:02:06 +01:00
|
|
|
CAIRO_LICENSE_FILES = COPYING COPYING-LGPL-2.1 COPYING-MPL-1.1
|
2019-09-08 18:09:09 +02:00
|
|
|
CAIRO_SITE = http://cairographics.org/releases
|
2008-03-06 18:56:30 +01:00
|
|
|
CAIRO_INSTALL_STAGING = YES
|
|
|
|
|
2016-08-08 06:46:17 +02:00
|
|
|
# relocation truncated to fit: R_68K_GOT16O
|
|
|
|
ifeq ($(BR2_m68k_cf),y)
|
|
|
|
CAIRO_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -mxgot"
|
|
|
|
endif
|
|
|
|
|
2013-05-14 03:57:11 +02:00
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),)
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_ENV += CPPFLAGS="$(TARGET_CPPFLAGS) -DCAIRO_NO_MUTEX=1"
|
2013-05-14 03:57:11 +02:00
|
|
|
endif
|
|
|
|
|
cairo, harfbuzz: rework atomic dependencies
This commit handles the reverse dependency tree of cairo in terms of
atomic dependencies. There are two main changes:
- cairo in fact no longer needs atomic operations. It can perfectly
build without any __sync built-in, as was tested using an ARC
toolchain without atomics, and a SPARC toolchain. Optionally, Cairo
can use the __atomic builtins provided by gcc >= 4.7, so support
for this is added as well. Thanks to this change, the
BR2_ARCH_HAS_ATOMICS dependency is removed from cairo and all its
reverse dependencies.
- harfbuzz does require the __sync built-in for 4 bytes integers, so
we add a dependency on BR2_TOOLCHAIN_HAS_SYNC_4 to harfbuzz and all
its reverse dependency, the main one being the pango package. Due
to this, the vast majority of gtk-related packages are moved to a
dependency on BR2_ARCH_HAS_ATOMICS (which used to be due to cairo)
to a dependency on BR2_TOOLCHAIN_HAS_SYNC_4 (due to pango ->
harfbuzz).
In detail:
- cairo
Remove BR2_ARCH_HAS_ATOMICS dependency, link against -latomic when
gcc >= 4.8 in order to use the __atomic functions.
- harfbuzz
Add dependency on BR2_TOOLCHAIN_HAS_SYNC_4
- cairomm, gst-plugins-good, gst1-plugins-good, libgdiplus,
libsvg-cairo, weston
Remove BR2_ARCH_HAS_ATOMICS dependency (since cairo no longer needs
atomics)
- enlightenment, cwiid, gst-plugins-bad, gst-plugins-base,
gst1-plugins-bad, gst1-plugins-base, gtkmm3,
libevas-generic-loaders, libfm, libgail, libgtk2, libgtk3, librsvg,
openbox, opencv, opencv3, pango, pangomm, pcmanfm, pinentry,
rrdtool, webkit, webkitgtk24, xscreensaver
Switch from a BR2_ARCH_HAS_ATOMICS dependency to a
BR2_TOOLCHAIN_HAS_SYNC_4 (they depend on pango, harfbuzz, gtk, or
some other related package)
- directfb
Remove BR2_ARCH_ATOMICS dependency of the BR2_PACKAGE_DIRECTFB_SVG
(since cairo can build without atomics), but add a
BR2_TOOLCHAIN_HAS_SYNC_4 dependency on BR2_PACKAGE_DIRECTFB itself
since it does use __sync built-ins. This replaces the !BR2_sparc
dependency.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2016-02-02 16:31:28 +01:00
|
|
|
# cairo can use C++11 atomics when available, so we need to link with
|
|
|
|
# libatomic for the architectures who need libatomic.
|
2016-03-06 21:47:17 +01:00
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
|
cairo, harfbuzz: rework atomic dependencies
This commit handles the reverse dependency tree of cairo in terms of
atomic dependencies. There are two main changes:
- cairo in fact no longer needs atomic operations. It can perfectly
build without any __sync built-in, as was tested using an ARC
toolchain without atomics, and a SPARC toolchain. Optionally, Cairo
can use the __atomic builtins provided by gcc >= 4.7, so support
for this is added as well. Thanks to this change, the
BR2_ARCH_HAS_ATOMICS dependency is removed from cairo and all its
reverse dependencies.
- harfbuzz does require the __sync built-in for 4 bytes integers, so
we add a dependency on BR2_TOOLCHAIN_HAS_SYNC_4 to harfbuzz and all
its reverse dependency, the main one being the pango package. Due
to this, the vast majority of gtk-related packages are moved to a
dependency on BR2_ARCH_HAS_ATOMICS (which used to be due to cairo)
to a dependency on BR2_TOOLCHAIN_HAS_SYNC_4 (due to pango ->
harfbuzz).
In detail:
- cairo
Remove BR2_ARCH_HAS_ATOMICS dependency, link against -latomic when
gcc >= 4.8 in order to use the __atomic functions.
- harfbuzz
Add dependency on BR2_TOOLCHAIN_HAS_SYNC_4
- cairomm, gst-plugins-good, gst1-plugins-good, libgdiplus,
libsvg-cairo, weston
Remove BR2_ARCH_HAS_ATOMICS dependency (since cairo no longer needs
atomics)
- enlightenment, cwiid, gst-plugins-bad, gst-plugins-base,
gst1-plugins-bad, gst1-plugins-base, gtkmm3,
libevas-generic-loaders, libfm, libgail, libgtk2, libgtk3, librsvg,
openbox, opencv, opencv3, pango, pangomm, pcmanfm, pinentry,
rrdtool, webkit, webkitgtk24, xscreensaver
Switch from a BR2_ARCH_HAS_ATOMICS dependency to a
BR2_TOOLCHAIN_HAS_SYNC_4 (they depend on pango, harfbuzz, gtk, or
some other related package)
- directfb
Remove BR2_ARCH_ATOMICS dependency of the BR2_PACKAGE_DIRECTFB_SVG
(since cairo can build without atomics), but add a
BR2_TOOLCHAIN_HAS_SYNC_4 dependency on BR2_PACKAGE_DIRECTFB itself
since it does use __sync built-ins. This replaces the !BR2_sparc
dependency.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2016-02-02 16:31:28 +01:00
|
|
|
CAIRO_CONF_ENV += LIBS="-latomic"
|
|
|
|
endif
|
|
|
|
|
2014-09-27 21:32:44 +02:00
|
|
|
CAIRO_CONF_OPTS = \
|
2012-10-14 02:28:37 +02:00
|
|
|
--enable-trace=no \
|
|
|
|
--enable-interpreter=no
|
|
|
|
|
2012-10-22 17:47:52 +02:00
|
|
|
CAIRO_DEPENDENCIES = host-pkgconf fontconfig pixman
|
2009-03-12 11:21:21 +01:00
|
|
|
|
2015-04-19 11:48:19 +02:00
|
|
|
# Just the bare minimum to make other host-* packages happy
|
|
|
|
HOST_CAIRO_CONF_OPTS = \
|
|
|
|
--enable-trace=no \
|
|
|
|
--enable-interpreter=no \
|
|
|
|
--disable-directfb \
|
|
|
|
--enable-ft \
|
|
|
|
--disable-gobject \
|
|
|
|
--disable-glesv2 \
|
|
|
|
--disable-vg \
|
|
|
|
--disable-xlib \
|
|
|
|
--disable-xcb \
|
|
|
|
--without-x \
|
|
|
|
--disable-xlib-xrender \
|
|
|
|
--disable-ps \
|
|
|
|
--disable-pdf \
|
|
|
|
--enable-png \
|
|
|
|
--disable-script \
|
|
|
|
--disable-svg \
|
|
|
|
--disable-tee \
|
|
|
|
--disable-xml
|
|
|
|
HOST_CAIRO_DEPENDENCIES = \
|
|
|
|
host-freetype \
|
|
|
|
host-fontconfig \
|
|
|
|
host-libpng \
|
|
|
|
host-pixman \
|
|
|
|
host-pkgconf
|
|
|
|
|
2014-09-12 17:50:10 +02:00
|
|
|
# DirectFB svg support rely on Cairo and Cairo DirectFB support depends on
|
|
|
|
# DirectFB. Break circular dependency by disabling DirectFB support in Cairo
|
|
|
|
# (which is experimental)
|
|
|
|
ifeq ($(BR2_PACKAGE_DIRECTFB)x$(BR2_PACKAGE_DIRECTFB_SVG),yx)
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --enable-directfb
|
|
|
|
CAIRO_DEPENDENCIES += directfb
|
2009-03-12 11:21:21 +01:00
|
|
|
else
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --disable-directfb
|
2009-03-12 11:21:21 +01:00
|
|
|
endif
|
|
|
|
|
2014-07-08 15:57:06 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_FREETYPE),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --enable-ft
|
|
|
|
CAIRO_DEPENDENCIES += freetype
|
2014-07-08 15:57:06 +02:00
|
|
|
else
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --disable-ft
|
2014-07-08 15:57:06 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGLIB2),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --enable-gobject
|
|
|
|
CAIRO_DEPENDENCIES += libglib2
|
2014-07-08 15:57:06 +02:00
|
|
|
else
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --disable-gobject
|
2014-07-08 15:57:06 +02:00
|
|
|
endif
|
|
|
|
|
2016-03-26 20:35:07 +01:00
|
|
|
# Can use GL or GLESv2 but not both
|
|
|
|
ifeq ($(BR2_PACKAGE_HAS_LIBGL),y)
|
|
|
|
CAIRO_CONF_OPTS += --enable-gl --disable-glesv2
|
|
|
|
CAIRO_DEPENDENCIES += libgl
|
|
|
|
else
|
2014-04-05 17:21:38 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_HAS_LIBGLES),y)
|
2016-03-26 20:35:07 +01:00
|
|
|
CAIRO_CONF_OPTS += --disable-gl --enable-glesv2
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_DEPENDENCIES += libgles
|
2013-12-17 02:17:33 +01:00
|
|
|
else
|
2016-03-26 20:35:07 +01:00
|
|
|
CAIRO_CONF_OPTS += --disable-gl --disable-glesv2
|
|
|
|
endif
|
2013-12-17 02:17:33 +01:00
|
|
|
endif
|
|
|
|
|
2014-04-05 17:21:41 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_HAS_LIBOPENVG),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --enable-vg
|
|
|
|
CAIRO_DEPENDENCIES += libopenvg
|
2013-12-17 02:17:33 +01:00
|
|
|
else
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --disable-vg
|
2013-12-17 02:17:33 +01:00
|
|
|
endif
|
|
|
|
|
2016-02-21 15:47:29 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_LZO),y)
|
|
|
|
CAIRO_DEPENDENCIES += lzo
|
|
|
|
endif
|
|
|
|
|
2009-07-17 15:42:40 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_XORG7),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --enable-xlib --enable-xcb --with-x
|
|
|
|
CAIRO_DEPENDENCIES += xlib_libX11 xlib_libXext
|
2009-03-12 11:21:21 +01:00
|
|
|
else
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --disable-xlib --disable-xcb --without-x
|
2009-03-12 11:21:21 +01:00
|
|
|
endif
|
|
|
|
|
2012-12-19 13:42:22 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_XLIB_LIBXRENDER),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --enable-xlib-xrender
|
|
|
|
CAIRO_DEPENDENCIES += xlib_libXrender
|
2012-12-19 13:42:22 +01:00
|
|
|
else
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --disable-xlib-xrender
|
2012-12-19 13:42:22 +01:00
|
|
|
endif
|
|
|
|
|
2009-03-12 11:21:21 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_CAIRO_PS),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --enable-ps
|
|
|
|
CAIRO_DEPENDENCIES += zlib
|
2009-03-12 11:21:21 +01:00
|
|
|
else
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --disable-ps
|
2008-03-06 18:56:30 +01:00
|
|
|
endif
|
2007-01-11 00:57:40 +01:00
|
|
|
|
2009-03-12 11:21:21 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_CAIRO_PDF),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --enable-pdf
|
|
|
|
CAIRO_DEPENDENCIES += zlib
|
2009-03-12 11:21:21 +01:00
|
|
|
else
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --disable-pdf
|
2009-03-12 11:21:21 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_CAIRO_PNG),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --enable-png
|
|
|
|
CAIRO_DEPENDENCIES += libpng
|
2009-03-12 11:21:21 +01:00
|
|
|
else
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --disable-png
|
2009-03-12 11:21:21 +01:00
|
|
|
endif
|
|
|
|
|
2012-12-19 13:42:22 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_CAIRO_SCRIPT),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --enable-script
|
2012-12-19 13:42:22 +01:00
|
|
|
else
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --disable-script
|
2012-12-19 13:42:22 +01:00
|
|
|
endif
|
|
|
|
|
2009-03-12 11:21:21 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_CAIRO_SVG),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --enable-svg
|
2009-03-12 11:21:21 +01:00
|
|
|
else
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --disable-svg
|
2009-03-12 11:21:21 +01:00
|
|
|
endif
|
2007-01-11 00:57:40 +01:00
|
|
|
|
2012-08-11 23:57:11 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_CAIRO_TEE),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --enable-tee
|
2012-08-11 23:57:11 +02:00
|
|
|
else
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --disable-tee
|
2012-08-11 23:57:11 +02:00
|
|
|
endif
|
|
|
|
|
2012-12-19 13:42:22 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_CAIRO_XML),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --enable-xml
|
2012-12-19 13:42:22 +01:00
|
|
|
else
|
2015-03-31 09:21:57 +02:00
|
|
|
CAIRO_CONF_OPTS += --disable-xml
|
2012-12-19 13:42:22 +01:00
|
|
|
endif
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|
2015-04-19 11:48:19 +02:00
|
|
|
$(eval $(host-autotools-package))
|