#!/bin/sh
# prerm script for flashplugin-installer
#
# see: dh_installdeb(1)

set -e

# summary of how this script can be called:
#		* <prerm> `remove'
#		* <old-prerm> `upgrade' <new-version>
#		* <new-prerm> `failed-upgrade' <old-version>
#		* <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
#		* <deconfigured's-prerm> `deconfigure' `in-favour'
#		  <package-being-installed> <version> `removing'
#		  <conflicting-package> <version>
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package

case "$1" in
	remove)
		update-rc.d -f flashplugin-installer remove >/dev/null 2>&1
		rm -rf /usr/lib/flashplugin-installer/*
		rm -f /var/lib/flashplugin-installer/*
		rm -rf /var/cache/flashplugin-installer
		rm -f /usr/share/ubufox/plugins/libflashplayer.so
		
		update-alternatives --quiet --remove "mozilla-flashplugin" /usr/lib/flashplugin-installer/libflashplayer.so;
		;;
	failed-upgrade)
		# older versions have a broken prerm script because of update-alternatives changes
		if [ -n "$2" ] &&  dpkg --compare-versions "$2" le "10.0.22.87ubuntu2"; then
			exit 0
		fi
		;;
	upgrade|deconfigure)
		update-rc.d -f flashplugin-installer remove >/dev/null 2>&1
		rm -rf /usr/lib/flashplugin-installer/*
		rm -f /var/lib/flashplugin-installer/*
		rm -rf /var/cache/flashplugin-installer/*
		rm -f /usr/share/ubufox/plugins/libflashplayer.so
		update-alternatives --quiet --remove "mozilla-flashplugin" /usr/lib/flashplugin-installer/libflashplayer.so;
		;;
	*)
		echo "prerm called with unknown argument \`$1'" >&2
		exit 1
	;;
esac

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

#DEBHELPER#

exit 0

# vim: ts=2 sw=2
