#!/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 : Thu Oct 15 00:47:01 1998
# Last Machine Used: tiamat.datasync.com
# Update Count     : 3
# Status           : Unknown, Use with caution!
# HISTORY          : 
# Description      : 
# 
# 

set -e

FLAVOUR=$1
PACKAGE="gnus"
VERSION="5.6.45-3"

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/gnus.gz";

case $FLAVOUR in
    emacs)
	echo "remove/$PACKAGE: Ignoring emacsen flavor $FLAVOUR."       
        ;;
    emacs19|emacs20|xemacs20)
        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:
