16d111e0af
* Use the system libtool. * Remove the disk writer flavor, include it by default. * Add a gnome subpackage. Notable changes in this release: General: * Replaced folder icons. * Don't display playlist numbers elsewhere when turned off. * Support 32-bit and 16-bit "bitfield" bmps in skins. CD Audio: * Supply a dummy user and hostname to the cddb server. MPG123: * Handle UTF-16 encoded tags. * Major stability fixes.
29 lines
622 B
Bash
29 lines
622 B
Bash
#!/bin/sh
|
|
#
|
|
# $OpenBSD: DEINSTALL-gnome,v 1.1 2002/03/11 17:38:05 naddy Exp $
|
|
#
|
|
|
|
set -e
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|
|
|
FILES='
|
|
CORBA/servers/gnomexmms.gnorba
|
|
'
|
|
|
|
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 ${FILES}; do
|
|
echo "| ${SYSCONFDIR}/$f"
|
|
done
|
|
echo "+--------------- $1"
|
|
echo
|
|
|
|
exit 0
|