config is in x-ttcidfont-conf 32+nmu2.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
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 | #! /bin/sh
set -e
. /usr/share/debconf/confmodule
FILE='/etc/defoma/config/x-ttcidfont-conf.conf'
X_TRUETYPE_METHOD=
if [ -f $FILE ]; then
sed -e 's/^SPACING_FOR_FIXED.*//' $FILE > $FILE.new
mv $FILE.new $FILE
. $FILE
fi
if [ "$X_TRUETYPE_METHOD" = xtt ] || [ "$X_TRUETYPE_METHOD" = freetype ]; then
db_set x-ttcidfont-conf/tt_backend $X_TRUETYPE_METHOD
fi
db_input medium x-ttcidfont-conf/tt_backend || true
db_go
db_get x-ttcidfont-conf/tt_backend || true
if [ "$RET" = xtt ]; then
db_input low x-ttcidfont-conf/xtt_vl || true
db_go
fi
|