aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/extras/fontconfig/debian/fontconfig.postrm
blob: 88598c3fe5b736e7fc62afe4509c32f09ffc3e76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#! /bin/sh
# postrm script for fontconfig

set -e

CONF=/etc/fonts/local.conf

case "$1" in
	purge)
	    if [ -x /usr/bin/ucf ]; then
		ucf --purge $CONF
	    fi
	    rm -f $CONF
	    rm -rf /var/lib/fontconfig /var/lib/defoma/fontconfig.d
	    for dir in /usr/share/fonts /usr/X11R6/lib/X11/fonts /usr/local/share/fonts ; do
		if [ -d $dir ]; then
		    find $dir -name fonts.cache-1 | xargs rm -f
		fi
	    done
	    rmdir /usr/local/share/fonts 2> /dev/null || true
	    ;;
esac

#DEBHELPER#
 
exit 0