#!/bin/sh
# postrm script for custom-operator-name-widget
#
# see: dh_installdeb(1)

set -e

# summary of how this script can be called:
#        * <postrm> `remove'
#        * <postrm> `purge'
#        * <old-postrm> `upgrade' <new-version>
#        * <new-postrm> `failed-upgrade' <old-version>
#        * <new-postrm> `abort-install'
#        * <new-postrm> `abort-install' <old-version>
#        * <new-postrm> `abort-upgrade' <old-version>
#        * <disappearer's-postrm> `disappear' <overwriter>
#          <overwriter-version>
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package


case "$1" in
    purge|remove)
    dpkg-divert --package custom-operator-name-widget --remove --rename /usr/lib/hildon-desktop/connui-cellular-operator-home-item.so
	if [ -r /etc/osso-af-init/af-defines.sh ]; then
	  source /etc/osso-af-init/af-defines.sh
	fi

	if [ -x /usr/bin/dbus-send ]; then
	  dbus-send --type=method_call --dest=org.freedesktop.Notifications /org/freedesktop/Notifications org.freedesktop.Notifications.SystemNoteInfoprint string:"Restart to restore original widget."
	fi
    ;;

    upgrade)
    ;;

    failed-upgrade)
    ;;

    abort-upgrade)
    ;;

    *)
        echo "postrm called with unknown argument \`$1'" >&2
    ;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0


