slackware-current/source/l/gtk+3/update-gtk-immodules-3.0
Patrick J Volkerding 76fc4757ac Slackware 14.1
Mon Nov  4 17:08:47 UTC 2013
Slackware 14.1 x86_64 stable is released!

It's been another interesting release cycle here at Slackware bringing
new features like support for UEFI machines, updated compilers and
development tools, the switch from MySQL to MariaDB, and many more
improvements throughout the system.  Thanks to the team, the upstream
developers, the dedicated Slackware community, and everyone else who
pitched in to help make this release a reality.

The ISOs are off to be replicated, a 6 CD-ROM 32-bit set and a
dual-sided
32-bit/64-bit x86/x86_64 DVD.  Please consider supporting the Slackware
project by picking up a copy from store.slackware.com.  We're taking
pre-orders now, and offer a discount if you sign up for a subscription.

Have fun!  :-)
2018-05-31 22:57:36 +02:00

48 lines
1.4 KiB
Bash

#! /bin/sh
# Updates the immodules cache at /usr/lib(64)/gtk-3.0/3.0.0/immodules.cache
umask 022
# Get the machine type from uname:
host=$(uname -m)-slackware-linux
# Fix $host for arm arch:
case "$host" in
arm*) host=arm-slackware-linux-gnueabi ;;
esac
case "$host" in
s390x*|x86_64*)
if [ -x /usr/bin/gtk-query-immodules-3.0-64 ]; then
if [ "$1" = "--verbose" ]; then
echo "Updating gtk.immodules for ${host}:"
echo " /usr/bin/gtk-query-immodules-3.0-64 --update-cache"
fi
/usr/bin/gtk-query-immodules-3.0-64 --update-cache 2>/dev/null
# Check for multilib
if [ -x /usr/bin/gtk-query-immodules-3.0-32 ]; then
if [ "$1" = "--verbose" ]; then
echo "Updating 32bit gtk.immodules: "
echo " /usr/bin/gtk-query-immodules-3.0-32 --update-cache"
fi
/usr/bin/gtk-query-immodules-3.0-32 --update-cache 2>/dev/null
fi
fi
;;
*)
if [ -x /usr/bin/gtk-query-immodules-3.0-32 ]; then
if [ "$1" = "--verbose" ]; then
echo "Updating gtk.immodules for ${host}:"
echo " /usr/bin/gtk-query-immodules-3.0-32 --update-cache"
fi
/usr/bin/gtk-query-immodules-3.0-32 --update-cache 2>/dev/null
else
if [ "$1" = "--verbose" ]; then
echo "Updating gtk.immodules for ${host}:"
echo " /usr/bin/gtk-query-immodules-3.0 --update-cache"
fi
/usr/bin/gtk-query-immodules-3.0 --update-cache 2>/dev/null
fi
;;
esac