source: x/installing/x7font.xml@ 5e8be1c

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 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 5e8be1c was 5e8be1c, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

XML tags fixes on Xorg7 pages.

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

  • Property mode set to 100644
File size: 3.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/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 " ">
9 <!ENTITY x7fonts-md5sum "http://anduin.linuxfromscratch.org/sources/BLFS/svn/x/files/md5sums">
10 <!ENTITY x7fonts-size "13.3 MB">
11 <!ENTITY x7fonts-buildsize "100 MB">
12 <!ENTITY x7fonts-time "2.0 SBU">
13]>
14
15<sect1 id="xorg7-font" xreflabel="Xorg Fonts">
16 <?dbhtml filename="x7font.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy: dj $</othername>
20 <date>$Date: 2006-04-15 23:04:51 -0500 (Sat, 15 Apr 2006) $</date>
21 </sect1info>
22
23 <title>Xorg Fonts</title>
24
25 <indexterm zone="xorg7-font">
26 <primary sortas="a-xorg7-font">Xorg Fonts</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Xorg Fonts</title>
31
32 <para>The <application>Xorg</application> font packages provide
33 needed fonts to the <application>Xorg</application> applications.</para>
34
35 <bridgehead renderas="sect3">Package Information</bridgehead>
36 <itemizedlist spacing="compact">
37 <listitem>
38 <para>Download (HTTP): <ulink url="&x7fonts-download-http;"/></para>
39 </listitem>
40 <listitem>
41 <para>Download (FTP): <ulink url="&x7fonts-download-ftp;"/></para>
42 </listitem>
43 <listitem>
44 <para>Download MD5 sum: <ulink url="&x7fonts-md5sum;"/></para>
45 </listitem>
46 <listitem>
47 <para>Download size: &x7fonts-size;</para>
48 </listitem>
49 <listitem>
50 <para>Estimated disk space required: &x7fonts-buildsize;</para>
51 </listitem>
52 <listitem>
53 <para>Estimated build time: &x7fonts-time;</para>
54 </listitem>
55 </itemizedlist>
56
57 <bridgehead renderas="sect4">Required</bridgehead>
58 <para role="required"><xref linkend="xorg7-data"/> and
59 <xref linkend="xorg7-app"/></para>
60
61 <para condition="html" role="usernotes">User Notes:
62 <ulink url='&blfs-wiki;/Xorg7Fonts'/></para>
63
64 </sect2>
65
66 <sect2>
67 <title>Downloading Xorg Fonts</title>
68
69 <para>To download the needed files using <application>wget</application>,
70 use the following commands:</para>
71
72<screen><userinput>wget http://anduin.linuxfromscratch.org/sources/BLFS/svn/x/wget/font-7.1.wget &amp;&amp;
73mkdir font &amp;&amp;
74cd font &amp;&amp;
75wget -B http://xorg.freedesktop.org/releases/individual/font/ -i ../font-7.1.wget</userinput></screen>
76
77 </sect2>
78
79 <sect2 role="installation">
80 <title>Installation of Xorg Fonts</title>
81
82 <para>Run the following commands for each package:</para>
83
84<screen><userinput>./configure $XORG_CONFIG &amp;&amp;
85make</userinput></screen>
86
87 <para>These packages do not provide test suites.</para>
88
89 <para>Now as the <systemitem class="username">root</systemitem>
90 user:</para>
91
92<screen role="root"><userinput>make install</userinput></screen>
93
94 <para>When all of the fonts have been installed, the system must be
95 configured so that <application>Fontconfig</application> can find the
96 TrueType fonts since they are outside of the default search path of
97 <filename class="directory">/usr/share/fonts</filename>. Make symlinks
98 to the <application>Xorg</application> TrueType font directories by
99 running the following commands as the
100 <systemitem class="username">root</systemitem> user:</para>
101
102<screen role="root"><userinput>install -v -d -m755 /usr/share/fonts &amp;&amp;
103ln -svn $XORG_PREFIX/lib/X11/fonts/OTF /usr/share/fonts/X11-OTF &amp;&amp;
104ln -svn $XORG_PREFIX/lib/X11/fonts/TTF /usr/share/fonts/X11-TTF</userinput></screen>
105
106 </sect2>
107
108</sect1>
Note: See TracBrowser for help on using the repository browser.