openbsd-ports/net/pork/pkg/DEINSTALL
sturm b6e8771881 import of pork 0.5.0
pork is a programmable, ncurses-based AIM client that mostly looks and
feels like ircII.

From Jolan "it's been tested on i386, sparc, macppc, and sparc64" Luff
<jolan AT cryptonomicon DOT org>
2003-02-21 13:03:55 +00:00

25 lines
557 B
Bash

#!/bin/sh
# $OpenBSD: DEINSTALL,v 1.1.1.1 2003/02/21 13:03:55 sturm Exp $
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
CONFFILE=${SYSCONFDIR}/porkrc
if [ -f ${CONFFILE} ];
then
echo
echo "+---------------"
echo "| To completely deinstall the $1 package you need to perform"
echo "| this step as root:"
echo "|"
echo "| rm -f ${CONFFILE}"
echo "|"
echo "| Do not do this if you plan on re-installing $1"
echo "| at some future time."
echo "+---------------"
echo
fi
exit 0