Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 125467 - Wine - missing *fon fonts
Summary: Wine - missing *fon fonts
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: High enhancement (vote)
Assignee: Wine Maintainers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-03-08 05:24 UTC by Milan Kníek
Modified: 2006-03-09 22:16 UTC (History)
2 users (show)

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 Milan Kníek 2006-03-08 05:24:10 UTC
Hello,

it would be nice to add a new use flag to wine ebuild to enable the fontforge dependency?

If fontforge is installed, wine compiles also the standard MS Windows fonts needed by apps to display correctly (the fonts must be placed in c:\windows\fonts - or linked to /usr/share/fonts/wine).
Comment 1 Maarten Wisse 2006-03-09 05:19:03 UTC
Could you tell us which configure switch you use exactly? I'm getting strange standard fonts with 0.9.9 too. I doubt whether it is useful to make this configure switch a use flag, since wine is pretty useless without it.
Comment 2 Milan Kníek 2006-03-09 10:45:32 UTC
(In reply to comment #1)
> Could you tell us which configure switch you use exactly? 
I think there is no switch. Configure script just checks if freetype and fontforge are installed. From user's view-point I agree that the dependency may be set as default.
--- configure.ac ---
dnl Only build the fonts dir if we have both freetype and fontforge
if test "$FONTFORGE" != "false" -a -n "$FREETYPELIBS"
then
  AC_SUBST(FONTSSUBDIRS,"fonts")
fi
--- 

Comment 3 SpanKY gentoo-dev 2006-03-09 15:44:20 UTC
since fontforge requires freetype, ive added it to the DEPEND inside of the truetype?() code

thanks for the report