The FreeType2 package contains a library which allows applications to properly render TrueType fonts.
This package is known to build and work properly using an LFS-7.8 platform.
Download (HTTP): http://downloads.sourceforge.net/freetype/freetype-2.6.tar.bz2
Download MD5 sum: 5682890cb0267f6671dd3de6eabd3e69
Download size: 1.7 MB
Estimated disk space required: 33 MB (includes installing additional documentation)
Estimated build time: 0.2 SBU (includes installing additional documentation)
Additional Documentation
Download (HTTP): http://downloads.sourceforge.net/freetype/freetype-doc-2.6.tar.bz2
Download MD5 sum: f456b7ead3c351c7c218bb3afd45803c
Download size: 468 KB
Harfbuzz-1.0.3 (first, install without it, after it is installed, reinstall FreeType-2.6), libpng-1.6.18, and Which-2.21
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.6.tar.bz2 --strip-components=2 -C docs
Install FreeType2 by running the following commands:
sed -i -e "/AUX.*.gxvalid/s@^# @@" \ -e "/AUX.*.otvalid/s@^# @@" \ modules.cfg && sed -ri -e 's:.*(#.*SUBPIXEL.*) .*:\1:' \ include/config/ftoption.h && ./configure --prefix=/usr --disable-static && 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.6 && cp -v -R docs/* /usr/share/doc/freetype-2.6
sed -e ...: First
command enables GX/AAT and OpenType table validation and second
command enables Subpixel Rendering and Subpixel Hinting in order to
improve font rendering. Note that Subpixel Rendering may have
patent issues. Be sure to read the 'Other
patent issues'
part of http://www.freetype.org/patents.html
before enabling this option.
--disable-static
: This
switch prevents installation of static versions of the libraries.
Last updated on 2015-09-09 21:58:46 -0700