Added new package TeX Live-20100722

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@8820 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Randy McMurchy 2011-01-18 00:13:43 +00:00
parent 7afe2f1f4a
commit f1e103ab0b
36 changed files with 525 additions and 173 deletions

View File

@ -130,9 +130,9 @@
<screen><userinput>./configure --prefix=/usr &amp;&amp;
make</userinput></screen>
<para>If you have <xref linkend="tetex"/> installed and wish to create
DVI, Postscript, HTML or text docs from the documentation source files,
issue the following command:</para>
<para>If you have <xref linkend="tetex"/> or <xref linkend="texlive"/>
installed and wish to create DVI, Postscript, HTML or text docs from the
documentation source files, issue the following command:</para>
<screen><userinput>make -C doc html txt dvi ps</userinput></screen>

View File

@ -3,7 +3,7 @@ $LastChangedBy$
$Date$
-->
<!ENTITY day "15"> <!-- Always 2 digits -->
<!ENTITY day "18"> <!-- Always 2 digits -->
<!ENTITY month "01"> <!-- Always 2 digits -->
<!ENTITY year "2011">
<!ENTITY copyrightdate "2001-&year;">
@ -849,6 +849,7 @@ $Date$
<!ENTITY paps-version "0.6.8">
<!-- Chapter 47 -->
<!ENTITY texlive-version "20100722">
<!ENTITY tetex-version "3.0">
<!ENTITY jadetex-version "3.13">

View File

