diff options
author | ade <ade@FreeBSD.org> | 2000-09-18 03:05:58 +0800 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2000-09-18 03:05:58 +0800 |
commit | b8d0f1414836f24ec9d0d2f55c00fa436d56bd0a (patch) | |
tree | 52ece5043a2661120635a41e984df3f3018de167 /www/surfraw/pkg-deinstall | |
parent | 68ba635c031ef6db299096cd6204aab25ecbd025 (diff) | |
download | freebsd-ports-gnome-b8d0f1414836f24ec9d0d2f55c00fa436d56bd0a.tar.gz freebsd-ports-gnome-b8d0f1414836f24ec9d0d2f55c00fa436d56bd0a.tar.zst freebsd-ports-gnome-b8d0f1414836f24ec9d0d2f55c00fa436d56bd0a.zip |
Update to version 1.0.1
PR: 21326
Submitted by: maintainer
Diffstat (limited to 'www/surfraw/pkg-deinstall')
-rw-r--r-- | www/surfraw/pkg-deinstall | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/www/surfraw/pkg-deinstall b/www/surfraw/pkg-deinstall new file mode 100644 index 000000000000..be71e9d11ff4 --- /dev/null +++ b/www/surfraw/pkg-deinstall @@ -0,0 +1,53 @@ +#!/bin/sh +# +# De-installation setup of surfraw + +# 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=${PREFIX}/etc/surfraw.conf + +# 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}" + 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 | POST-DEINSTALL }" >&2 + exit 1 +fi + +# Verify/process the command +# +case $2 in + DEINSTALL) + if [ -f ${CONFIG_FILE} ]; then + do_notice "$1" + fi + ;; + POST-DEINSTALL) + : nothing to post-deinstall for this port + ;; + *) + echo "usage: $0 distname { DEINSTALL | POST-DEINSTALL }" >&2 + exit 1 + ;; +esac + +exit 0 |