#!/bin/sh -e
#
# Updates GTK+ IM modules file with gtk-query-immodules-2.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-2.0
immodules_db=etc/gtk-2.0/gtk.immodules

case "$ACTION" in
targets)
	echo "post-install post-remove"
	;;
run)
	if [ "$TARGET" = "post-remove" -a "${PKGNAME}" = "gtk+" ]; then
		[ -f ${immodules_db} ] rm -f ${immodules_db}
		break
	fi
	case "$TARGET" in
	post-*)
		if [ -x ${immodules_bin} ]; then
			echo "Updating GTK's immodules database..."
			${immodules_bin} > ${immodules_db}
		fi
		;;
	esac
	;;
*)
	exit 1
	;;
esac

exit 0