@ -88,36 +88,36 @@
following commands:</para>
<screen><userinput>./configure --prefix=/usr &amp;&amp;
make</userinput></screen>
make &amp;&amp;
<para>Only <command>info</command> documentation is shipped in the package
tarball. If you wish to build alternate formats of the documentation, you
must have <xref linkend="tetex"/> installed, then issue the following
commands:</para>
<screen><userinput>make -k -C doc pdf ps html &amp;&amp;
makeinfo --html --no-split -o doc/assuan_nochunks.html doc/assuan.texi &amp;&amp;
makeinfo --plaintext -o doc/assuan.txt doc/assuan.texi</userinput></screen>
<para>If you wish to build alternate formats of the documentation, you
must have <xref linkend="tetex"/> or <xref linkend="texlive"/> installed,
then issue the following command:</para>
<screen><userinput>make -k -C doc pdf ps html</userinput></screen>
<para>To test the results, issue: <command>make check</command>.</para>
<para>Now, as the <systemitem class="username">root</systemitem>
user:</para>
<screen role="root"><userinput>make install &amp;&amp;
install -v -m644 -D README /usr/share/doc/libassuan-&libassuan-version;/README</userinput></screen>
install -v -m755 -d /usr/share/doc/libassuan-&libassuan-version; &amp;&amp;
install -v -m644 README doc/{assuan{_nochunks.html,.txt,.texi \
/usr/share/doc/libassuan-&libassuan-version;</userinput></screen>
<para>If you built the additional documentation, install it by issuing the
following commands as the <systemitem class="username">root</systemitem>
user:</para>
<screen role="root"><userinput>install -v -m755 -d /usr/share/doc/libassuan-&libassuan-version;/html &amp;&amp;
install -v -m644 doc/assuan.html/* \
/usr/share/doc/libassuan-&libassuan-version;/html &amp;&amp;
install -v -m644 doc/assuan_*.html \
/usr/share/doc/libassuan-&libassuan-version; &amp;&amp;
install -v -m644 doc/assuan.{pdf,ps,dvi,txt,texi} \
/usr/share/doc/libassuan-&libassuan-version;</userinput></screen>
<screen role="root"><userinput>install -v -m644 doc/assuan.html/* \
/usr/share/doc/libassuan-&libassuan-version;/html &amp;&amp;
install -v -m644 doc/assuan.{pdf,ps,dvi} \
/usr/share/doc/libassuan-&libassuan-version;</userinput></screen>
</sect2>

View File

@ -85,8 +85,9 @@ make</userinput></screen>
<para>Only <command>info</command> documentation is shipped in the package
tarball. If you wish to build alternate formats of the documentation,
(you must have <xref linkend="tetex"/> installed to build the PDF and
PostScript), then issue the following commands:</para>
(you must have <xref linkend="tetex"/> or <xref linkend="texlive"/>
installed to build the PDF and PostScript), then issue the following
commands:</para>
<screen><userinput>make -C doc pdf ps html &amp;&amp;
makeinfo --html --no-split -o doc/gcrypt_nochunks.html doc/gcrypt.texi &amp;&amp;

View File

@ -63,7 +63,8 @@
<para role="required"><xref linkend="glib2"/></para>
<bridgehead renderas="sect4">Optional to Build Documentation</bridgehead>
<para role="optional"><xref linkend="tetex"/></para>
<para role="optional"><xref linkend="tetex"/> or
<xref linkend="texlive"/></para>
<para condition="html" role="usernotes">User Notes:
<ulink url="&blfs-wiki;/libidl"/></para>
@ -77,27 +78,33 @@
the following commands:</para>
<screen><userinput>./configure --prefix=/usr &amp;&amp;
make</userinput></screen>
make &amp;&amp;
<para>If you have <application>teTeX</application> installed and wish to
build the documentation, issue the following commands:</para>
makeinfo --plaintext -o libIDL2.txt libIDL2.texi</userinput></screen>
<screen><userinput>make pdf &amp;&amp;
make ps &amp;&amp;
makeinfo --plaintext libIDL2.texi &gt;libIDL2.txt</userinput></screen>
<para>If you have <application>teTeX</application> or
<application>Live TeX</application> installed and wish to
build alternate forms of the documentation, issue the following
command:</para>
<screen><userinput>make pdf ps</userinput></screen>
<para>This package does not come with a test suite.</para>
<para>Now, as the <systemitem class="username">root</systemitem> user:</para>
<screen role="root"><userinput>make install</userinput></screen>
<screen role="root"><userinput>make install
<para>If you built the documentation, issue the following commands as the
<systemitem class="username">root</systemitem> user to install it:</para>
install -v -m755 -d /usr/share/doc/libIDL-&libidl-version; &amp;&amp;
install -v -m644 README libIDL2.{txt,texi} \
/usr/share/doc/libIDL-&libidl-version;</userinput></screen>
<screen role="root"><userinput>install -v -m755 -d /usr/share/doc/libIDL-&libidl-version; &amp;&amp;
install -v -m644 libIDL2.{pdf,dvi,ps,txt} README \
/usr/share/doc/libIDL-&libidl-version;</userinput></screen>
<para>If you built the additional documentation, issue the following
command as the <systemitem class="username">root</systemitem> user to
install it:</para>
<screen role="root"><userinput>install -v -m644 libIDL2.{pdf,dvi,ps} \
/usr/share/doc/libIDL-&libidl-version;</userinput></screen>
</sect2>
<sect2 role="content">

View File

@ -77,18 +77,18 @@
following commands:</para>
<screen><userinput>./configure --prefix=/usr &amp;&amp;
make</userinput></screen>
make &amp;&amp;
<para>Only <command>info</command> documentation is shipped in the package
tarball. If you wish to build alternate formats of the documentation, you
must have <xref linkend="tetex"/> installed, then issue the following
commands:</para>
makeinfo --html --no-split -o doc/ksba_nochunks.html doc/ksba.texi &amp;&amp;
makeinfo --plaintext -o doc/ksba.txt doc/ksba.texi</userinput></screen>
<para>If you wish to build alternate formats of the documentation, you
must have <xref linkend="tetex"/> or <xref linkend="texlive"/> installed,
then issue the following commands:</para>
<screen><userinput>tex --output-directory=doc ksba.texi &amp;&amp;
dvips -o doc/ksba.ps doc/ksba.dvi &amp;&amp;
make -C doc pdf html &amp;&amp;
makeinfo --html --no-split -o doc/ksba_nochunks.html doc/ksba.texi &amp;&amp;
makeinfo --plaintext -o doc/ksba.txt doc/ksba.texi</userinput></screen>
make -C doc pdf html</userinput></screen>
<para>To test the results, issue: <command>make check</command>.</para>
@ -96,7 +96,10 @@ makeinfo --plaintext -o doc/ksba.txt doc/ksba.texi</userinput></
user:</para>
<screen role="root"><userinput>make install &amp;&amp;
install -v -m644 -D README /usr/share/doc/libksba-&libksba-version;/README</userinput></screen>
install -v -m755 -d /usr/share/doc/libksba-&libksba-version; &amp;&amp;
install -v -m644 README doc/ksba{_nochunks.html,.txt,.texi} \
/usr/share/doc/libksba-&libksba-version;</userinput></screen>
<para>If you built the additional documentation, install it by issuing the
following commands as the <systemitem class="username">root</systemitem>
@ -105,9 +108,7 @@ install -v -m644 -D README /usr/share/doc/libksba-&libksba-version;/README</user
<screen role="root"><userinput>install -v -m755 -d /usr/share/doc/libksba-&libksba-version;/html &amp;&amp;
install -v -m644 doc/ksba.html/* \
/usr/share/doc/libksba-&libksba-version;/html &amp;&amp;
install -v -m644 doc/ksba_*.html \
/usr/share/doc/libksba-&libksba-version; &amp;&amp;
install -v -m644 doc/ksba.{pdf,ps,dvi,txt,texi} \
install -v -m644 doc/ksba.{pdf,ps,dvi} \
/usr/share/doc/libksba-&libksba-version;</userinput></screen>
</sect2>

View File

@ -94,9 +94,9 @@
makeinfo -o slib.txt --plaintext slib.texi &amp;&amp;
makeinfo -o slib.html --html --no-split slib.texi</userinput></screen>
<para>If you have <xref linkend="tetex"/> installed and wish to
build PDF or Postscript documentation, issue any or all of
the following commands:</para>
<para>If you have <xref linkend="tetex"/> or <xref linkend="texlive"/>
installed and wish to build PDF or Postscript documentation, issue any or
all of the following commands:</para>
<screen><userinput>texi2pdf slib.texi &amp;&amp;
texi2dvi slib.texi &amp;&amp;

View File

@ -157,7 +157,7 @@ xreflabel="ImageMagick-&imagemagick-version;-&imagemagick-patch-version;">
<ulink url="http://wvware.sourceforge.net/">libwmf</ulink>,
<ulink url="http://www.mpeg.org/MSSG/">MPEG-2 Video Codec</ulink>,
<ulink url="http://netpbm.sourceforge.net/">Netpbm</ulink>,
<xref linkend="tetex"/>,
<xref linkend="tetex"/> or <xref linkend="texlive"/>,
<ulink url="http://www.xfig.org/">Transfig</ulink>,
<ulink url="http://txt2html.sourceforge.net/">txt2html</ulink>
(requires Perl Module

View File

@ -97,35 +97,35 @@
--disable-pinentry-gtk \
--disable-pinentry-gtk2 \
--disable-pinentry-qt &amp;&amp;
make</userinput></screen>
make &amp;&amp;
<para>Only <command>info</command> documentation is shipped in the package
tarball. If you wish to build alternate formats of the documentation, you
must have <xref linkend="tetex"/> installed, then issue the following
commands:</para>
<screen><userinput>make -k -C doc pdf ps html &amp;&amp;
makeinfo --html --no-split -o doc/pinentry_nochunks.html doc/pinentry.texi &amp;&amp;
makeinfo --plaintext -o doc/pinentry.txt doc/pinentry.texi</userinput></screen>
<para>If you wish to build alternate formats of the documentation, you
must have <xref linkend="tetex"/> or <xref linkend="texlive"/> installed,
then issue the following command:</para>
<screen><userinput>make -k -C doc pdf ps html</userinput></screen>
<para>This package does not come with a test suite.</para>
<para>Now, as the <systemitem class="username">root</systemitem> user:</para>
<screen role="root"><userinput>make install &amp;&amp;
install -v -m644 -D README /usr/share/doc/pinentry-&pinentry-version;/README</userinput></screen>
install -v -m755 -d /usr/share/doc/pinentry-&pinentry-version;/html &amp;&amp;
install -v -m644 README doc/pinentry{_*.html,.txt,.texi} \
/usr/share/doc/pinentry-&pinentry-version;</userinput></screen>
<para>If you built the additional documentation, install it by issuing the
following commands as the <systemitem class="username">root</systemitem>
user:</para>
<screen role="root"><userinput>install -v -m755 -d /usr/share/doc/pinentry-&pinentry-version;/html &amp;&amp;
install -v -m644 doc/pinentry.html/* \
/usr/share/doc/pinentry-&pinentry-version;/html &amp;&amp;
install -v -m644 doc/pinentry_*.html \
/usr/share/doc/pinentry-&pinentry-version; &amp;&amp;
install -v -m644 doc/pinentry.{pdf,ps,dvi,txt,texi} \
/usr/share/doc/pinentry-&pinentry-version;</userinput></screen>
<screen role="root"><userinput>install -v -m644 doc/pinentry.html/* \
/usr/share/doc/pinentry-&pinentry-version;/html &amp;&amp;
install -v -m644 doc/pinentry.{pdf,ps,dvi} \
/usr/share/doc/pinentry-&pinentry-version;</userinput></screen>
</sect2>

View File

@ -74,7 +74,7 @@
<para role="optional"><xref linkend="qt4"/> (for doxywizard),
<xref linkend="graphviz"/>,
<xref linkend="python"/>,
<xref linkend="tetex"/>,
<xref linkend="tetex"/> or <xref linkend="texlive"/>,
<!-- <xref linkend="espgs"/> or --><xref linkend="gs"/></para>
<para condition="html" role="usernotes">User Notes:
@ -105,8 +105,9 @@ make</userinput></screen>
<para>If you wish to generate and install the package documentation
(note that man pages have already been installed), you must have
<application>Python</application>, <application>teTeX</application> (for
HTML docs) and <application>Ghostscript</application> (for PDF docs)
<application>Python</application>, <application>teTeX</application> or
<application>TeX Live</application> (for HTML docs) and
<application>Ghostscript</application> (for PDF docs)
installed, then issue the following command as the
<systemitem class="username">root</systemitem> user:</para>
@ -131,10 +132,10 @@ make</userinput></screen>
packages are required if you wish to use extended capabilities. If you
need to use the language translation features, you must have
<xref linkend="python"/> installed. If you require formulas to
create PDF documentation, then you must have <xref linkend="tetex"/>
installed. If you require formulas to convert PostScript files to bitmaps,
then you must have <xref linkend="gs"/><!-- or <xref linkend="espgs"/> -->
installed.</para>
create PDF documentation, then you must have <xref linkend="tetex"/> or
<xref linkend="texlive"/> installed. If you require formulas to convert
PostScript files to bitmaps, then you must have <xref linkend="gs"/>
<!-- or <xref linkend="espgs"/> --> installed.</para>
</sect2>

View File

@ -102,9 +102,9 @@ do
done &amp;&amp;
unset DIRNAME</userinput></screen>
<para>If you have <xref linkend="tetex"/> installed and wish to
build alternate formats (PDF and postscript) of the documentation, issue
the following commands:</para>
<para>If you have <xref linkend="tetex"/> or <xref linkend="texlive"/>
installed and wish to build alternate formats (PDF and postscript) of the
documentation, issue the following commands:</para>
<screen><userinput>for DIRNAME in goops r5rs ref tutorial
do

View File

@ -68,7 +68,8 @@
<bridgehead renderas="sect3">NASM Dependencies</bridgehead>
<bridgehead renderas="sect4">Optional (for Building Documentation)</bridgehead>
<para role="optional"><xref linkend="tetex"/>, and
<para role="optional"><xref linkend="tetex"/> or
<xref linkend="texlive"/>, and
<!-- <xref linkend="espgs"/> or --><xref linkend="gs"/></para>
<para condition="html" role="usernotes">User Notes:
@ -98,7 +99,8 @@ makeinfo --plaintext -o rdoff/doc/rdoff.txt \
<screen><userinput>make doc</userinput></screen>
<para>To build the RDOFF PDF and Postscript documentation,
ensure you have <xref linkend="tetex"/> installed and issue:</para>
ensure you have <xref linkend="tetex"/> or <xref linkend="texlive"/>
installed and issue:</para>
<screen><userinput>sed -i -e "s/dvips \$&lt;/&amp; -o rdoff.ps/" rdoff/doc/Makefile &amp;&amp;
make -C rdoff/doc pdf &amp;&amp;

View File

@ -85,9 +85,9 @@ makeinfo --html -o doc/html doc/cpio.texi &amp;&amp;
makeinfo --html --no-split -o doc/cpio.html doc/cpio.texi &amp;&amp;
makeinfo --plaintext -o doc/cpio.txt doc/cpio.texi</userinput></screen>
<para>If you have <xref linkend="tetex"/> installed and wish to create
PDF or Postscript documentation, issue one or both of the following
commands:</para>
<para>If you have <xref linkend="tetex"/> or <xref linkend="texlive"/>
installed and wish to create PDF or Postscript documentation, issue one or
both of the following commands:</para>
<screen><userinput>make -C doc pdf &amp;&amp;
make -C doc ps</userinput></screen>

View File

@ -85,7 +85,7 @@
<xref linkend="libgnome-keyring"/>,
<xref linkend="gtk-doc"/>,
<xref linkend="libtiff"/>,
<xref linkend="tetex"/> (required to build the DVI viewer),
<xref linkend="tetex"/> or <xref linkend="texlive"/> (required to build the DVI viewer),
<xref linkend="nautilus"/>
(required to build the <application>Nautilus</application> plugin),
<xref linkend="poppler"/> (required for PDF support and must be built
@ -186,8 +186,8 @@ make</userinput></screen>
compile with support for impress presentations.</para>
<para><option>--enable-dvi</option>: Use this parameter if you have the
<application>teTeX</application> package installed and you wish to build
support to view DVI files.</para>
<application>teTeX</application> or <application>TeX Live</application>
package installed and you wish to build support to view DVI files.</para>
<para><option>--enable-t1lib</option>: Use this parameter if you have the
<application>t1lib</application> package installed and you wish to build

View File

@ -63,9 +63,9 @@
<xref linkend="libgnomeprintui"/></para>
<bridgehead renderas="sect4">Optional</bridgehead>
<para role="optional"><xref linkend="tetex"/> and
<ulink
url="http://packages.qa.debian.org/libp/libpaper.html">libpaper</ulink></para>
<para role="optional"><xref linkend="tetex"/> or
<xref linkend="texlive"/>, and
<ulink url="http://packages.qa.debian.org/libp/libpaper.html">libpaper</ulink></para>
<para condition="html" role="usernotes">User Notes:
<ulink url="&blfs-wiki;/gpdf"/></para>

View File

@ -41,6 +41,15 @@
-->
<listitem>
<para>January 18th, 2011</para>
<itemizedlist>
<listitem>
<para>[randy] - Added new package TeX Live-20100722.</para>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<para>January 15th, 2011</para>
<itemizedlist>

View File

@ -92,7 +92,7 @@
<!-- There is an internal copy of Xpdf and there are *no* hooks to any
outside version. Commenting this out for now
<xref linkend="xpdf"/>, -->
<xref linkend="tetex"/>,
<xref linkend="tetex"/> or <xref linkend="texlive"/>,
<xref linkend="fribidi"/>,
<ulink url="http://www.gphoto.org/">libgphoto2</ulink>,
<ulink url="http://www.sfr-fresh.com/linux/misc/t1lib">t1lib</ulink>,

View File

@ -94,7 +94,7 @@
<bridgehead renderas="sect4">Optional (Required to Build
Manuals)</bridgehead>
<para role="optional"><xref linkend="libxslt"/>,
<xref linkend="tetex"/>,
<xref linkend="tetex"/> or <xref linkend="texlive"/>,
<xref linkend="docbook-utils"/>,
<ulink url="http://www.xfig.org/">Transfig</ulink> (all needed
to build the HTML manual), plus

View File

@ -60,8 +60,8 @@
<bridgehead renderas="sect3">libdvdcss Dependencies</bridgehead>
<bridgehead renderas="sect4">Optional (to Create Documentation)</bridgehead>
<para role="optional"><xref linkend="doxygen"/> and
<xref linkend="tetex"/></para>
<para role="optional"><xref linkend="doxygen"/>, and
<xref linkend="tetex"/> or <xref linkend="texlive"/></para>
<para condition="html" role="usernotes">User Notes:
<ulink url="&blfs-wiki;/libdvdcss"/></para>
@ -92,10 +92,10 @@
make</userinput></screen>
<para>If you have <application>Doxygen</application> and
<application>teTeX</application> installed, HTML and Postscript
documentation was created during the build. If you also want to
install a PDF version of the reference manual, issue the following
command:</para>
<application>teTeX</application> or <application>TeX Live</application>
installed, HTML and Postscript documentation was created during the build.
If you also want to install a PDF version of the reference manual, issue
the following command:</para>
<screen><userinput>make -C doc/latex pdf</userinput></screen>
@ -106,12 +106,11 @@ make</userinput></screen>
<screen role="root"><userinput>make install</userinput></screen>
<para>If you have <application>Doxygen</application> and
<application>teTeX</application> installed, install the documentation using
the following commands as the
<application>teTeX</application> or <application>TeX Live</application>
installed, install the documentation using the following commands as the
<systemitem class="username">root</systemitem> user:</para>
<screen role="root"><userinput>
install -v -m755 -d /usr/share/doc/libdvdcss-&libdvdcss-version;/html &amp;&amp;
<screen role="root"><userinput>install -v -m755 -d /usr/share/doc/libdvdcss-&libdvdcss-version;/html &amp;&amp;
install -v -m644 doc/html/* /usr/share/doc/libdvdcss-&libdvdcss-version;/html &amp;&amp;
install -v -m644 doc/latex/*.{pdf,ps,dvi} \
/usr/share/doc/libdvdcss-&libdvdcss-version;</userinput></screen>

View File

@ -67,7 +67,8 @@
<bridgehead renderas="sect4">Optional</bridgehead>
<para role="optional"><xref linkend="sdl"/> and
<xref linkend="libpng"/> (both to build the example players),
<xref linkend="doxygen"/>, <xref linkend="tetex"/>,
<xref linkend="doxygen"/>,
<xref linkend="tetex"/> or <xref linkend="texlive"/>,
<ulink url="http://bibtexml.sourceforge.net">BibTex</ulink>, and
<ulink url="http://www.xfig.org/">Transfig</ulink>
(all four to build the API documentation),

View File

@ -65,9 +65,9 @@
<bridgehead renderas="sect4">Optional</bridgehead>
<para role="optional">both
<xref linkend="doxygen"/> and
<xref linkend="tetex"/> (specifically, pdflatex and htlatex)
to build the PDF documentation</para>
<xref linkend="doxygen"/>, and
<xref linkend="tetex"/> or <xref linkend="texlive"/>
(specifically, pdflatex and htlatex) to build the PDF documentation</para>
<para condition="html" role="usernotes">User Notes:
<ulink url='&blfs-wiki;/Libvorbis'/></para>

View File

@ -142,8 +142,8 @@ make</userinput></screen>
<application>texi2html</application> installed, the HTML
documentation was built during the <command>make</command> process. If you
wish to create additional formats of the documentation, you must have
<application>teTeX</application> installed, and issue the following
commands:</para>
<application>teTeX</application> or <xref linkend="texlive"/> installed,
and issue the following commands:</para>
<screen><userinput>cd doc &amp;&amp;
for DOCNAME in faq ffmpeg-doc ffplay-doc ffprobe-doc ffserver-doc general libavfilter; do

View File

@ -98,8 +98,9 @@
<screen><userinput>./configure --prefix=/usr --libexecdir=/usr/lib &amp;&amp;
make</userinput></screen>
<para>If you have <xref linkend="tetex"/> installed and you wish to create
documentation in alternate formats, issue the following command:</para>
<para>If you have <xref linkend="tetex"/> or <xref linkend="texlive"/>
installed and you wish to create documentation in alternate formats, issue
the following command:</para>
<screen><userinput>make -C doc pdf html</userinput></screen>

View File

@ -105,15 +105,16 @@
<screen><userinput>./configure --prefix=/usr \
--libexecdir=/usr/lib/gnupg2 \
--docdir=/usr/share/doc/gnupg-&gnupg2-version; &amp;&amp;
make</userinput></screen>
make
<para>If you have <xref linkend="tetex"/> installed and you wish to create
documentation in alternate formats, issue the following commands:</para>
makeinfo --html --no-split -o doc/gnupg_nochunks.html doc/gnupg.texi &amp;&amp;
makeinfo --plaintext -o doc/gnupg.txt doc/gnupg.texi</userinput></screen>
<screen><userinput>make -C doc pdf ps html &amp;&amp;
makeinfo --html --no-split -o doc/gnupg_nochunks.html \
doc/gnupg.texi &amp;&amp;
makeinfo --plaintext -o doc/gnupg.txt doc/gnupg.texi</userinput></screen>
<para>If you have <xref linkend="tetex"/> or <xref linkend="texlive"/>
installed and you wish to create documentation in alternate formats,
issue the following commands:</para>
<screen><userinput>make -C doc pdf ps html</userinput></screen>
<para>To test the results, issue: <command>make check</command>.</para>
@ -126,7 +127,13 @@ makeinfo --plaintext -o doc/gnupg.txt doc/gnupg.texi</userinput></screen>
chmod -v 4755 /usr/bin/gpg &amp;&amp;
-->
<screen role="root"><userinput>make install</userinput></screen>
<screen role="root"><userinput>make install
install -v -m755 -d /usr/share/doc/gnupg-&gnupg2-version;/html &amp;&amp;
install -v -m644 doc/gnupg_nochunks.html \
/usr/share/doc/gnupg-&gnupg2-version;/gnupg.html &amp;&amp;
install -v -m644 doc/*.texi doc/gnupg.txt \
/usr/share/doc/gnupg-&gnupg2-version;</userinput></screen>
<!-- Documentation is installed by default -->
@ -143,14 +150,9 @@ install -v -m644 doc/{DETAILS,KEYSERVER,OpenPGP,TRANSLATE} \
using the following command as the
<systemitem class="username">root</systemitem> user:</para>
<screen role="root"><userinput>install -v -m755 -d /usr/share/doc/gnupg-&gnupg2-version;/html &amp;&amp;
install -v -m644 doc/gnupg.html/* \
<screen role="root"><userinput>install -v -m644 doc/gnupg.html/* \
/usr/share/doc/gnupg-&gnupg2-version;/html &amp;&amp;
install -v -m644 doc/gnupg_nochunks.html \
/usr/share/doc/gnupg-&gnupg2-version;/gnupg.html &amp;&amp;
install -v -m644 doc/*.texi \
/usr/share/doc/gnupg-&gnupg2-version; &amp;&amp;
install -v -m644 doc/gnupg.{pdf,dvi,ps,txt} \
install -v -m644 doc/gnupg.{pdf,dvi,ps} \
/usr/share/doc/gnupg-&gnupg2-version;</userinput></screen>
</sect2>

View File

@ -143,10 +143,10 @@ makeinfo --html --no-split -o doc/hx509.html doc/hx509.texi &amp;&amp;
makeinfo --plaintext -o doc/heimdal.txt doc/heimdal.texi &amp;&amp;
makeinfo --plaintext -o doc/hx509.txt doc/hx509.texi</userinput></screen>
<para>If you have <xref linkend="tetex"/> installed and wish to create
PDF and Postscript forms of the documentation, change into the
<filename class='directory'>doc</filename> directory and issue any or all
of the following commands:</para>
<para>If you have <xref linkend="tetex"/> or <xref linkend="texlive"/>
installed and wish to create PDF and Postscript forms of the documentation,
change into the <filename class='directory'>doc</filename> directory and
issue any or all of the following commands:</para>
<screen><userinput>pushd doc &amp;&amp;
texi2pdf heimdal.texi &amp;&amp;

View File

@ -106,24 +106,31 @@
--bindir=/bin \
--sysconfdir=/etc/zsh \
--enable-etcdir=/etc/zsh &amp;&amp;
make</userinput></screen>
make &amp;&amp;
<para>If you have <xref linkend="tetex"/> installed, you can build
additional formats of the documentation by issuing any or all of
the following commands:</para>
<screen><userinput>texi2pdf Doc/zsh.texi -o Doc/zsh.pdf &amp;&amp;
texi2html Doc/zsh.texi --output=Doc/zsh_1file_t.html &amp;&amp;
makeinfo Doc/zsh.texi --html --no-split --no-headers \
-o Doc/zsh_1file_m.html &amp;&amp;
makeinfo Doc/zsh.texi --html -o Doc/html &amp;&amp;
makeinfo Doc/zsh.texi --html --no-split --no-headers \
-o Doc/zsh.html &amp;&amp;
makeinfo Doc/zsh.texi --plaintext -o Doc/zsh.txt</userinput></screen>
<para>If you have <xref linkend="tetex"/> or <xref linkend="texlive"/>
installed, you can build PDF format of the documentation by issuing
the following command:</para>
<screen><userinput>texi2pdf Doc/zsh.texi -o Doc/zsh.pdf</userinput></screen>
<para>To test the results, issue: <command>make check</command>.</para>
<para>Now, as the <systemitem class="username">root</systemitem> user:</para>
<screen role="root"><userinput>make install &amp;&amp;
make infodir=/usr/share/info install.info</userinput></screen>
make infodir=/usr/share/info install.info
install -v -m755 -d /usr/share/doc/zsh-&zsh-version;/html &amp;&amp;
install -v -m644 Doc/html/* \
/usr/share/doc/zsh-&zsh-version;/html &amp;&amp;
install -v -m644 Doc/zsh.{html,txt} \
/usr/share/doc/zsh-&zsh-version;</userinput></screen>
<para>If you downloaded the optional documentation, install it by issuing
the following commands as the
@ -132,11 +139,11 @@ make infodir=/usr/share/info install.info</userinput></screen>
<screen role="root"><userinput>make htmldir=/usr/share/doc/zsh-&zsh-version;/html install.html &amp;&amp;
install -v -m644 Doc/zsh.dvi /usr/share/doc/zsh-&zsh-version;</userinput></screen>
<para>If you built any additional formats of the documentation, install
them by issuing the following command as the
<para>If you built the PDF format of the documentation, install
it by issuing the following command as the
<systemitem class="username">root</systemitem> user:</para>
<screen role="root"><userinput>install -v -m644 Doc/{zsh_1file*,*.{pdf,txt}} \
<screen role="root"><userinput>install -v -m644 Doc/zsh.pdf \
/usr/share/doc/zsh-&zsh-version;</userinput></screen>
</sect2>

View File

@ -68,7 +68,7 @@
<para role="optional"><xref linkend="cups"/>,
<ulink url="http://www.linuxprinting.org/foomatic.html">Foomatic</ulink>,
<ulink url="http://www.linuxprinting.org/ijs/">IJS</ulink>,
<xref linkend="tetex"/>,
<xref linkend="tetex"/> or <xref linkend="texlive"/>,
<xref linkend="docbook-utils"/> and
<!-- <xref linkend="espgs"/> or --><xref linkend="gs"/></para>

View File

@ -72,7 +72,7 @@
<bridgehead renderas="sect4">Optional (to Regenerate Documentation)</bridgehead>
<para role="optional"><xref linkend="imagemagick"/>,
<xref linkend="tetex"/>,
<xref linkend="tetex"/> or <xref linkend="texlive"/>,
<xref linkend="doxygen"/>, and
<xref linkend="docbook-utils"/></para>

View File

@ -90,7 +90,7 @@
<bridgehead renderas="sect4">Optional</bridgehead>
<para role="optional"><xref linkend="x-window-system"/>,
<xref linkend="tetex"/>,
<xref linkend="tetex"/> or <xref linkend="texlive"/>,
<xref linkend="gs"/><!-- or <xref linkend="espgs"/> -->,
<ulink
url="http://packages.debian.org/unstable/source/libpaper">libpaper</ulink>,

View File

@ -92,35 +92,36 @@
--sysconfdir=/etc/enscript \
--localstatedir=/var \
--with-media=Letter &amp;&amp;
make</userinput></screen>
make &amp;&amp;
<para>Though it is very sparse, if you have <xref linkend="tetex"/>
installed, you can create alternate forms of the documentation by issuing
any or all of the following commands:</para>
makeinfo --html -o docs/html enscript.texi &amp;&amp;
makeinfo --html --no-split -o docs/enscript.html enscript.texi &amp;&amp;
makeinfo --plaintext -o enscript.txt enscript.texi</userinput></screen>
<screen><userinput>make -C docs ps &amp;&amp;
make -C docs pdf &amp;&amp;
<para>If you have <xref linkend="tetex"/> or <xref linkend="texlive"/>
installed, you can create Postscript and PDF documentation by issuing
the following command:</para>
cd docs &amp;&amp;
texi2html enscript.texi &amp;&amp;
makeinfo --plaintext -o enscript.txt enscript.texi &amp;&amp;
cd ..</userinput></screen>
<screen><userinput>make -C docs ps pdf</userinput></screen>
<para>To test the results, issue: <command>make check</command>.</para>
<para>Now, as the <systemitem class="username">root</systemitem> user:</para>
<screen role="root"><userinput>make install &amp;&amp;
install -v -m755 -d /usr/share/doc/enscript-&enscript-version; &amp;&amp;
install -v -m644 README* *.txt docs/FAQ.html \
/usr/share/doc/enscript-&enscript-version;</userinput></screen>
<para>If you built any of the alternate forms of documentation, install it
install -v -m755 -d /usr/share/doc/enscript-&enscript-version;/html &amp;&amp;
install -v -m644 docs/html/* \
/usr/share/doc/enscript-&enscript-version;/html &amp;&amp;
install -v -m644 README* *.txt docs/{FAQ.html,enscript.{html,txt}} \
/usr/share/doc/enscript-&enscript-version;</userinput></screen>
<para>If you built Postscript and PDF documentation, install it
using the following command as the
<systemitem class="username">root</systemitem> user:</para>
<screen role="root"><userinput>install -v -m644 docs/*.{dvi,html,pdf,ps,txt} \
/usr/share/doc/enscript-&enscript-version;</userinput></screen>
<screen role="root"><userinput>install -v -m644 docs/*.{dvi,pdf,ps} \
/usr/share/doc/enscript-&enscript-version;</userinput></screen>
</sect2>

View File

@ -101,7 +101,7 @@
<xref linkend="libusb-compat"/>,
<ulink url="http://cyberelk.net/tim/libieee1284/">libieee1284</ulink>,
<ulink url="http://www.gphoto.org/">libgphoto2</ulink>, and
<xref linkend="tetex"/></para>
<xref linkend="tetex"/> or <xref linkend="texlive"/></para>
<bridgehead renderas="sect4">Optional (Front Ends)</bridgehead>
<para role="optional"><xref linkend="x-window-system"/>,

View File

@ -4,18 +4,6 @@
<!ENTITY % general-entities SYSTEM "../../general.ent">
%general-entities;
<!-- Inserted as a reminder to do this. The mention of a test suite
is usually right before the root user installation commands. Please
delete these 12 (including one blank) lines after you are done.-->
<!-- Use one of the two mentions below about a test suite,
delete the line that is not applicable. Of course, if the
test suite uses syntax other than "make check", revise the
line to reflect the actual syntax to run the test suite -->
<!-- <para>This package does not come with a test suite.</para> -->
<!-- <para>To test the results, issue: <command>make check</command>.</para> -->
<!ENTITY jadetex-download-http "&sourceforge-repo;/jadetex/jadetex-&jadetex-version;.tar.gz">
<!ENTITY jadetex-download-ftp "&gentoo-ftp-repo;/jadetex-&jadetex-version;.tar.gz">
<!ENTITY jadetex-md5sum "634dfc172fbf66a6976e2c2c60e2d198">
@ -46,6 +34,13 @@
<application>JadeTeX</application> transforms high level LaTeX macros into
DVI/PostScript and Portable Document Format (PDF) forms.</para>
<important>
<para>Do not install this package if you have already installed
<xref linkend="texlive"/>. The <application>TeX Live</application>
installation includes the <application>JadeTeX</application>
components.</para>
</important>
&lfs67_checked;
<bridgehead renderas="sect3">Package Information</bridgehead>

322
pst/typesetting/texlive.xml Normal file
View File

@ -0,0 +1,322 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % general-entities SYSTEM "../../general.ent">
%general-entities;
<!ENTITY texlive-source-download-http " ">
<!ENTITY texlive-source-download-ftp "ftp://tug.org/texlive/historic/2010/texlive-&texlive-version;-source.tar.xz">
<!ENTITY texlive-source-md5sum "156fa34c56acb901fdc687b8d9860f1f">
<!ENTITY texlive-source-size "32 MB">
<!ENTITY texlive-texmf-download-http " ">
<!ENTITY texlive-texmf-download-ftp "ftp://tug.org/texlive/historic/2010/texlive-&texlive-version;-texmf.tar.xz">
<!ENTITY texlive-texmf-md5sum "12dec3a323c4eb75b98a3160c62dc865">
<!ENTITY texlive-texmf-size "1.1 GB">
<!ENTITY texlive-buildsize "~5 GB">
<!ENTITY texlive-time "10 SBU">
]>
<sect1 id="texlive" xreflabel="TeX Live-&texlive-version;">
<?dbhtml filename="texlive.html"?>
<sect1info>
<othername>$LastChangedBy$</othername>
<date>$Date$</date>
</sect1info>
<title>TeX Live-&texlive-version;</title>
<indexterm zone="texlive">
<primary sortas="a-texlive">texlive</primary>
</indexterm>
<sect2 role="package">
<title>Introduction to TeX Live</title>
<para>The <application>TeX Live</application> package is the forked
successor of the <application>teTeX</application> TeX document production
system invented by Donald Knuth. Both packages have been maintained and
supported through the <ulink url="http://www.tug.org/">TeX Users
Group</ulink>, although <application>teTeX</application> has been
unmaintained for several years now.</para>
<para>The <command>texi2html</command> Perl script previously shipped with
the <application>teTeX</application> package is no longer shipped. You can
use the <command>makeinfo</command> program as a replacement, or install
the stand-alone
<ulink url="http://www.nongnu.org/texi2html/">Texi2HTML</ulink>
package.</para>
<bridgehead renderas="sect3">Package Information</bridgehead>
<itemizedlist spacing="compact">
<listitem>
<para>Download (HTTP): <ulink url="&texlive-source-download-http;"/></para>
</listitem>
<listitem>
<para>Download (FTP): <ulink url="&texlive-source-download-ftp;"/></para>
</listitem>
<listitem>
<para>Download MD5 sum: &texlive-source-md5sum;</para>
</listitem>
<listitem>
<para>Download size: &texlive-source-size;</para>
</listitem>
<listitem>
<para>Estimated disk space required: &texlive-buildsize;</para>
</listitem>
<listitem>
<para>Estimated build time: &texlive-time;</para>
</listitem>
</itemizedlist>
<bridgehead renderas="sect3">Additional Downloads</bridgehead>
<itemizedlist spacing="compact">
<listitem>
<para>Required TeX MetaFonts and additional components:
<ulink url="&texlive-texmf-download-ftp;"/></para>
</listitem>
<listitem>
<para>Download MD5 sum: &texlive-texmf-md5sum;</para>
</listitem>
<listitem>
<para>Download size: &texlive-texmf-size;</para>
</listitem>
</itemizedlist>
<bridgehead renderas="sect3">TeX Live Dependencies</bridgehead>
<bridgehead renderas="sect4">Required</bridgehead>
<para role="required"><xref linkend="xz-utils"/></para>
<bridgehead renderas="sect4">Optional</bridgehead>
<para role="optional"><xref linkend="gs"/>,
<xref linkend="poppler"/>,
<xref linkend="freetype2"/>,
<xref linkend="libpng"/>,
<xref linkend="xorg7"/>,
<xref linkend="recode"/>,
<xref linkend="icu"/>,
<ulink url="http://www.libgd.org/Main_Page">GD</ulink>,
<ulink url="http://www.sfr-fresh.com/linux/misc/t1lib">t1lib</ulink>,
<ulink url="http://sourceforge.net/projects/zziplib/">ZZIPlib</ulink>,
<ulink url="http://www.gnu.org/software/clisp/">CLISP</ulink>,
<ulink url="http://www.lua.org/">Lua</ulink>,
<ulink url="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;id=TECkitDownloads">TECkit</ulink>,
and
<ulink url="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=RenderingGraphite">
Graphite</ulink></para>
<para condition="html" role="usernotes">User Notes:
<ulink url="&blfs-wiki;/texlive"/></para>
</sect2>
<sect2 role="installation">
<title>Installation of TeX Live</title>
<para>Before building <application>TeX Live</application>, the macros and
fonts package (<filename>texmf</filename> tarball) must be installed and
two temporary symbolic links need to be created. Install the macros, fonts
and symlinks using the following commands as the
<systemitem class="username">root</systemitem> user:</para>
<screen role="root"><userinput>tar xf ../texlive-&texlive-version;-texmf.tar.xz \
-C /usr/share --strip-components=1 &amp;&amp;
ln -v -s share/texmf /usr &amp;&amp;
ln -v -s share/texmf-dist /usr</userinput></screen>
<para>Install <application>TeX Live</application> by running the following
commands:</para>
<screen><userinput>sed -i -e 's|PARENT/\.\./texmf-local|PARENT/texmf-local|' \
-e 's|\$TEXMFVAR/fonts|/var/lib/livetex/fonts|' \
texk/kpathsea/texmf.cnf &amp;&amp;
./configure --prefix=/usr \
--disable-native-texlive-build \
--enable-shared \
--without-luatex \
--enable-mktextex-default \
--with-banner-add=" - BLFS" &amp;&amp;
make</userinput></screen>
<para>To test the results, issue: <command>make check</command>.</para>
<para>Now, as the <systemitem class="username">root</systemitem> user:</para>
<screen role="root"><userinput>make install &amp;&amp;
rm -v /usr/texmf{,-dist} &amp;&amp;
install -v -m1777 -d /var/lib/livetex/fonts &amp;&amp;
install -v -m755 -d /usr/share/texmf-{config,var,local} &amp;&amp;
install -v -m755 -d /usr/share/doc/texlive-&texlive-version; &amp;&amp;
ln -s -v ../../texmf/doc \
/usr/share/doc/texlive-&texlive-version;/texmf &amp;&amp;
ln -s -v ../../texmf-dist/doc \
/usr/share/doc/texlive-&texlive-version;/texmf-dist &amp;&amp;
for FN in `ls -l /usr/bin | grep "\.\./texmf"`
do ln -svf `readlink $FN | sed 's|\.\./texmf|../share/texmf|'` $FN
done</userinput></screen>
</sect2>
<sect2 role="commands">
<title>Command Explanations</title>
<para><command>ln -v -s share/texmf /usr</command> &amp;
<command>ln -v -s share/texmf-dist /usr</command> &amp;
<command>rm -v /usr/texmf{,-dist}</command>: These commands are used to
create and then remove temporary symbolic links so that files are not
installed in
<filename class="directory">/usr/texmf{,-dist}</filename></para>
<para><command>sed -i -e '...' -e '...' texk/kpathsea/texmf.cnf</command>:
This command is used to modify the default so that local items are
installed in <filename class="directory">/usr/share/texmf-local</filename>
instead of <filename class="directory">/usr/texmf-local</filename>. It also
changes the path for user-installed fonts to the run-time variable location
<filename class="directory">/var/lib/livetex/fonts</filename>.</para>
<para><parameter>--disable-native-texlive-build</parameter>: This parameter
is required if the build is not for a binary distribution.</para>
<para><parameter>--without-luatex</parameter>: This parameter is required
if the <application>Lua</application> programming language is not
installed. Remove this parameter if <application>Lua</application> is
installed.</para>
<para><parameter>--enable-mktextex-default</parameter>: This parameter
is used so that TeX will automatically invokde mktextex if TeX source is
missing.</para>
<para><parameter>--with-banner-add=" - BLFS"</parameter>: This parameter
is used so that the build can be easily recognized as a non-TUG binary
build.</para>
<para><option>--with-system-...</option> &amp;
<option>--with-libgs-includes=/usr/include/ghostscript</option>: These
options are required to use any system-installed libraries. Run
<command>./configure --help</command> to see a full list of available
options.</para>
<para><command>for FN in `...`; do ...; done</command>This command is
used to change the installed symbolic links to point to scripts installed
in <filename class="directory">/usr/share/texmf</filename> instead of
<filename class="directory">/usr/texmf</filename>.</para>
</sect2>
<sect2 role="configuration">
<title>Configuring TeX Live</title>
<sect3 id="texlive-config">
<title>Config Files</title>
<para>Several <filename class="extension">.cnf</filename> files are used
in a complete TeX system. Typically these files are not directly modified
(unless you know your way around a TeX system very well), but instead
TeX programs are used to make the modifications.</para>
</sect3>
<sect3><title>Configuration Information</title>
<para>Issue the following commands as the
<systemitem class="username">root</systemitem> user to configure and
finalize the TeX installation:</para>
<screen role="root"><userinput>mktexlsr /usr/share/texmf \
/usr/share/texmf-config \
/usr/share/texmf-dist \
/usr/share/texmf-var \
/usr/share/texmf-local \
/var/lib/livetex/fonts &amp;&amp;
texconfig-sys font rw &amp;&amp;
texconfig-sys paper letter &amp;&amp;
fmtutil-sys --all &amp;&amp;
updmap-sys &amp;&amp;
mktexlsr /usr/share/texmf \
/usr/share/texmf-config \
/usr/share/texmf-dist \
/usr/share/texmf-var \
/usr/share/texmf-local \
/var/lib/livetex/fonts &amp;&amp;
texlinks &amp;&amp;
mktexlsr /usr/share/texmf \
/usr/share/texmf-config \
/usr/share/texmf-dist \
/usr/share/texmf-var \
/usr/share/texmf-local \
/var/lib/livetex/fonts</userinput></screen>
</sect3>
</sect2>
<sect2 role="content">
<title>Contents</title>
<segmentedlist>
<segtitle>Installed Programs</segtitle>
<segtitle>Installed Libraries</segtitle>
<segtitle>Installed Directories</segtitle>
<seglistitem>
<seg>Over 300 binaries and symlinks to scripts</seg>
<seg>libkpathsea.{so,a} and libptexenc.{so,a}</seg>
<seg>/usr/include/kpathsea,
/usr/include/ptexenc,
/usr/share/doc/texlive-&texlive-version;,
/usr/share/texmf-config,
/usr/share/texmf-dist,
/usr/share/texmf-local,
/usr/share/texmf-var,
/use/share/texmf, and
/var/lib/livetex</seg>
</seglistitem>
</segmentedlist>
<variablelist>
<bridgehead renderas="sect3">Short Descriptions</bridgehead>
<?dbfo list-presentation="list"?>
<?dbhtml list-presentation="table"?>
<varlistentry id="texlive-programs">
<term><command>TeX programs</command></term>
<listitem>
<para>included in the <application>TeX Live</application> package are
too numerous to individually list. Please refer to the individual
program man pages and
<ulink url="file:///usr/share/texmf/doc/texlive/index.html"/> for
details, as well as a tour of the expansive
<application>TeX Live</application> documentation.</para>
<indexterm zone="texlive texlive-programs">
<primary sortas="b-texlive-programs">TeX Live programs</primary>
</indexterm>
</listitem>
</varlistentry>
<varlistentry id="libkpathseaTL">
<term><filename class='libraryfile'>libkpathsea.{so,a}</filename></term>
<listitem>
<para>contains the functions used by the TeX programs to resolve
pathnames used in the Tex installation.</para>
<indexterm zone="texlive libkpathseaTL">
<primary sortas="c-libkpathseaTL">libkpathsea.{so,a}</primary>
</indexterm>
</listitem>
</varlistentry>
</variablelist>
</sect2>
</sect1>

View File

@ -18,6 +18,7 @@ $Date$
<para>This chapter includes applications that create output equivalent to
typesetting.</para>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="texlive.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="tetex.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="jadetex.xml"/>

View File

@ -73,7 +73,8 @@
patch to utilize iproute2)</para>
<bridgehead renderas="sect4">Optional (to rebuild documentation)</bridgehead>
<para role="optional"><xref linkend="tetex"/> and
<para role="optional"><xref linkend="tetex"/> or
<xref linkend="texlive"/>, and
<xref linkend="libxslt"/></para>
<para condition="html" role="usernotes">User Notes:

View File

@ -129,8 +129,8 @@ make</userinput></screen>
<para>If you wish to create the API documentation in HTML format, you must
have <xref linkend="doxygen"/> and <xref linkend="graphviz"/> installed,
then issue: <command>make doc</command>. If you wish to create the API
Design Guide in several formats, you must have <xref linkend="tetex"/>
installed and issue:
Design Guide in several formats, you must have <xref linkend="tetex"/> or
<xref linkend="texlive"/> installed and issue:
<command>make -C src/doc/design html pdf ps</command>.</para>
<para>To test the results, issue: <command>make check</command>. All tests