* Update buildroot-patches for 2020.11-rc1 buildroot * Update buildroot to 2020.11-rc1 Signed-off-by: Stefan Agner <stefan@agner.ch> * Don't rely on sfdisk --list-free output The --list-free (-F) argument does not allow machine readable mode. And it seems that the output format changes over time (different spacing, using size postfixes instead of raw blocks). Use sfdisk json output and calculate free partition space ourselfs. This works for 2.35 and 2.36 and is more robust since we rely on output which is meant for scripts to parse. * Migrate defconfigs for Buildroot 2020.11-rc1 In particular, rename BR2_TARGET_UBOOT_BOOT_SCRIPT(_SOURCE) to BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT(_SOURCE). * Rebase/remove systemd patches for systemd 246 * Drop apparmor/libapparmor from buildroot-external * hassos-persists: use /run as directory for lockfiles The U-Boot tools use /var/lock by default which is not created any more by systemd by default (it is under tmpfiles legacy.conf, which we no longer install). * Disable systemd-update-done.service The service is not suited for pure read-only systems. In particular the service needs to be able to write a file in /etc and /var. Remove the service. Note: This is a static service and cannot be removed using systemd-preset. * Disable apparmor.service for now The service loads all default profiles. Some might actually cause problems. E.g. the profile for ping seems not to match our setup for /etc/resolv.conf: [85503.634653] audit: type=1400 audit(1605286002.684:236): apparmor="DENIED" operation="open" profile="ping" name="/run/resolv.conf" pid=27585 comm="ping" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
98 lines
3.1 KiB
Makefile
98 lines
3.1 KiB
Makefile
################################################################################
|
|
#
|
|
# gdk-pixbuf
|
|
#
|
|
################################################################################
|
|
|
|
GDK_PIXBUF_VERSION_MAJOR = 2.36
|
|
GDK_PIXBUF_VERSION = $(GDK_PIXBUF_VERSION_MAJOR).12
|
|
GDK_PIXBUF_SOURCE = gdk-pixbuf-$(GDK_PIXBUF_VERSION).tar.xz
|
|
GDK_PIXBUF_SITE = http://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/$(GDK_PIXBUF_VERSION_MAJOR)
|
|
GDK_PIXBUF_LICENSE = LGPL-2.0+
|
|
GDK_PIXBUF_LICENSE_FILES = COPYING
|
|
GDK_PIXBUF_INSTALL_STAGING = YES
|
|
GDK_PIXBUF_DEPENDENCIES = \
|
|
host-gdk-pixbuf host-libglib2 host-pkgconf \
|
|
libglib2 $(if $(BR2_ENABLE_LOCALE),,libiconv)
|
|
HOST_GDK_PIXBUF_DEPENDENCIES = host-libpng host-pkgconf host-libglib2
|
|
|
|
GDK_PIXBUF_CONF_ENV = \
|
|
ac_cv_path_GLIB_GENMARSHAL=$(LIBGLIB2_HOST_BINARY) \
|
|
gio_can_sniff=no
|
|
|
|
HOST_GDK_PIXBUF_CONF_ENV = \
|
|
gio_can_sniff=no
|
|
|
|
GDK_PIXBUF_CONF_OPTS = --disable-glibtest
|
|
HOST_GDK_PIXBUF_CONF_OPTS = --disable-introspection
|
|
|
|
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
|
|
GDK_PIXBUF_CONF_OPTS += --enable-introspection
|
|
GDK_PIXBUF_DEPENDENCIES += gobject-introspection
|
|
else
|
|
GDK_PIXBUF_CONF_OPTS += --disable-introspection
|
|
endif
|
|
|
|
ifneq ($(BR2_PACKAGE_LIBPNG),y)
|
|
GDK_PIXBUF_CONF_OPTS += --without-libpng
|
|
else
|
|
GDK_PIXBUF_DEPENDENCIES += libpng
|
|
endif
|
|
|
|
ifneq ($(BR2_PACKAGE_JPEG),y)
|
|
HOST_GDK_PIXBUF_CONF_OPTS += --without-libjpeg
|
|
GDK_PIXBUF_CONF_OPTS += --without-libjpeg
|
|
else
|
|
GDK_PIXBUF_DEPENDENCIES += jpeg
|
|
HOST_GDK_PIXBUF_DEPENDENCIES += host-libjpeg
|
|
endif
|
|
|
|
ifneq ($(BR2_PACKAGE_TIFF),y)
|
|
GDK_PIXBUF_CONF_OPTS += --without-libtiff
|
|
HOST_GDK_PIXBUF_CONF_OPTS += --without-libtiff
|
|
else
|
|
GDK_PIXBUF_DEPENDENCIES += tiff
|
|
GDK_PIXBUF_CONF_ENV += \
|
|
LIBS="`$(PKG_CONFIG_HOST_BINARY) --libs libtiff-4`"
|
|
HOST_GDK_PIXBUF_DEPENDENCIES += host-tiff
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_XLIB_LIBX11),y)
|
|
GDK_PIXBUF_CONF_OPTS += --with-x11
|
|
GDK_PIXBUF_DEPENDENCIES += xlib_libX11
|
|
endif
|
|
|
|
# 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.
|
|
# And since the cache file will contain absolute host directory names we
|
|
# need to sanitize (strip) them.
|
|
ifeq ($(BR2_STATIC_LIBS),)
|
|
define GDK_PIXBUF_UPDATE_CACHE
|
|
GDK_PIXBUF_MODULEDIR=$(HOST_DIR)/lib/gdk-pixbuf-2.0/2.10.0/loaders \
|
|
$(HOST_DIR)/bin/gdk-pixbuf-query-loaders \
|
|
> $(TARGET_DIR)/usr/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache
|
|
$(SED) "s,$(HOST_DIR)/lib,/usr/lib,g" \
|
|
$(TARGET_DIR)/usr/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache
|
|
endef
|
|
GDK_PIXBUF_POST_INSTALL_TARGET_HOOKS += GDK_PIXBUF_UPDATE_CACHE
|
|
endif
|
|
|
|
# Tests don't build correctly with uClibc
|
|
define GDK_PIXBUF_DISABLE_TESTS
|
|
$(SED) 's/ tests//' $(@D)/Makefile.in
|
|
endef
|
|
GDK_PIXBUF_POST_PATCH_HOOKS += GDK_PIXBUF_DISABLE_TESTS
|
|
|
|
# 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
|
|
cp -f $(HOST_DIR)/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache \
|
|
$(@D)/gdk-pixbuf
|
|
endef
|
|
GDK_PIXBUF_PRE_BUILD_HOOKS += GDK_PIXBUF_COPY_LOADERS_CACHE
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|