#!/bin/sh
#
# @(#)postremove	$Id: postremove,v 1.3 2004/09/21 12:54:52 coyote Exp $
#
# postremove script for quake2

quake2_dir=$BASEDIR
dest_dir=${PKG_INSTALL_ROOT}/usr/local/bin

if [ -d ${dest_dir} ]; then
	for inst_script in q2_x11.sh q2_xil.sh q2_glx.sh
	do
		dest_script=${dest_dir}/${inst_script}
		if [ -h ${dest_script} ]; then
			rm -f ${dest_script}
		fi
	done
fi

exit 0

