f6cfae1ed5
* Moves the dynamic fontmap directory to /var/db/gnome/gnome-print (from /etc/gnome/gnome-print). * Updates the system fontmap on pkg install, not during build. * Addes a fix for Alpha ok nino@
22 lines
455 B
Bash
22 lines
455 B
Bash
#!/bin/sh
|
|
#
|
|
# $OpenBSD: DEINSTALL,v 1.2 2002/09/15 15:57:41 marcm Exp $
|
|
#
|
|
|
|
set -e
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|
|
|
echo
|
|
echo "+--------------- $1"
|
|
echo "| To completly remove $1 from your system you should also"
|
|
echo "| remove the configuration directory:"
|
|
echo "|"
|
|
echo "| /var/db/gnome/gnome-print"
|
|
echo "|"
|
|
echo "| If you are planning on installing $1 again in the future"
|
|
echo "| you can leave it as it is."
|
|
echo "+--------------- $1"
|
|
echo
|
|
|
|
exit 0
|