source: chapter06/texinfo.xml@ 0fb69dd

Last change on this file since 0fb69dd was 56964fb, checked in by Jim Gifford <jim@…>, 19 years ago

Updated RaQ2 started PPC integration

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multi-arch/BOOK@4539 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 4.8 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
[752f4e5]6<sect1 id="ch-system-texinfo" role="wrap">
[673b0d8]7<title>Texinfo-&texinfo-version;</title>
8<?dbhtml filename="texinfo.html"?>
9
10<indexterm zone="ch-system-texinfo"><primary sortas="a-Texinfo">Texinfo</primary></indexterm>
[6370fa6]11
[a001133]12<sect2 role="package"><title/>
[5888299]13<para>The Texinfo package contains programs for reading, writing, and
14converting Info documents.</para>
15
[a001133]16<segmentedlist>
17<segtitle>&buildtime;</segtitle>
18<segtitle>&diskspace;</segtitle>
19<seglistitem><seg>0.2 SBU</seg><seg>17 MB</seg></seglistitem>
20</segmentedlist>
[673b0d8]21
[a001133]22<segmentedlist>
23<segtitle>Texinfo installation depends on</segtitle>
24<seglistitem><seg>Bash, Binutils, Coreutils,
[69993f4]25Diffutils, GCC, Gettext, Glibc, Grep, Make, Ncurses, and Sed</seg></seglistitem>
[a001133]26</segmentedlist>
27</sect2>
[3554fa3a]28
[a001133]29<sect2 role="installation">
[73aedd1d]30<title>Installation of Texinfo</title>
31
32<para>Prepare Texinfo for compilation:</para>
33
34<screen><userinput>./configure --prefix=/usr</userinput></screen>
35
36<para>Compile the package:</para>
37
38<screen><userinput>make</userinput></screen>
39
[673b0d8]40<para>To test the results, issue:
[8a5f906]41<userinput>make check</userinput>.</para>
[73aedd1d]42
43<para>Install the package:</para>
44
45<screen><userinput>make install</userinput></screen>
46
[ef13657]47<para>Optionally, install the components belonging in a TeX installation:</para>
[73aedd1d]48
49<screen><userinput>make TEXMF=/usr/share/texmf install-tex</userinput></screen>
50
[5763f675]51<para>The meaning of the make parameter:</para>
[73aedd1d]52
[df8334f]53<variablelist>
54<varlistentry>
[8ad7980]55<term><parameter>TEXMF=/usr/share/texmf</parameter></term>
[752f4e5]56<listitem><para>The <envar>TEXMF</envar> makefile variable holds the location of the
[ef13657]57root of the TeX tree if, for example, a TeX package will be installed
58later.</para></listitem>
[df8334f]59</varlistentry>
60</variablelist>
[73aedd1d]61
[38bb44a]62<beginpage/>
[ef13657]63<para>The Info documentation system uses a plain text file to hold its
64list of menu entries. The file is located at
65<filename>/usr/share/info/dir</filename>. Unfortunately, due to
66occasional problems in the Makefiles of various packages, it can
67sometimes get out of step with the Info manuals installed on the
68system. If the <filename>/usr/share/info/dir</filename> file ever
69needs to be recreated, the following optional commands will accomplish
70the task:</para>
[554b366]71
72<screen><userinput>cd /usr/share/info
73rm dir
74for f in *
[673b0d8]75do install-info $f dir 2&gt;/dev/null
[554b366]76done</userinput></screen>
77
[73aedd1d]78</sect2>
[6370fa6]79
[c6cb3aa]80<sect2 id="contents-texinfo" role="content"><title>Contents of Texinfo</title>
[673b0d8]81
[c6cb3aa]82<segmentedlist>
83<segtitle>Installed programs</segtitle>
84<seglistitem><seg>info, infokey, install-info,
[69993f4]85makeinfo, texi2dvi, and texindex</seg></seglistitem>
[c6cb3aa]86</segmentedlist>
[673b0d8]87
[2256873]88<variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
[3ed279f]89<?dbfo list-presentation="list"?>
[673b0d8]90
[b8a819f]91<varlistentry id="info">
92<term><command>info</command></term>
[c6cb3aa]93<listitem>
[2256873]94<para>Used to read Info documents which are similar to man
[ef13657]95pages, but often go much deeper than just explaining all the command
[69993f4]96line options. For example, compare <command>man bison</command> and
[ef13657]97<command>info bison</command>.</para>
[3ed279f]98<indexterm zone="ch-system-texinfo info"><primary sortas="b-info">info</primary></indexterm>
[c6cb3aa]99</listitem>
100</varlistentry>
[673b0d8]101
[b8a819f]102<varlistentry id="infokey">
103<term><command>infokey</command></term>
[c6cb3aa]104<listitem>
[2256873]105<para>Compiles a source file containing Info customizations into a
106binary format</para>
[3ed279f]107<indexterm zone="ch-system-texinfo infokey"><primary sortas="b-infokey">infokey</primary></indexterm>
[c6cb3aa]108</listitem>
109</varlistentry>
[73aedd1d]110
[b8a819f]111<varlistentry id="install-info">
112<term><command>install-info</command></term>
[c6cb3aa]113<listitem>
[2256873]114<para>Used to install Info files; it updates entries in the Info index
115file</para>
[3ed279f]116<indexterm zone="ch-system-texinfo install-info"><primary sortas="b-install-info">install-info</primary></indexterm>
[c6cb3aa]117</listitem>
118</varlistentry>
[673b0d8]119
[b8a819f]120<varlistentry id="makeinfo">
121<term><command>makeinfo</command></term>
[c6cb3aa]122<listitem>
[2256873]123<para>Translates the given Texinfo source documents into
124info files, plain text, or HTML</para>
[3ed279f]125<indexterm zone="ch-system-texinfo makeinfo"><primary sortas="b-makeinfo">makeinfo</primary></indexterm>
[c6cb3aa]126</listitem>
127</varlistentry>
[673b0d8]128
[b8a819f]129<varlistentry id="texi2dvi">
130<term><command>texi2dvi</command></term>
[c6cb3aa]131<listitem>
[2256873]132<para>Used to format the given Texinfo document into a
133device-independent file that can be printed</para>
[3ed279f]134<indexterm zone="ch-system-texinfo texi2dvi"><primary sortas="b-texi2dvi">texi2dvi</primary></indexterm>
[c6cb3aa]135</listitem>
136</varlistentry>
[673b0d8]137
[b8a819f]138<varlistentry id="texindex">
139<term><command>texindex</command></term>
[c6cb3aa]140<listitem>
[2256873]141<para>Used to sort Texinfo index files</para>
[3ed279f]142<indexterm zone="ch-system-texinfo texindex"><primary sortas="b-texindex">texindex</primary></indexterm>
[c6cb3aa]143</listitem>
144</varlistentry>
145</variablelist>
[673b0d8]146
147</sect2>
148
149</sect1>
[ef13657]150
Note: See TracBrowser for help on using the repository browser.