The FreeType2 package contains a library to allow applications to properly render TrueType fonts.
Download (HTTP): http://downloads.sourceforge.net/freetype/freetype-2.3.7.tar.bz2
Download (FTP): ftp://ftp.linux.ee/pub/gentoo/distfiles/distfiles/freetype-2.3.7.tar.bz2
Download MD5 sum: 83306194817ebdea554133b4232a34aa
Download size: 1.3 MB
Estimated disk space required: 28.2 (includes installing additional documentation)
Estimated build time: 0.4 SBU
Additional Documentation
Download (HTTP): http://downloads.sourceforge.net/freetype/freetype-doc-2.3.7.tar.bz2
Download (FTP): ftp://ftp.linux.ee/pub/gentoo/distfiles/distfiles/freetype-doc-2.3.7.tar.bz2
Download MD5 sum: 2ba135e6a126ed86e9b462167511ced8
Download size: 97 KB
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/freetype2
If you downloaded the additional documentation, unpack it into the source tree using the following command:
tar xf ../freetype-doc-2.3.7.tar.bz2 \ --strip-components=2 -C docs
Install FreeType2 by running the following commands:
sed -i -r -e 's:.*(#.*BYTE.*) .*:\1:' \ -e 's:.*(#.*SUBPIX.*) .*:\1:' \ include/freetype/config/ftoption.h && ./configure --prefix=/usr && make
This package does not come with a test suite.
Now, as the root
user:
make install && install -v -m755 -d /usr/share/doc/freetype-2.3.7 && cp -v -R docs/* /usr/share/doc/freetype-2.3.7
sed -i ... 's:.*(#.*BYTE.*) .*:\1:' ... 's:.*(#.*SUBPIX.*) .*:\1:' include/freetype/config/ftoption.h: This command enables the TrueType native bytecode interpreter and LCD optimized rendering features. These options result in improved rendering of fonts, but may have patent restrictions. Be sure to read http://www.freetype.org/patents.html before enabling these options.
Last updated on 2008-07-09 10:51:58 -0500