fd86c53663
ORBit2 2.6.3 -> 2.8.1 gconf2 2.2.1 -> 2.4.0.1 libgtop2 2.0.2 -> 2.0.5 libwnck 2.2.2 -> 2.4.0.1 vte 0.10.29 -> 0.11.10 Also removes devel/linc since it has been rolled into devel/ORBit2.
57 lines
1.1 KiB
Bash
57 lines
1.1 KiB
Bash
#!/bin/sh
|
|
#
|
|
# $OpenBSD: DEINSTALL,v 1.4 2003/10/07 05:47:57 marcm Exp $
|
|
#
|
|
|
|
set -e
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|
|
|
FILES='
|
|
gconf/2/path
|
|
'
|
|
|
|
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 "| as well as the files under the /var/db/gconf directory."
|
|
echo "|"
|
|
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
|
|
}
|
|
|
|
# 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
|