#! /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 : Tue Aug  3 12:02:50 1999
# Last Machine Used: glaurung.green-gryphon.com
# Update Count     : 6
# Status           : Unknown, Use with caution!
# HISTORY          : 
# Description      : 
# 
# 


set -e

FLAVOUR=$1
PACKAGE="vm"
VERSION="7.03-1"

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

if [ "X$VERSION" = "X" ]; then
    echo Internal error: need package version;
    exit 1;
fi

ELDIR=/usr/share/emacs/site-lisp/$PACKAGE
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
    emacs19|emacs20|emacs21)
        echo -n "remove/$PACKAGE: Removing for $FLAVOUR..."
        rm -f $ELCDIR/*.elc
	# These next two are created on the fly
	rm -f $ELDIR/vm.el  $ELDIR/vm.elc
	if [ -e "$ELCDIR/$STARTFILE" ]; then
	    rm -f "$ELCDIR/$STARTFILE"
	fi
	
	if test -x /usr/sbin/install-info-altdir; then
	    for infofile in $INFO_FILES; do
		install-info-altdir --quiet --remove \
		    --dirname=${FLAVOUR} $infofile
	    done
	fi
        echo " done."	
	
	;;
    *)
        echo "remove/$PACKAGE: Ignoring emacsen flavor $FLAVOUR."	
	;;
esac

exit 0

### Local Variables:
### mode: shell-script
### End:
