blob: 20feb6e5299715c7f459a0ce9969070c4ba8630c (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
configs=('20-fix-globaladvance.conf'
'20-unhint-small-vera.conf'
'29-replace-bitmap-fonts.conf'
'30-metric-aliases.conf'
'30-urw-aliases.conf'
'40-nonlatin.conf'
'45-latin.conf'
'49-sansserif.conf'
'50-user.conf'
'51-local.conf'
'60-latin.conf'
'65-fonts-persian.conf'
'65-nonlatin.conf'
'69-unifont.conf'
'80-delicious.conf'
'90-synthetic.conf')
post_install() {
echo -n "updating font cache... "
/sbin/ldconfig -r .
pushd /etc/fonts/conf.d > /dev/null
for config in "${configs[@]}"; do
ln -sf ../conf.avail/${config} .
done
popd > /dev/null
/usr/bin/fc-cache -f
echo "done."
}
post_upgrade() {
rm -f /etc/fonts/conf.d/10-bitmaps.conf
cat << _EOF
===> Important Fontconfig configuration change <===
The way fontconfig is configured has been changed.
Configuration is done via /etc/fonts/conf.avail and conf.d.
Read /etc/fonts/conf.d/README for more information.
Configuration via /etc/fonts/local.conf is still possible,
but is no longer recommended for options available in conf.avail.
_EOF
if [ `vercmp 2.4.1-1 $2` -gt 0 ]; then
# Upgrade from old version, place all symlinks. pre-symlink package version
echo -n "Linking configuration files... "
pushd /etc/fonts/conf.d > /dev/null
for config in "${configs[@]}"; do
ln -sf ../conf.avail/${config} .
done
popd > /dev/null
echo "done."
fi
if [ `vercmp 2.6.0-1 $2` -gt 0 ]; then
# pre-2.6.0 versions have missing config
echo -n "Adding missing configuration files... "
pushd /etc/fonts/conf.d > /dev/null
ln -sf ../conf.avail/30-metric-aliases.conf .
ln -sf ../conf.avail/40-nonlatin.conf .
ln -sf ../conf.avail/45-latin.conf .
popd > /dev/null
echo "done."
fi
# Remove dead links
echo -n "Removing outdated configuration files... "
for config in /etc/fonts/conf.d/*; do
if [ ! -f ${config} ]; then
rm -f ${config}
fi
done
echo "done."
echo -n "updating font cache... "
/usr/bin/fc-cache -f
echo "done."
}
pre_upgrade() {
# Link new config files not present on system yet
echo -n "Symlinking new configuration files... "
pushd /etc/fonts/conf.d > /dev/null
for config in "${configs[@]}"; do
if [ ! -f ../conf.avail/${config} ]; then
ln -sf ../conf.avail/${config} .
fi
done
popd > /dev/null
echo "done."
}
post_remove() {
pushd /etc/fonts/conf.d > /dev/null
for config in "${configs[@]}"; do
rm -f ${config}
done
popd > /dev/null
}
|