summaryrefslogtreecommitdiffstats
path: root/debian
diff options
context:
space:
mode:
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog6
-rw-r--r--debian/postrm9
2 files changed, 15 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index 796c8cab8e..207fc38dba 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+mplayer (0.90-3) unstable; urgency=low
+
+ * Remove configuration files on purge.
+
+ -- Diego Biurrun <diego@biurrun.de> Sun, 1 Sep 2002 11:03:13 +0200
+
mplayer (0.90-2) unstable; urgency=low
* Use the confdir we compile with in the helper scripts
diff --git a/debian/postrm b/debian/postrm
new file mode 100644
index 0000000000..de8ea2fa46
--- /dev/null
+++ b/debian/postrm
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+set -e
+
+if [ "$1" = "purge" ]; then
+ if [ -d /etc/mplayer/ ]; then
+ rm -rf /etc/mplayer/
+ fi
+fi