2aef1b2991
This lists changes per-trigger, triggers that changed the same thing are listed under the same group appstream-cache: gconf-schemas: gdk-pixbuf-loaders: gsettings-schemas: kernel-hooks: mkdirs: pango-modules: register-shell: update-dektopdb: update-desktopdb: x11-fonts: - remove useless PATH expansion that is already done in the hook script. gtk-icon-cache: gtk-immodules: gtk3-immodules: - remove useless PATH expansion that is already done in the hook script. - use exit 0 instead of break hwdb.d: - check if tooling is available info-files - Remove support for using host tooling mimedb: - remove useless PATH expansion that is already done in the hook script. - check if tooling is available xml-catalog: - remove useless PATH expansion that is already done in the hook script. - add a xmlcatmgr variable so that the first check not always fails [ci skip]
51 lines
919 B
Bash
Executable File
51 lines
919 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Updates GTK+3 IM modules file with gtk-query-immodules-3.0(1).
|
|
#
|
|
# Arguments: $ACTION = [run/targets]
|
|
# $TARGET = [post-install/post-remove]
|
|
# $PKGNAME
|
|
# $VERSION
|
|
# $UPDATE = [yes/no]
|
|
#
|
|
ACTION="$1"
|
|
TARGET="$2"
|
|
PKGNAME="$3"
|
|
VERSION="$4"
|
|
UPDATE="$5"
|
|
|
|
immodules_bin=usr/bin/gtk-query-immodules-3.0
|
|
immodules_cache=usr/lib/gtk-3.0/3.0.0/immodules.cache
|
|
|
|
case "$ACTION" in
|
|
targets)
|
|
echo "post-install post-remove"
|
|
;;
|
|
run)
|
|
if [ "$TARGET" = "post-remove" -a "${PKGNAME}" = "gtk+3" ]; then
|
|
[ -f ${immodules_cache} ] && rm -f ${immodules_cache}
|
|
exit 0
|
|
fi
|
|
case "$TARGET" in
|
|
post-*)
|
|
if [ -f etc/gtk-3.0/gtk.immodules ]; then
|
|
echo "Removing obsolete conf file: etc/gtk-3.0/gtk.immodules"
|
|
rm -f etc/gtk-3.0/gtk.immodules
|
|
fi
|
|
|
|
if [ ! -x $immodules_bin ]; then
|
|
exit 0
|
|
fi
|
|
|
|
echo "Updating GTK+3 immodules cache..."
|
|
$immodules_bin --update-cache
|
|
;;
|
|
esac
|
|
;;
|
|
*)
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|