source: chapter06/texinfo.xml@ c5be634

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 7.6 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since c5be634 was f6b1d91, checked in by Bruce Dubbs <bdubbs@…>, 10 years ago

Updates to the installed programs lists for several packages

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10383 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 7.5 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
8<sect1 id="ch-system-texinfo" role="wrap">
9 <?dbhtml filename="texinfo.html"?>
10
11 <sect1info condition="script">
12 <productname>texinfo</productname>
13 <productnumber>&texinfo-version;</productnumber>
14 <address>&texinfo-url;</address>
15 </sect1info>
16
17 <title>Texinfo-&texinfo-version;</title>
18
19 <indexterm zone="ch-system-texinfo">
20 <primary sortas="a-Texinfo">Texinfo</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
26 <para>The Texinfo package contains programs for reading, writing, and
27 converting info pages.</para>
28
29 <segmentedlist>
30 <segtitle>&buildtime;</segtitle>
31 <segtitle>&diskspace;</segtitle>
32
33 <seglistitem>
34 <seg>&texinfo-ch6-sbu;</seg>
35 <seg>&texinfo-ch6-du;</seg>
36 </seglistitem>
37 </segmentedlist>
38
39 </sect2>
40
41 <sect2 role="installation">
42 <title>Installation of Texinfo</title>
43
44 <para>Prepare Texinfo for compilation:</para>
45
46<screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen>
47
48 <para>Compile the package:</para>
49
50<screen><userinput remap="make">make</userinput></screen>
51
52 <para>To test the results, issue:</para>
53
54<screen><userinput remap="test">make check</userinput></screen>
55
56 <para>Install the package:</para>
57
58<screen><userinput remap="install">make install</userinput></screen>
59
60 <para>Optionally, install the components belonging in a TeX
61 installation:</para>
62 <!-- FIXME: doesn't the TeX installation in BLFS overwrite files there? -->
63
64<screen><userinput remap="install">make TEXMF=/usr/share/texmf install-tex</userinput></screen>
65
66 <variablelist>
67 <title>The meaning of the make parameter:</title>
68
69 <varlistentry>
70 <term><parameter>TEXMF=/usr/share/texmf</parameter></term>
71 <listitem>
72 <para>The <envar>TEXMF</envar> makefile variable holds the location
73 of the root of the TeX tree if, for example, a TeX package will be
74 installed later.</para>
75 </listitem>
76 </varlistentry>
77
78 </variablelist>
79
80 <para>The Info documentation system uses a plain text file to hold its list of
81 menu entries. The file is located at <filename>/usr/share/info/dir</filename>.
82 Unfortunately, due to occasional problems in the Makefiles of various packages,
83 it can sometimes get out of sync with the info pages installed on the system.
84 If the <filename>/usr/share/info/dir</filename> file ever needs to be
85 recreated, the following optional commands will accomplish the task:</para>
86
87<screen role="nodump"><userinput>cd /usr/share/info
88rm -v dir
89for f in *
90do install-info $f dir 2&gt;/dev/null
91done</userinput></screen>
92
93 </sect2>
94
95 <sect2 id="contents-texinfo" role="content">
96 <title>Contents of Texinfo</title>
97
98 <segmentedlist>
99 <segtitle>Installed programs</segtitle>
100 <segtitle>Installed directory</segtitle>
101
102 <seglistitem>
103 <seg>info, infokey, install-info, makeinfo (link to texi2any),
104 pdftexi2dvi, pod2texi, texi2any, texi2dvi, texi2pdf, and texindex</seg>
105 <seg>/usr/share/texinfo</seg>
106 </seglistitem>
107 </segmentedlist>
108
109 <variablelist>
110 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
111 <?dbfo list-presentation="list"?>
112 <?dbhtml list-presentation="table"?>
113
114 <varlistentry id="info">
115 <term><command>info</command></term>
116 <listitem>
117 <para>Used to read info pages which are similar to man pages, but
118 often go much deeper than just explaining all the available command
119 line options. For example, compare <command>man bison</command> and
120 <command>info bison</command>.</para>
121 <indexterm zone="ch-system-texinfo info">
122 <primary sortas="b-info">info</primary>
123 </indexterm>
124 </listitem>
125 </varlistentry>
126
127 <varlistentry id="infokey">
128 <term><command>infokey</command></term>
129 <listitem>
130 <para>Compiles a source file containing Info customizations into a
131 binary format</para>
132 <indexterm zone="ch-system-texinfo infokey">
133 <primary sortas="b-infokey">infokey</primary>
134 </indexterm>
135 </listitem>
136 </varlistentry>
137
138 <varlistentry id="install-info">
139 <term><command>install-info</command></term>
140 <listitem>
141 <para>Used to install info pages; it updates entries in the
142 <command>info</command> index file</para>
143 <indexterm zone="ch-system-texinfo install-info">
144 <primary sortas="b-install-info">install-info</primary>
145 </indexterm>
146 </listitem>
147 </varlistentry>
148
149 <varlistentry id="makeinfo">
150 <term><command>makeinfo</command></term>
151 <listitem>
152 <para>Translates the given Texinfo source documents into
153 info pages, plain text, or HTML</para>
154 <indexterm zone="ch-system-texinfo makeinfo">
155 <primary sortas="b-makeinfo">makeinfo</primary>
156 </indexterm>
157 </listitem>
158 </varlistentry>
159
160 <varlistentry id="pdftexi2dvi">
161 <term><command>pdftexi2dvi</command></term>
162 <listitem>
163 <para>Used to format the given Texinfo document into a
164 Portable Document Format (PDF) file</para>
165 <indexterm zone="ch-system-texinfo pdftexi2dvi">
166 <primary sortas="b-pdftexi2dvi">pdftexi2dvi</primary>
167 </indexterm>
168 </listitem>
169 </varlistentry>
170
171 <varlistentry id="pod2texi">
172 <term><command>pod2texi</command></term>
173 <listitem>
174 <para>Converts Pod to Texinfo format</para>
175 <indexterm zone="ch-system-texinfo pod2texi">
176 <primary sortas="b-pod2texi">pod2texi</primary>
177 </indexterm>
178 </listitem>
179 </varlistentry>
180
181 <varlistentry id="texi2any">
182 <term><command>texi2any</command></term>
183 <listitem>
184 <para>Translate Texinfo source documentation to
185 various other formats</para>
186 <indexterm zone="ch-system-texinfo texi2any">
187 <primary sortas="b-texiany">texi2any</primary>
188 </indexterm>
189 </listitem>
190 </varlistentry>
191
192 <varlistentry id="texi2dvi">
193 <term><command>texi2dvi</command></term>
194 <listitem>
195 <para>Used to format the given Texinfo document into a
196 device-independent file that can be printed</para>
197 <indexterm zone="ch-system-texinfo texi2dvi">
198 <primary sortas="b-texi2dvi">texi2dvi</primary>
199 </indexterm>
200 </listitem>
201 </varlistentry>
202
203 <varlistentry id="texi2pdf">
204 <term><command>texi2pdf</command></term>
205 <listitem>
206 <para>Used to format the given Texinfo document into a
207 Portable Document Format (PDF) file</para>
208 <indexterm zone="ch-system-texinfo texi2pdf">
209 <primary sortas="b-texi2pdf">texi2pdf</primary>
210 </indexterm>
211 </listitem>
212 </varlistentry>
213
214 <varlistentry id="texindex">
215 <term><command>texindex</command></term>
216 <listitem>
217 <para>Used to sort Texinfo index files</para>
218 <indexterm zone="ch-system-texinfo texindex">
219 <primary sortas="b-texindex">texindex</primary>
220 </indexterm>
221 </listitem>
222 </varlistentry>
223
224 </variablelist>
225
226 </sect2>
227
228</sect1>
Note: See TracBrowser for help on using the repository browser.