openbsd-ports/x11/gnome/vfs/pkg/DEINSTALL
marcm f953b46917 @extra-ifcation of Gnome 1.
Prodded by naddy@
2003-10-16 16:55:10 +00:00

51 lines
972 B
Bash

#!/bin/sh
#
# $OpenBSD: DEINSTALL,v 1.4 2003/10/16 16:55:11 marcm Exp $
#
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
do_notice()
{
echo
echo "+--------------- $1"
echo "| To really remove $1 from your system you should also"
echo "| remove the configuration files from the ${SYSCONFDIR} directory."
echo "| If you are planning on installing $1 again in the future"
echo "| you can leave it as it is."
echo "|"
echo "| FYI, the following configuration files belongs to this package:"
echo "|"
for f in \
vfs/modules/default-modules.conf
do
echo "| ${SYSCONFDIR}/$f"
done
echo "+--------------- $1"
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 ]; then
do_notice "$1"
fi
;;
*)
echo "usage: $0 distname DEINSTALL" >&2
exit 1
;;
esac
exit 0