c81bd7c0f2
Pango is a library for layout and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed; however, most of the work on Pango-1.0 was done using the GTK+ widget toolkit as a test platform. Pango forms the core of text and font handling for GTK+-2.0.
31 lines
703 B
Bash
31 lines
703 B
Bash
#!/bin/sh
|
|
#
|
|
# $OpenBSD: DEINSTALL,v 1.1.1.1 2002/07/25 09:20:01 nino Exp $
|
|
#
|
|
|
|
set -e
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|
|
|
FILES='
|
|
pango/pango.modules
|
|
pango/pangox.aliases
|
|
'
|
|
|
|
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 directory in which the files reside as well if empty."
|
|
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
|