gtk2/update-gdk-pixbuf-loaders
Petr Šabata 18a5fa703d RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN
with the following as its source:
https://src.fedoraproject.org/rpms/gtk2#7ef3e63372e5e049d7a4ada9e011e4491015ddb3
2020-10-15 12:10:58 +02:00

49 lines
1.0 KiB
Bash
Executable File

#! /bin/sh
if test $# != 1; then
echo usage: update-gdk-pixbuf-loaders host_triplet 1>&2
exit 1
fi
umask 022
# Deriving /etc/gtk-2.0/$host location
#
# autoconf changes linux to linux-gnu
case "$1" in
*linux) host="$1-gnu"
;;
*) host=$1
;;
esac
# autoconf uses powerpc not ppc
host=`echo $host | sed "s/^ppc/powerpc/"`
# autoconf uses ibm-linux not redhat-linux (s390x)
host=`echo $host | sed "s/^s390\(x\)*-redhat/s390\1-ibm/"`
# We have had problems in the past with build systems
# changing host from i386 to i686 and appending/dropping
# the -gnu suffix, so try to match up the $host we got
# with whats actually there.
if [ ! -d /etc/gtk-2.0/$host ]; then
case "$host" in
i?86*)
for d in $(ls -d /etc/gtk-2.0/i?86*); do
host=$(basename $d)
break
done
;;
esac
fi
FILE=/etc/gtk-2.0/$host/gdk-pixbuf.loaders
case "$host" in
alpha*|ia64*|powerpc64*|s390x*|x86_64*|aarch64*)
/usr/bin/gdk-pixbuf-query-loaders-64 > $FILE
;;
*)
/usr/bin/gdk-pixbuf-query-loaders-32 > $FILE
;;
esac