Changeset f9461f8 for basicnet


Ignore:
Timestamp:
09/13/2005 03:12:39 PM (19 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
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
Children:
6098c66
Parents:
ec5db802
Message:

Added commands to the CVS instructions to create and install additional documentation

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • basicnet/netprogs/cvs.xml

    rec5db802 rf9461f8  
    3131
    3232    <para><application>CVS</application> is the Concurrent Versions System.
    33     This is a version control system useful for projects using a central repository
    34     to hold files and then track all changes made to those files. These instructions
    35     install the client used to manipulate the repository, creation of a repository is
    36     covered at <xref linkend="cvsserver"/>.</para>
     33    This is a version control system useful for projects using a central
     34    repository to hold files and then track all changes made to those files.
     35    These instructions install the client used to manipulate the repository,
     36    creation of a repository is covered at <xref linkend="cvsserver"/>.</para>
    3737
    3838    <bridgehead renderas="sect3">Package Information</bridgehead>
     
    8282    <title>Installation of CVS</title>
    8383
    84     <para>By default <application>CVS</application>
    85     is statically linked against the <application>Zlib</application> library
    86     included in its source tree. This makes it exposed to possible security
    87     vulnerabilities in that library. If you want to modify
    88     <application>CVS</application> to use the newest system shared
    89     <application>Zlib</application> library, apply the following patch:</para>
     84    <para>By default <application>CVS</application> is statically linked
     85    against the <application>Zlib</application> library included in its source
     86    tree. This makes it exposed to possible security vulnerabilities in that
     87    library. If you want to modify <application>CVS</application> to use the
     88    system shared <application>Zlib</application> library, apply the following
     89    patch:</para>
    9090
    9191<screen><userinput>patch -Np1 -i ../cvs-&cvs-version;-zlib-1.patch</userinput></screen>
     
    9797make</userinput></screen>
    9898
     99    <para>If you have <xref linkend="tex"/> installed and wish to create PDF,
     100    HTML or text docs from the documentation source files, issue any or all of
     101    the following commands:</para>
     102
     103<screen><userinput>cd doc &amp;&amp;
     104texi2dvi --pdf --batch cvs.texinfo &amp;&amp;
     105texi2dvi --pdf --batch cvsclient.texi &amp;&amp;
     106texi2html cvs.texinfo &amp;&amp;
     107texi2html cvsclient.texi &amp;&amp;
     108makeinfo --plaintext cvs.texinfo &gt;cvs.txt &amp;&amp;
     109makeinfo --plaintext cvsclient.texi &gt;cvsclient.txt &amp;&amp;
     110cd ..</userinput></screen>
     111
    99112    <para>To test the results, issue: <command>make check</command>.</para>
    100113
     
    103116<screen role='root'><userinput>make install &amp;&amp;
    104117install -v -m755 -d /usr/share/doc/cvs-&cvs-version; &amp;&amp;
    105 install -v -m644 doc/cvs{,client}.ps /usr/share/doc/cvs-&cvs-version;</userinput></screen>
     118install -v -m644 doc/*.ps /usr/share/doc/cvs-&cvs-version;</userinput></screen>
     119
     120    <para>If you created any additional documentation, install it by issuing
     121    the following command as the
     122    <systemitem class="username">root</systemitem> user:</para>
     123
     124<screen role='root'><userinput>install -v -m644 doc/*.{pdf,html,txt} /usr/share/doc/cvs-&cvs-version;</userinput></screen>
    106125
    107126  </sect2>
Note: See TracChangeset for help on using the changeset viewer.