aboutsummaryrefslogtreecommitdiffstats
path: root/debian/plptools-kde.prerm
diff options
context:
space:
mode:
Diffstat (limited to 'debian/plptools-kde.prerm')
-rw-r--r--debian/plptools-kde.prerm36
1 files changed, 0 insertions, 36 deletions
diff --git a/debian/plptools-kde.prerm b/debian/plptools-kde.prerm
deleted file mode 100644
index 40a49f4..0000000
--- a/debian/plptools-kde.prerm
+++ /dev/null
@@ -1,36 +0,0 @@
-#! /bin/sh
-# prerm script for plptools-kde
-#
-# see: dh_installdeb(1)
-
-set -e
-
-#
-# Workaround for a mis-feature (bug?) in kdelibs:
-# If mimetype is inode/x-directory, then always the folder-icon is displayed.
-# If mimetype is something else, open dialog pops up. So, for displaying
-# Psion's drive icons _AND_ opening drives without annoying dialog,
-# modify konquerorrc to hide dialog when opening a Psion-drive
-#
-
-case "$1" in
- remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
- KDEBUGRC=`dpkg -S kdebugrc | awk '{print $2}'`
- KONQRC=`dirname $KDEBUGRC`/konquerorrc
- if test -f $KONQRC ; then
- cp $KONQRC $KONQRC.$$
- grep -v 'askSaveinode/x-psion-drive=' $KONQRC.$$ > $KONQRC && rm -f $KONQRC.$$
- fi
- ;;
- *)
- echo "prerm called with unknown argument \`$1'" >&2
- exit 0
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0