#!/bin/sh
#                               -*- Mode: Sh -*- 
# emacsen-common-remove --- 
# Author           : Manoj Srivastava ( srivasta@tiamat.datasync.com ) 
# Created On       : Thu Oct 15 00:16:41 1998
# Created On Node  : tiamat.datasync.com
# Last Modified By : Manoj Srivastava
# Last Modified On : Sat Dec 13 15:50:51 2003
# Last Machine Used: glaurung.green-gryphon.com
# Update Count     : 10
# Status           : Unknown, Use with caution!
# HISTORY          : 
# Description      : 
# 
# arch-tag: 031a57b8-34c7-4b82-abdd-abbb1642259c


set -e

FLAVOUR=$1
PACKAGE="calc"
VERSION="2.02f-23"

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/
INFO_FILES="/usr/info/${PACKAGE}.info.gz";

STARTDIR=/etc/$FLAVOUR/site-start.d
STARTFILE="$PACKAGE-init.el";

case $FLAVOUR in
    emacs19  | emacs20 | emacs)
	echo "remove/$PACKAGE: Ignoring emacsen flavor $FLAVOUR."       
        ;;
    emacs21 | emacs-snapshot)
        echo -n "remove/$PACKAGE: Removing for $FLAVOUR..."
	if [ -d $ELCDIR ]; then
	    rm -fr $ELCDIR
	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:
