openbsd-ports/www/opera/pkg/DEINSTALL
naddy 376bb50bc8 Update to 6.02:
* New preferences look.
* Tons of unnoticeable bug fixes.

Install both opera6rc and opera6rc.fixed.
Move sync DNS lookup disable to opera6rc.fixed.
2002-07-03 20:37:36 +00:00

53 lines
1.1 KiB
Bash

#!/bin/sh
# $OpenBSD: DEINSTALL,v 1.6 2002/07/03 20:37:37 naddy Exp $
#
# De-installation setup of Opera
# 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_FILE=/etc/opera6rc # hardcoded to /etc
CONFIG_FILE_FIXED=/etc/opera6rc.fixed # hardcoded to /etc
# 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 -f ${CONFIG_FILE} ${CONFIG_FILE_FIXED}"
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 [ -f ${CONFIG_FILE} -o -f ${CONFIG_FILE_FIXED} ]; then
do_notice "$1"
fi
;;
*)
echo "usage: $0 distname DEINSTALL" >&2
exit 1
;;
esac
exit 0