2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2010-10-18 15:21:52 +02:00
|
|
|
#
|
|
|
|
# gdk-pixbuf
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2010-10-18 15:21:52 +02:00
|
|
|
|
2021-01-27 20:55:53 +01:00
|
|
|
GDK_PIXBUF_VERSION_MAJOR = 2.42
|
2022-11-05 09:03:48 +01:00
|
|
|
GDK_PIXBUF_VERSION = $(GDK_PIXBUF_VERSION_MAJOR).10
|
2012-04-08 08:24:25 +02:00
|
|
|
GDK_PIXBUF_SOURCE = gdk-pixbuf-$(GDK_PIXBUF_VERSION).tar.xz
|
2023-01-19 10:52:21 +01:00
|
|
|
GDK_PIXBUF_SITE = https://download.gnome.org/sources/gdk-pixbuf/$(GDK_PIXBUF_VERSION_MAJOR)
|
2021-01-28 07:56:31 +01:00
|
|
|
GDK_PIXBUF_LICENSE = LGPL-2.1+
|
2013-06-03 18:03:34 +02:00
|
|
|
GDK_PIXBUF_LICENSE_FILES = COPYING
|
2021-01-11 23:32:31 +01:00
|
|
|
GDK_PIXBUF_CPE_ID_VENDOR = gnome
|
2010-10-18 15:21:52 +02:00
|
|
|
GDK_PIXBUF_INSTALL_STAGING = YES
|
2016-03-23 22:17:49 +01:00
|
|
|
GDK_PIXBUF_DEPENDENCIES = \
|
|
|
|
host-gdk-pixbuf host-libglib2 host-pkgconf \
|
2016-03-25 18:35:33 +01:00
|
|
|
libglib2 $(if $(BR2_ENABLE_LOCALE),,libiconv)
|
2016-04-06 01:31:24 +02:00
|
|
|
HOST_GDK_PIXBUF_DEPENDENCIES = host-libpng host-pkgconf host-libglib2
|
2010-10-18 15:21:52 +02:00
|
|
|
|
2021-01-27 20:55:53 +01:00
|
|
|
GDK_PIXBUF_CONF_OPTS = \
|
|
|
|
-Dgio_sniffing=false \
|
2022-09-14 08:31:08 +02:00
|
|
|
-Dtests=false \
|
2021-01-27 20:55:53 +01:00
|
|
|
-Dinstalled_tests=false \
|
|
|
|
-Dman=false
|
2010-10-18 15:21:52 +02:00
|
|
|
|
2021-01-27 20:55:53 +01:00
|
|
|
HOST_GDK_PIXBUF_CONF_OPTS = \
|
|
|
|
-Dgio_sniffing=false \
|
2022-09-14 08:31:08 +02:00
|
|
|
-Dtests=false \
|
2021-01-27 20:55:53 +01:00
|
|
|
-Dinstalled_tests=false \
|
|
|
|
-Dintrospection=disabled \
|
package/gdk-pixbuf: fix run with per-package directory
gdk-pixbuf is based on plugins (modules in gdk-pixbuf parlance) that are
provided either by the gdk-pixbuf package itself, or be installed by
third-party packages, like librsvg. At runtime, those plugins get loaded
by helper function in the gdk-pixbuf library.
The location where to find those modules is currently hard-coded at
build time, to the location where gdb-pixbuf is installed.. This means
that host-packages that install image-conversion utilities will try to
look in the path where gdk-pixbuf was installed.
With per-package directories, this fails to find any module that was
installed bu a third-party package. For example, the module for loading
an SVG provided by librsvg, so it is not present in the PPD of
gdk-pixbuf, and thus loading an SVG (e.g. to convert it to another
format, like adwaita-icon-theme does) will fail with:
Can't load file: Unrecognized image file format
However, gdk-pixbuf can be configured so as to look for the modules
relative to where the program is run from, rather than hard-coding the
location at build time. This is exactly what we need in the PPD case
Additionally, even without PPD, this would fail in a similar manner in
the SDK, as that can be relocated too.
So we unconditionally enable the relocatable option, but only for the
host variant (there is no reason to enable it for the target, as it is
not going to be relocated).
Fixes:
- http://autobuild.buildroot.org/results/0e00059b09b4445eaaec1030997883187c6a80d6
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
[yann.morin.1998@free.fr: reword the already-good commit log]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-02-20 13:16:36 +01:00
|
|
|
-Drelocatable=true \
|
2021-01-27 20:55:53 +01:00
|
|
|
-Dman=false
|
2010-10-18 15:21:52 +02:00
|
|
|
|
2021-02-07 18:56:12 +01:00
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
|
|
GDK_PIXBUF_CONF_OPTS += -Dbuiltin_loaders=all
|
|
|
|
endif
|
|
|
|
|
2020-06-06 10:34:37 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
|
2021-01-27 20:55:53 +01:00
|
|
|
GDK_PIXBUF_CONF_OPTS += -Dintrospection=enabled
|
2020-06-06 10:34:37 +02:00
|
|
|
GDK_PIXBUF_DEPENDENCIES += gobject-introspection
|
|
|
|
else
|
2021-01-27 20:55:53 +01:00
|
|
|
GDK_PIXBUF_CONF_OPTS += -Dintrospection=disabled
|
2020-06-06 10:34:37 +02:00
|
|
|
endif
|
|
|
|
|
2021-01-27 20:55:53 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_LIBPNG),y)
|
2022-07-27 11:16:07 +02:00
|
|
|
GDK_PIXBUF_CONF_OPTS += -Dpng=enabled
|
2010-10-18 15:21:52 +02:00
|
|
|
GDK_PIXBUF_DEPENDENCIES += libpng
|
2021-01-27 20:55:53 +01:00
|
|
|
else
|
2022-07-27 11:16:07 +02:00
|
|
|
GDK_PIXBUF_CONF_OPTS += -Dpng=disabled
|
2010-10-18 15:21:52 +02:00
|
|
|
endif
|
|
|
|
|
2021-01-27 20:55:53 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_JPEG),y)
|
2022-07-27 11:16:07 +02:00
|
|
|
GDK_PIXBUF_CONF_OPTS += -Djpeg=enabled
|
|
|
|
HOST_GDK_PIXBUF_CONF_OPTS += -Djpeg=enabled
|
2010-10-18 15:21:52 +02:00
|
|
|
GDK_PIXBUF_DEPENDENCIES += jpeg
|
2016-04-06 01:31:24 +02:00
|
|
|
HOST_GDK_PIXBUF_DEPENDENCIES += host-libjpeg
|
2021-01-27 20:55:53 +01:00
|
|
|
else
|
2022-07-27 11:16:07 +02:00
|
|
|
GDK_PIXBUF_CONF_OPTS += -Djpeg=disabled
|
|
|
|
HOST_GDK_PIXBUF_CONF_OPTS += -Djpeg=disabled
|
2010-10-18 15:21:52 +02:00
|
|
|
endif
|
|
|
|
|
2021-01-27 20:55:53 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_TIFF),y)
|
2022-07-27 11:16:07 +02:00
|
|
|
GDK_PIXBUF_CONF_OPTS += -Dtiff=enabled
|
|
|
|
HOST_GDK_PIXBUF_CONF_OPTS += -Dtiff=enabled
|
2016-04-06 01:31:24 +02:00
|
|
|
GDK_PIXBUF_DEPENDENCIES += tiff
|
|
|
|
HOST_GDK_PIXBUF_DEPENDENCIES += host-tiff
|
2021-01-27 20:55:53 +01:00
|
|
|
else
|
2022-07-27 11:16:07 +02:00
|
|
|
GDK_PIXBUF_CONF_OPTS += -Dtiff=disabled
|
|
|
|
HOST_GDK_PIXBUF_CONF_OPTS += -Dtiff=disabled
|
2012-08-09 13:00:09 +02:00
|
|
|
endif
|
|
|
|
|
2016-03-23 22:17:49 +01:00
|
|
|
# gdk-pixbuf requires the loaders.cache file populated to work properly
|
|
|
|
# Rather than doing so at runtime, since the fs can be read-only, do so
|
|
|
|
# here after building and installing to target.
|
2022-03-22 20:00:32 +01:00
|
|
|
# And since the cache file will contain relative host directory names we
|
|
|
|
# need to prepend them with /usr/.
|
2016-03-25 18:35:32 +01:00
|
|
|
ifeq ($(BR2_STATIC_LIBS),)
|
2016-03-23 22:17:49 +01:00
|
|
|
define GDK_PIXBUF_UPDATE_CACHE
|
2017-07-05 13:14:21 +02:00
|
|
|
GDK_PIXBUF_MODULEDIR=$(HOST_DIR)/lib/gdk-pixbuf-2.0/2.10.0/loaders \
|
2017-07-05 13:14:19 +02:00
|
|
|
$(HOST_DIR)/bin/gdk-pixbuf-query-loaders \
|
2016-03-23 22:17:49 +01:00
|
|
|
> $(TARGET_DIR)/usr/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache
|
2022-03-22 20:00:32 +01:00
|
|
|
$(SED) 's,^"lib,"/usr/lib,g' \
|
2016-03-23 22:17:49 +01:00
|
|
|
$(TARGET_DIR)/usr/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache
|
2010-11-04 09:18:57 +01:00
|
|
|
endef
|
2016-03-23 22:17:49 +01:00
|
|
|
GDK_PIXBUF_POST_INSTALL_TARGET_HOOKS += GDK_PIXBUF_UPDATE_CACHE
|
2016-03-25 18:35:32 +01:00
|
|
|
endif
|
2010-11-04 09:18:57 +01:00
|
|
|
|
2017-02-22 20:14:08 +01:00
|
|
|
# Target gdk-pixbuf needs loaders.cache populated to build for the
|
|
|
|
# thumbnailer. Use the host-built since it matches the target options
|
|
|
|
# regarding mime types (which is the used information).
|
|
|
|
define GDK_PIXBUF_COPY_LOADERS_CACHE
|
2017-07-05 13:14:21 +02:00
|
|
|
cp -f $(HOST_DIR)/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache \
|
2017-02-22 20:14:08 +01:00
|
|
|
$(@D)/gdk-pixbuf
|
|
|
|
endef
|
2017-02-23 20:44:48 +01:00
|
|
|
GDK_PIXBUF_PRE_BUILD_HOOKS += GDK_PIXBUF_COPY_LOADERS_CACHE
|
2017-02-22 20:14:08 +01:00
|
|
|
|
2021-01-27 20:55:53 +01:00
|
|
|
$(eval $(meson-package))
|
|
|
|
$(eval $(host-meson-package))
|