aboutsummaryrefslogtreecommitdiff
path: root/debian/remove.debian
diff options
context:
space:
mode:
authorTorsten Hilbrich <torsten.hilbrich@gmx.net>2002-06-14 19:31:00 +0200
committerTorsten Hilbrich <torsten@hilbrich.net>2011-08-27 20:47:38 +0200
commit5bb6beb42b86a255991f29fc2a4faabe93d1991c (patch)
tree380094a7d5d071ba9b7f458c6b422e289534bfdb /debian/remove.debian
parentfae7850c9c67a2383b2eb1afb5908490099df48a (diff)
Imported version 1.8.2 from tarball
fixed Makefile
Diffstat (limited to 'debian/remove.debian')
-rwxr-xr-xdebian/remove.debian17
1 files changed, 0 insertions, 17 deletions
diff --git a/debian/remove.debian b/debian/remove.debian
deleted file mode 100755
index 991d208..0000000
--- a/debian/remove.debian
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-PACKAGE=dictionary
-FLAVOUR=$1
-ELCDIR=/usr/share/$FLAVOUR/site-lisp/
-
-SOURCE="connection.el dictionary.el link.el"
-CONFFILE=/etc/$FLAVOUR/site-start.d/50${PACKAGE}.el
-
-case "$FLAVOUR" in
- emacs) echo "install/$PACKAGE: Ignoring emacs";;
- *) echo -n "remove/$PACKAGE: Removing for $FLAVOUR..."
- cd $ELCDIR
- for i in $SOURCE; do rm -f ${i}c; done
- rm ${CONFFILE}
- echo " done."
- ;;
-esac