openbsd-ports/x11/gnome/libgnome/pkg/DEINSTALL
todd 1531bb5956 Import libgnome-2.0.6
--
These are the GNOME libraries, the foundation for most of the
applications of the GNOME project.

From marcm for gnome2
2003-01-31 18:52:44 +00:00

33 lines
778 B
Bash

#!/bin/sh
#
# $OpenBSD: DEINSTALL,v 1.1.1.1 2003/01/31 18:52:44 todd Exp $
#
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
FILES='
gnome-vfs-2.0/modules/help-methods.conf
sound/events/gnome-2.soundlist
sound/events/gtk-events-2.soundlist
'
echo
echo "+--------------- $1"
echo "| To really remove $1 from your system you should also"
echo "| remove the configuration files from the ${SYSCONFDIR} directory."
echo "| Remove the directories in which the files reside as well if empty."
echo "|"
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 belong to this package:"
echo "|"
for f in ${FILES}; do
echo "| ${SYSCONFDIR}/$f"
done
echo "+--------------- $1"
echo
exit 0