update 3.24.28 to 3.24.30 Overview of Changes in GTK+ 3.24.29 =================================== * Input: - Look for a Compose file in the right place (~/.config/gtk-3.0) - Revert some Compose sequence changes (mainly around dead acute and apostrophe) - Consume all key events during preedit, to avoid unexpected interactions - Ignore more modifiers during preedit, to allow using 3rd and 5th level choosers - Fix handling of cursor positions in non-ASCII preedit text * GtkSpinButton: - Interpret localized digits * GtkScale: - Fix sporadic criticals * GtkScrolledWindow: - Cancel overshoot on size changes - Avoid criticals with non-overlay scrollbars * GtkFileChooser: - Handle smb mounts better * GtkListBox: - Fix extending multi-selections * Fix a possible crash in gtk_show_uri * Wayland: - Improve font settings fallback * X11: - Avoid log spam on exit - Don't beep on untrusted displays * OS X: - Fix building on OS X 10.11 - Add gdk-quartz-cocoa-access.h with api that provides access to native objects * Translation updates: Dutch Nepali Swedish
39 lines
1.7 KiB
Makefile
39 lines
1.7 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2017 Escalade
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="gtk3"
|
|
PKG_VERSION="3.24.30"
|
|
PKG_SHA256="ba75bfff320ad1f4cfbee92ba813ec336322cc3c660d406aad014b07087a3ba9"
|
|
PKG_LICENSE="LGPL"
|
|
PKG_SITE="http://www.gtk.org/"
|
|
PKG_URL="https://ftp.gnome.org/pub/gnome/sources/gtk+/${PKG_VERSION:0:4}/gtk+-${PKG_VERSION}.tar.xz"
|
|
PKG_DEPENDS_TARGET="toolchain at-spi2-atk atk cairo gdk-pixbuf glib libX11 libXi libXrandr libepoxy pango"
|
|
PKG_DEPENDS_CONFIG="libXft pango gdk-pixbuf shared-mime-info"
|
|
PKG_LONGDESC="A library for creating graphical user interfaces for the X Window System."
|
|
PKG_TOOLCHAIN="meson"
|
|
PKG_BUILD_FLAGS="-sysroot"
|
|
|
|
PKG_MESON_OPTS_TARGET="-Dbroadway_backend=false \
|
|
-Dcloudproviders=false \
|
|
-Dcolord=no \
|
|
-Ddemos=false \
|
|
-Dexamples=false \
|
|
-Dgtk_doc=false \
|
|
-Dintrospection=false \
|
|
-Dman=false \
|
|
-Dprint_backends=file,lpr \
|
|
-Dquartz_backend=false \
|
|
-Dtests=false \
|
|
-Dwayland_backend=false \
|
|
-Dwin32_backend=false \
|
|
-Dxinerama=no \
|
|
-Dbuiltin_immodules=yes \
|
|
-Dx11_backend=true"
|
|
|
|
pre_configure_target() {
|
|
# ${TOOLCHAIN}/bin/glib-compile-resources requires ${TOOLCHAIN}/lib/libffi.so.6
|
|
export LD_LIBRARY_PATH="${TOOLCHAIN}/lib:${LD_LIBRARY_PATH}"
|
|
export GLIB_COMPILE_RESOURCES=glib-compile-resources GLIB_MKENUMS=glib-mkenums GLIB_GENMARSHAL=glib-genmarshal
|
|
}
|