1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
#! /bin/bash
# -*- Mode: Sh -*-
# emacsen.remove ---
# Author : Manoj Srivastava ( srivasta@tiamat.datasync.com )
# Created On : Mon Apr 13 01:38:03 1998
# Created On Node : tiamat.datasync.com
# Last Modified By : Manoj Srivastava
# Last Modified On : Fri Feb 8 21:46:54 2008
# Last Machine Used: anzu.internal.golden-gryphon.com
# Update Count : 9
# Status : Unknown, Use with caution!
# HISTORY :
# Description :
#
# arch-tag: 7b9e5ffb-d1b2-47cb-86ab-0da24d51ed46
#
set -e
FLAVOUR=$1
PACKAGE="vm"
if [ "X$FLAVOUR" = "X" ]; then
echo Need argument to determin FLAVOUR of emacs;
exit 1
fi
if [ "X$PACKAGE" = "X" ]; then
echo Internal error: need package name;
exit 1;
fi
ELDIR=/usr/share/emacs/site-lisp/$PACKAGE.in
ELCDIR=/usr/share/$FLAVOUR/site-lisp/$PACKAGE/
STARTDIR=/etc/$FLAVOUR/site-start.d
STARTFILE="$PACKAGE-init.el";
EFLAGS="-batch -q -l load-path-hack.el -f batch-byte-compile"
INFO_FILES="/usr/info/vm.info.gz";
case $FLAVOUR in
# Note: this list of emacs flavours appears in vm.emacsen-install too
emacs|emacs25|emacs24|emacs23|emacs-snapshot)
echo -n "remove/$PACKAGE: Removing for $FLAVOUR..."
echo -n "$ELCDIR..."
test ! -d $ELCDIR || rm -rf $ELCDIR
echo -n "$ELDIR..."
test ! -f $ELDIR/vm-cus-load.el || rm -rf $ELDIR/vm-cus-load.el
echo " done."
;;
*)
echo "remove/$PACKAGE: Ignoring emacsen flavor $FLAVOUR."
;;
esac
exit 0
### Local Variables:
### mode: shell-script
### End:
|