* 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
138 lines
3.6 KiB
Makefile
138 lines
3.6 KiB
Makefile
################################################################################
|
|
#
|
|
# libgtk2
|
|
#
|
|
################################################################################
|
|
|
|
LIBGTK2_VERSION_MAJOR = 2.24
|
|
LIBGTK2_VERSION = $(LIBGTK2_VERSION_MAJOR).32
|
|
LIBGTK2_SOURCE = gtk+-$(LIBGTK2_VERSION).tar.xz
|
|
LIBGTK2_SITE = http://ftp.gnome.org/pub/gnome/sources/gtk+/$(LIBGTK2_VERSION_MAJOR)
|
|
LIBGTK2_INSTALL_STAGING = YES
|
|
LIBGTK2_LICENSE = LGPL-2.0+
|
|
LIBGTK2_LICENSE_FILES = COPYING
|
|
# For 0001-reduce-dependencies.patch
|
|
LIBGTK2_AUTORECONF = YES
|
|
|
|
LIBGTK2_CONF_ENV = \
|
|
ac_cv_path_GTK_UPDATE_ICON_CACHE=$(HOST_DIR)/bin/gtk-update-icon-cache \
|
|
ac_cv_path_GDK_PIXBUF_CSOURCE=$(HOST_DIR)/bin/gdk-pixbuf-csource \
|
|
DB2HTML=false
|
|
|
|
LIBGTK2_CONF_OPTS = --disable-glibtest --enable-explicit-deps=no
|
|
|
|
LIBGTK2_DEPENDENCIES = host-pkgconf host-libgtk2 libglib2 cairo pango atk \
|
|
gdk-pixbuf $(TARGET_NLS_DEPENDENCIES)
|
|
|
|
LIBGTK2_MAKE_OPTS = LIBS=$(TARGET_NLS_LIBS)
|
|
|
|
# Xorg dependencies
|
|
LIBGTK2_CONF_OPTS += \
|
|
--with-x \
|
|
--x-includes=$(STAGING_DIR)/usr/include/X11 \
|
|
--x-libraries=$(STAGING_DIR)/usr/lib \
|
|
--with-gdktarget=x11
|
|
LIBGTK2_DEPENDENCIES += \
|
|
fontconfig xlib_libX11 xlib_libXext xlib_libXrender
|
|
|
|
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
|
|
LIBGTK2_CONF_OPTS += --enable-introspection
|
|
LIBGTK2_DEPENDENCIES += gobject-introspection
|
|
else
|
|
LIBGTK2_CONF_OPTS += --disable-introspection
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_XLIB_LIBXINERAMA),y)
|
|
LIBGTK2_CONF_OPTS += --enable-xinerama
|
|
LIBGTK2_DEPENDENCIES += xlib_libXinerama
|
|
else
|
|
LIBGTK2_CONF_OPTS += --disable-xinerama
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_XLIB_LIBXI),y)
|
|
LIBGTK2_CONF_OPTS += --with-xinput=yes
|
|
LIBGTK2_DEPENDENCIES += xlib_libXi
|
|
else
|
|
LIBGTK2_CONF_OPTS += --with-xinput=no
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_XLIB_LIBXRANDR),y)
|
|
LIBGTK2_DEPENDENCIES += xlib_libXrandr
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_XLIB_LIBXCURSOR),y)
|
|
LIBGTK2_DEPENDENCIES += xlib_libXcursor
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_XLIB_LIBXFIXES),y)
|
|
LIBGTK2_DEPENDENCIES += xlib_libXfixes
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_XLIB_LIBXCOMPOSITE),y)
|
|
LIBGTK2_DEPENDENCIES += xlib_libXcomposite
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_XLIB_LIBXDAMAGE),y)
|
|
LIBGTK2_DEPENDENCIES += xlib_libXdamage
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBPNG),y)
|
|
LIBGTK2_DEPENDENCIES += libpng
|
|
else
|
|
LIBGTK2_CONF_OPTS += --without-libpng
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_JPEG),y)
|
|
LIBGTK2_DEPENDENCIES += jpeg
|
|
else
|
|
LIBGTK2_CONF_OPTS += --without-libjpeg
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_TIFF),y)
|
|
LIBGTK2_DEPENDENCIES += tiff
|
|
else
|
|
LIBGTK2_CONF_OPTS += --without-libtiff
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_CUPS),y)
|
|
LIBGTK2_CONF_OPTS += CUPS_CONFIG="$(STAGING_DIR)/usr/bin/cups-config"
|
|
LIBGTK2_DEPENDENCIES += cups
|
|
else
|
|
LIBGTK2_CONF_OPTS += --disable-cups
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGTK2_DEMO),)
|
|
define LIBGTK2_POST_INSTALL_TWEAKS
|
|
rm -rf $(TARGET_DIR)/usr/share/gtk-2.0/demo $(TARGET_DIR)/usr/bin/gtk-demo
|
|
endef
|
|
|
|
LIBGTK2_POST_INSTALL_TARGET_HOOKS += LIBGTK2_POST_INSTALL_TWEAKS
|
|
endif
|
|
|
|
# We do not build a full version of libgtk2 for the host, because that
|
|
# requires compiling Cairo, Pango, ATK and X.org for the
|
|
# host. Therefore, we patch it to remove dependencies, and we hack the
|
|
# build to only build gdk-pixbuf-from-source and
|
|
# gtk-update-icon-cache, which are the host tools needed to build Gtk
|
|
# for the target.
|
|
|
|
HOST_LIBGTK2_DEPENDENCIES = host-libglib2 host-libpng host-gdk-pixbuf
|
|
HOST_LIBGTK2_CONF_OPTS = \
|
|
--disable-static \
|
|
--disable-glibtest \
|
|
--without-libtiff \
|
|
--without-libjpeg \
|
|
--with-gdktarget=none \
|
|
--disable-cups
|
|
|
|
define HOST_LIBGTK2_BUILD_CMDS
|
|
$(HOST_MAKE_ENV) make -C $(@D)/gtk gtk-update-icon-cache
|
|
endef
|
|
|
|
define HOST_LIBGTK2_INSTALL_CMDS
|
|
cp $(@D)/gtk/gtk-update-icon-cache $(HOST_DIR)/bin
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|