#! /bin/sh
#
# Copyright (c) 2002, PerfCap Corporation, Nashua NH
# All Rights Reserved
#
# hpux post remove installation script
#-------------------------------------------------------------------
#
# Remove links
#
INSTALL_DIR=/opt/perfcap

if [ -h /usr/bin/ecap_plan ]
then
   rm -f /usr/bin/ecap_plan
fi

if [ -h /usr/man/man1/ecap_plan.1 ]
then
  rm -f /usr/man/man1/ecap_plan.1
fi

if [ -h /usr/lib/X11/app-defaults/PerfCap ]
then
  rm -f /usr/lib/X11/app-defaults/PerfCap
fi

if [ -f $INSTALL_DIR/settings/.install_plan ]
then
  rm -f $INSTALL_DIR/settings/.install_plan
fi
exit 0
