openbsd-ports/x11/ion/pkg/DEINSTALL
naddy ff6aa26cf1 Update to stable version 2-20040601.
From: Tim Kornau <opti@openbsd.de> and Bernd Ahlers <ba@bsws.de>.
2004-07-09 21:16:26 +00:00

53 lines
1.0 KiB
Bash

#!/bin/sh
# $OpenBSD: DEINSTALL,v 1.3 2004/07/09 21:16:27 naddy Exp $
#
# De-installation setup of ion
# exit on errors, use a sane path and install prefix
#
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
CONFIG_DIR=${SYSCONFDIR}/ion
# Function: tell the user what they need to do to delete the port completely
#
do_notice()
{
echo
echo "+---------------"
echo "| To completely deinstall the $1 package you need to perform"
echo "| these steps as root:"
echo "|"
echo "| rm -rf ${CONFIG_DIR}"
echo "|"
echo "| Do not do this if you plan on re-installing $1"
echo "| at some future time."
echo "+---------------"
echo
}
# Verify proper execution
#
if [ $# -ne 2 ]; then
echo "usage: $0 distname DEINSTALL" >&2
exit 1
fi
# Verify/process the command
#
case $2 in
DEINSTALL)
if [ ${PKG_DELETE_EXTRA} != Yes -a \
-e ${CONFIG_DIR} ]; then
do_notice "$1"
fi
;;
*)
echo "usage: $0 distname DEINSTALL" >&2
exit 1
;;
esac
exit 0