Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 99534 - /etc/init.d/xfs (xorg-x11-6.8.2-r2) doesn't find CP1251 encoding in TTF fonts
Summary: /etc/init.d/xfs (xorg-x11-6.8.2-r2) doesn't find CP1251 encoding in TTF fonts
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: High major (vote)
Assignee: Gentoo X packagers
URL:
Whiteboard:
Keywords: Inclusion
Depends on:
Blocks:
 
Reported: 2005-07-19 08:02 UTC by Alexander Glyzov
Modified: 2005-07-22 14:01 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Alexander Glyzov 2005-07-19 08:02:34 UTC
when /etc/init.d/xfs regenerate fonts.dir and fonts.scale files,
it always execute mkfontscale after successful execution of ttmkfdir,
thus making ttmkfdir useless. Resulting fonts.scale & fonts.dir does't
contains some font encodings (for example CP1251).

This is caused by typo in /etc/init.d/xfs at line 249:
   if [ ${ttmkfdir_return} -ne 1 ]
must be:
   if [ ${ttmkfdir_return} -ne 0 ]


Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Comment 1 Donnie Berkholz (RETIRED) gentoo-dev 2005-07-19 09:57:49 UTC
Ah, good catch! I've been looking for a while for an actual example of where
mkfontscale is less capable than ttmkfdir.
Comment 2 Donnie Berkholz (RETIRED) gentoo-dev 2005-07-20 14:28:24 UTC
This should be fixed in 6.8.99.15 -- I'll get a fix into 6.8.2-r2 later on.
Comment 3 Donnie Berkholz (RETIRED) gentoo-dev 2005-07-22 14:01:39 UTC
(In reply to comment #2)
> This should be fixed in 6.8.99.15 -- I'll get a fix into 6.8.2-r2 later on.

Done. Thanks for the detailed report.