source: basicnet/netprogs/cvs.xml@ 7f5c97e

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 7f5c97e was 7f5c97e, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Made all dependencies an a mail server actual cross-references.

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

  • Property mode set to 100644
File size: 8.3 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 cvs-download-http "http://ftp.gnu.org/non-gnu/cvs/source/stable/&cvs-version;/cvs-&cvs-version;.tar.bz2">
8 <!ENTITY cvs-download-ftp "ftp://ftp.gnu.org/non-gnu/cvs/source/stable/&cvs-version;/cvs-&cvs-version;.tar.bz2">
9 <!ENTITY cvs-md5sum "54dd9eeb0648c9eef680df7cb26c710e">
10 <!ENTITY cvs-size "2.8 MB">
11 <!ENTITY cvs-buildsize "30.5 MB">
12 <!ENTITY cvs-time "0.3 SBU (additional ~20 SBU to run the test suite)">
13]>
14
15<sect1 id="cvs" xreflabel="CVS-&cvs-version;">
16 <?dbhtml filename="cvs.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 <keywordset>
22 <keyword role="package">cvs-&cvs-version;.tar</keyword>
23 <keyword role="ftpdir">cvs</keyword>
24 </keywordset>
25 </sect1info>
26
27 <title>CVS-&cvs-version;</title>
28
29 <indexterm zone="cvs">
30 <primary sortas="a-CVS">CVS</primary>
31 </indexterm>
32
33 <sect2 role="package">
34 <title>Introduction to CVS</title>
35
36 <para><application>CVS</application> is the Concurrent Versions System.
37 This is a version control system useful for projects using a central
38 repository to hold files and then track all changes made to those files.
39 These instructions install the client used to manipulate the repository,
40 creation of a repository is covered at <xref linkend="cvsserver"/>.</para>
41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <listitem>
45 <para>Download (HTTP): <ulink url="&cvs-download-http;"/></para>
46 </listitem>
47 <listitem>
48 <para>Download (FTP): <ulink url="&cvs-download-ftp;"/></para>
49 </listitem>
50 <listitem>
51 <para>Download MD5 sum: &cvs-md5sum;</para>
52 </listitem>
53 <listitem>
54 <para>Download size: &cvs-size;</para>
55 </listitem>
56 <listitem>
57 <para>Estimated disk space required: &cvs-buildsize;</para>
58 </listitem>
59 <listitem>
60 <para>Estimated build time: &cvs-time;</para>
61 </listitem>
62 </itemizedlist>
63
64 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
65 <itemizedlist spacing='compact'>
66 <listitem>
67 <para>Recommended patch: <ulink
68 url="&patch-root;/cvs-&cvs-version;-zlib-1.patch"/></para>
69 </listitem>
70 </itemizedlist>
71
72 <bridgehead renderas="sect3">CVS Dependencies</bridgehead>
73
74 <bridgehead renderas="sect4">Optional</bridgehead>
75 <para role="optional"><xref linkend="gdbm"/>,
76 <xref linkend="tcsh"/>,
77 <ulink url="http://www.pdc.kth.se/kth-krb/">krb4</ulink>,
78 <xref linkend="mitkrb"/> or <xref linkend="heimdal"/>
79 (for the GSSAPI libraries),
80 <xref linkend="gs"/> or <xref linkend="espgs"/>, and
81 an <xref linkend="server-mail"/> (that provides a
82 <command>sendmail</command> command)</para>
83
84 <para condition="html" role="usernotes">User Notes:
85 <ulink url="&blfs-wiki;/cvs"/></para>
86
87 </sect2>
88
89 <sect2 role="installation">
90 <title>Installation of CVS</title>
91
92 <para>By default <application>CVS</application> is statically linked
93 against the <application>Zlib</application> library included in its source
94 tree. This makes it exposed to possible security vulnerabilities in that
95 library. If you want to modify <application>CVS</application> to use the
96 system shared <application>Zlib</application> library, apply the following
97 patch:</para>
98
99<screen><userinput>patch -Np1 -i ../cvs-&cvs-version;-zlib-1.patch</userinput></screen>
100
101 <para>Install <application>CVS</application> by running
102 the following commands:</para>
103
104<screen><userinput>./configure --prefix=/usr &amp;&amp;
105make</userinput></screen>
106
107 <para>If you have <xref linkend="tetex"/> installed and wish to create
108 Postscript, HTML or text docs from the documentation source files, issue
109 any or all of the following commands:</para>
110
111<screen><userinput>cd doc &amp;&amp;
112texi2dvi cvs.texinfo &amp;&amp;
113texi2dvi cvsclient.texi &amp;&amp;
114dvips -o cvs.ps cvs.dvi &amp;&amp;
115dvips -o cvsclient.ps cvsclient.dvi &amp;&amp;
116texi2html cvs.texinfo &amp;&amp;
117texi2html cvsclient.texi &amp;&amp;
118makeinfo --plaintext -o cvs.txt cvs.texinfo &amp;&amp;
119makeinfo --plaintext -o cvsclient.txt cvsclient.texi &amp;&amp;
120cd ..</userinput></screen>
121
122 <para>To test the results, issue: <command>make check</command>. This will
123 take quite a while.</para>
124
125 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
126
127<screen role='root'><userinput>make install &amp;&amp;
128install -v -m755 -d /usr/share/doc/cvs-&cvs-version; &amp;&amp;
129install -v -m644 FAQ README /usr/share/doc/cvs-&cvs-version; &amp;&amp;
130install -v -m644 doc/*.pdf /usr/share/doc/cvs-&cvs-version;</userinput></screen>
131
132 <para>If you created any additional documentation, install it by issuing
133 the following command as the
134 <systemitem class="username">root</systemitem> user:</para>
135
136<screen role='root'><userinput>install -v -m644 doc/*.{ps,dvi,html,txt} /usr/share/doc/cvs-&cvs-version;</userinput></screen>
137
138 </sect2>
139
140 <sect2 role="configuration">
141 <title>Configuring CVS</title>
142
143 <sect3 id="cvs-config">
144 <title>Config Files</title>
145
146 <para><filename>~/.cvsrc</filename>, <filename>~/.cvswrappers</filename>,
147 and <filename>~/.cvspass</filename>.</para>
148
149 <indexterm zone="cvs cvs-config">
150 <primary sortas="e-AA.cvsrc">~/.cvsrc</primary>
151 </indexterm>
152
153 <indexterm zone="cvs cvs-config">
154 <primary sortas="e-AA.cvswrappers">~/.cvswrappers</primary>
155 </indexterm>
156
157 <indexterm zone="cvs cvs-config">
158 <primary sortas="e-AA.cvspass">~/.cvspass</primary>
159 </indexterm>
160
161 </sect3>
162
163 <sect3>
164 <title>Configuration Information</title>
165
166 <para><filename>~/.cvsrc</filename> is the main
167 <application>CVS</application> configuration file.
168 This file is used by users to specify defaults for different
169 <command>cvs</command> commands. For example, to make all
170 <command>cvs diff</command> commands run with <option>-u</option>, a user
171 would add <option>diff -u</option> to their <filename>.cvsrc</filename>
172 file.</para>
173
174 <para><filename>~/.cvswrappers</filename> specifies wrappers to be used in
175 addition to those specified in the <filename>CVSROOT/cvswrappers</filename>
176 file in the repository.</para>
177
178 <para><filename>~/.cvspass</filename> can hold passwords to complete
179 logins to servers.</para>
180
181 </sect3>
182
183 </sect2>
184
185 <sect2 role="content">
186 <title>Contents</title>
187
188 <segmentedlist>
189 <segtitle>Installed Programs</segtitle>
190 <segtitle>Installed Libraries</segtitle>
191 <segtitle>Installed Directories</segtitle>
192
193 <seglistitem>
194 <seg>cvs, cvsbug, and rcs2log</seg>
195 <seg>None</seg>
196 <seg>/usr/share/cvs and /usr/share/doc/cvs-&cvs-version;</seg>
197 </seglistitem>
198 </segmentedlist>
199
200 <variablelist>
201 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
202 <?dbfo list-presentation="list"?>
203 <?dbhtml list-presentation="table"?>
204
205 <varlistentry id="cvs-prog">
206 <term><command>cvs</command></term>
207 <listitem>
208 <para>is the main program file for the concurrent versions system.</para>
209 <indexterm zone="cvs cvs-prog">
210 <primary sortas="b-cvs">cvs</primary>
211 </indexterm>
212 </listitem>
213 </varlistentry>
214
215 <varlistentry id="cvsbug">
216 <term><command>cvsbug</command></term>
217 <listitem>
218 <para>is used to send problem reports about <application>CVS</application>
219 to a central support site.</para>
220 <indexterm zone="cvs cvsbug">
221 <primary sortas="b-cvsbug">cvsbug</primary>
222 </indexterm>
223 </listitem>
224 </varlistentry>
225
226 <varlistentry id="rcs2log">
227 <term><command>rcs2log</command></term>
228 <listitem>
229 <para>is a symlink to the contributed RCS to Change Log
230 generator.</para>
231 <indexterm zone="cvs rcs2log">
232 <primary sortas="b-rcs2log">rcs2log</primary>
233 </indexterm>
234 </listitem>
235 </varlistentry>
236 </variablelist>
237
238 </sect2>
239
240</sect1>
Note: See TracBrowser for help on using the repository browser.