#!/bin/sh
# $OpenBSD: DEINSTALL,v 1.3 2005/01/04 12:05:57 wilfried Exp $
#
# De-installation setup of mozilla-thunderbird

# exit on errors, use a sane path and install prefix
#
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
MOZ=/usr/local/mozilla-thunderbird

# Verify proper execution
#
if [ $# -ne 2 ]; then
    echo "usage: $0 distname DEINSTALL" >&2
    exit 1
fi

# Verify/process the command
#
case $2 in
    DEINSTALL)
	cd ${MOZ}/components
	rm -f compreg.dat xpti.dat
	cd ${MOZ}/chrome
	rm -rf chrome.rdf overlayinfo
	cd ${MOZ}
	rm -f .autoreg components.ini install.log registry
	rm -f extensions/Extensions.rdf extensions/installed-extensions-processed.txt
	rm -rf extensions/{*
	rmdir extensions
	;;
    *)
	echo "usage: $0 distname DEINSTALL" >&2
	exit 1
	;;
esac

exit 0
