#!/bin/sh
# ICQJava installer Debian post-remove script
# by Lalo Martins <lalo@webcom.com>
# this script is in the public domain
set -e 


# Delete files
rm -rf /usr/lib/==PACKAGE==


# Display warning
cat <<-	EOF
	Purging this package doesn't really delete your ICQ configuration,
	as this configuration is kept on a per-user basis on a ~/.icq
	directory. So, to successfully upgrade to other versions of ICQ, it
	may be necessary to manually delete or rename all such directories.
	
	Please press enter to continue.
EOF
read


# Run update-menus
if [ -x "/usr/bin/update-menus" ] ; then
  /usr/bin/update-menus
fi
