
# 1: update the mime.types
# proz
PROZ=`/bin/cat "$QPEDIR/etc/mime.types" | /bin/grep "prozect"`
if [ "$PROZ" != "" ]
then
   /bin/sed /prozect/d "$QPEDIR/etc/mime.types" > /tmp/mime.types
   mv /tmp/mime.types "$QPEDIR/etc/mime.types"
fi

# 2: remove the tutorial in home Docs
if [ -d /home/zaurus ]
then
    BASE=/home/zaurus
else 
    if [ -d /home/root ]
    then 
	BASE=/home/root
    else 
	# new os?
	exit 1
    fi
fi

rm $BASE/Documents/application/prozect/tutorial.proz 
rmdir $BASE/Documents/application/prozect
rmdir $BASE/Documents/application

# 3: remove config file

rm $BASE/Settings/prozect.conf
 

exit 0
