source: x/installing/x7font.xml@ e6148eeb

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since e6148eeb was e6148eeb, checked in by Dan Nichilson <dnicholson@…>, 17 years ago

Use `wget -c' for large Xorg downloads

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@6949 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 5.4 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY x7fonts-download-http "http://xorg.freedesktop.org/releases/individual/font/">
8 <!ENTITY x7fonts-download-ftp "ftp://ftp.x.org/pub/individual/font/">
9 <!ENTITY x7fonts-wget "&files-anduin;/xorg/font-&xorg7-version;.wget">
10 <!ENTITY x7fonts-md5sum "&files-anduin;/xorg/font-&xorg7-version;.md5">
11 <!ENTITY x7fonts-size "13.0 MB">
12 <!ENTITY x7fonts-buildsize "100 MB">
13 <!ENTITY x7fonts-time "2.0 SBU">
14]>
15
16<sect1 id="xorg7-font" xreflabel="Xorg Fonts">
17 <?dbhtml filename="x7font.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>Xorg Fonts</title>
25
26 <indexterm zone="xorg7-font">
27 <primary sortas="a-xorg7-font">Xorg Fonts</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to Xorg Fonts</title>
32
33 <para>The <application>Xorg</application> font packages provide
34 needed fonts to the <application>Xorg</application> applications.</para>
35
36 <bridgehead renderas="sect3">Package Information</bridgehead>
37 <itemizedlist spacing="compact">
38 <listitem>
39 <para>Download (HTTP): <ulink url="&x7fonts-download-http;"/></para>
40 </listitem>
41 <listitem>
42 <para>Download (FTP): <ulink url="&x7fonts-download-ftp;"/></para>
43 </listitem>
44 <listitem>
45 <para>Download MD5 sum: <ulink url="&x7fonts-md5sum;"/></para>
46 </listitem>
47 <listitem>
48 <para>Download size: &x7fonts-size;</para>
49 </listitem>
50 <listitem>
51 <para>Estimated disk space required: &x7fonts-buildsize;</para>
52 </listitem>
53 <listitem>
54 <para>Estimated build time: &x7fonts-time;</para>
55 </listitem>
56 </itemizedlist>
57
58 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
59 <itemizedlist spacing="compact">
60 <listitem>
61 <para>Required download list: <ulink url="&x7fonts-wget;"/></para>
62 </listitem>
63 </itemizedlist>
64
65 <bridgehead renderas="sect4">Required</bridgehead>
66 <para role="required"><xref linkend="xorg7-data"/> and
67 <xref linkend="xorg7-app"/></para>
68
69 <para condition="html" role="usernotes">User Notes:
70 <ulink url='&blfs-wiki;/Xorg7Fonts'/></para>
71
72 </sect2>
73
74 <sect2>
75 <title>Downloading Xorg Fonts</title>
76
77 <para>To download the needed files using <application>wget</application>,
78 use the following commands:</para>
79
80<screen><userinput>mkdir font &amp;&amp;
81cd font &amp;&amp;
82grep -v '^#' ../font-&xorg7-version;.wget | wget -i- -c \
83 -B http://xorg.freedesktop.org/releases/individual/font/ &amp;&amp;
84md5sum -c ../font-&xorg7-version;.md5</userinput></screen>
85
86 </sect2>
87
88 <sect2 role="installation">
89 <title>Installation of Xorg Fonts</title>
90
91 <para>Run the following commands for each package:</para>
92
93<screen><userinput>./configure $XORG_CONFIG &amp;&amp;
94make</userinput></screen>
95
96 <para>These packages do not provide test suites.</para>
97
98 <para>Now as the <systemitem class="username">root</systemitem>
99 user:</para>
100
101<screen role="root"><userinput>make install</userinput></screen>
102
103 <para>When all of the fonts have been installed, the system must be
104 configured so that <application>Fontconfig</application> can find the
105 TrueType fonts since they are outside of the default search path of
106 <filename class="directory">/usr/share/fonts</filename>. Make symlinks
107 to the <application>Xorg</application> TrueType font directories by
108 running the following commands as the
109 <systemitem class="username">root</systemitem> user:</para>
110
111<screen role="root"><userinput>install -v -d -m755 /usr/share/fonts &amp;&amp;
112ln -svn $XORG_PREFIX/lib/X11/fonts/OTF /usr/share/fonts/X11-OTF &amp;&amp;
113ln -svn $XORG_PREFIX/lib/X11/fonts/TTF /usr/share/fonts/X11-TTF</userinput></screen>
114
115 </sect2>
116
117 <sect2 role="content">
118 <title>Contents</title>
119
120 <segmentedlist>
121 <segtitle>Installed Programs</segtitle>
122 <segtitle>Installed Libraries</segtitle>
123 <segtitle>Installed Directories</segtitle>
124
125 <seglistitem>
126 <seg>bdftruncate and ucs2any</seg>
127 <seg>None</seg>
128 <seg><envar>$XORG_PREFIX</envar>/fonts and
129 /usr/share/fonts/X11-{TTF,OTF}</seg>
130 </seglistitem>
131 </segmentedlist>
132
133 <variablelist>
134 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
135 <?dbfo list-presentation="list"?>
136 <?dbhtml list-presentation="table"?>
137
138 <varlistentry id="bdftruncate-x7">
139 <term><command>bdftruncate</command></term>
140 <listitem>
141 <para>generates a truncated BDF font from an ISO 10646-1-encoded
142 BDF font.</para>
143 <indexterm zone="xorg7-font bdftruncate-x7">
144 <primary sortas="b-bdftruncate">bdftruncate</primary>
145 </indexterm>
146 </listitem>
147 </varlistentry>
148
149 <varlistentry id="ucs2any-x7">
150 <term><command>ucs2any</command></term>
151 <listitem>
152 <para>generates BDF fonts containing subsets of ISO 10646-1
153 codepoints.</para>
154 <indexterm zone="xorg7-font ucs2any-x7">
155 <primary sortas="b-ucs2any">ucs2any</primary>
156 </indexterm>
157 </listitem>
158 </varlistentry>
159
160 </variablelist>
161
162 </sect2>
163
164</sect1>
Note: See TracBrowser for help on using the repository browser.