view debian/postrm @ 27870:31a44a9c8687

Fix Windows OpenGL -wid: Disable the Window instead of explicitly passing on click events. This also makes Drag-and-Drop work if the -wid window supports it.
author reimar
date Tue, 11 Nov 2008 19:21:36 +0000
parents 02309ce6fc22
children
line wrap: on
line source

#!/bin/sh

set -e

if [ "$1" = "purge" ]; then
	if [ -e /usr/share/debconf/confmodule ]; then
		# Source debconf library.
		. /usr/share/debconf/confmodule
		# Remove my changes to the db.
		db_purge
	fi

	if [ -d /etc/mplayer/ ]; then
		rm -rf /etc/mplayer/
	fi
fi

#DEBHELPER#