[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[debian-users:05392] Bug#JP/256: naga10: Can't user naga10 font after dpkg -i
Package: naga10
Version: 1.00-1
naga10 1.00-1 パッケージをインストールしても
/usr/X11R6/lib/X11/fonts/misc の fonts.dir に
エントリが追加されないので、パッケージをインストールしただけでは
利用できない。
他の font パッケージは、postinst で
-----------
if [ -x /usr/X11R6/bin/mkfontdir ] ; then
dir=/usr/X11R6/lib/X11/fonts/$font
echo Making font directory $dir...
(cd $dir; /usr/X11R6/bin/mkfontdir)
fi
-----------
のように、fonts.dir を作成するようになっています。
また、インストールと同時に、/etc/X11/XF86Config の fonts に
パスを追加するようにもなっています。
-----------
if [ -f /etc/X11/XF86Config ]; then
# add an entry to /etc/X11/XF86Config to enable the fonts on X11 startup
if ! grep -q '^ FontPath.*freefont/' /etc/X11/XF86Config; then
sed </etc/X11/XF86Config >$TEMP \
-e '/Section "Files"/,/EndSection/{' \
-e '/EndSection/i\' \
-e ' FontPath "/usr/X11R6/lib/X11/fonts/freefont/"' \
-e '}'
cp $TEMP /etc/X11/XF86Config
rm $TEMP
fi
-----------
naga10 フォントでも、これらの処理を取り入れると
いいと思います。
それには、インストールディレクトリを
/usr/X11R6/lib/X11/fonts/misc
から
/usr/X11R6/lib/X11/fonts/naga10
とかに変えないけといけないかも?
-- System Information
Debian Release: 2.0 (frozen)
Kernel Version: Linux kiki 2.0.33 #8 Wed Jan 7 10:02:07 JST 1998 i586 unknown