source: basicnet/netprogs/cvs.xml@ 4e33969

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.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 4e33969 was 4e33969, checked in by Igor Živković <igor@…>, 19 years ago

Updated to CVS-1.11.18.

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

  • Property mode set to 100644
File size: 4.6 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY cvs-download-http "https://ccvs.cvshome.org/files/documents/19/534/cvs-&cvs-version;.tar.bz2">
8 <!ENTITY cvs-download-ftp " ">
9 <!ENTITY cvs-size "2.3 MB">
10 <!ENTITY cvs-buildsize "20 MB">
11 <!ENTITY cvs-time "0.31 SBU">
12]>
13
14<sect1 id="cvs" xreflabel="CVS-&cvs-version;">
15<sect1info>
16<othername>$LastChangedBy$</othername>
17<date>$Date$</date>
18</sect1info>
19<?dbhtml filename="cvs.html"?>
20<title>CVS-&cvs-version;</title>
21
22<sect2>
23<title>Introduction to <application><acronym>CVS</acronym></application></title>
24
25<para><application><acronym>CVS</acronym></application> is the Concurrent
26Versioning System. This is a version control system useful for projects
27using a central repository to hold files and then track all changes made to
28those files. These instructions install the client used to manipulate the
29repository, creation of a repository is covered at <xref linkend="cvsserver"/>.
30</para>
31
32<sect3><title>Package information</title>
33<itemizedlist spacing='compact'>
34<listitem><para>Download (HTTP): <ulink url="&cvs-download-http;"/></para></listitem>
35<listitem><para>Download (FTP): <ulink url="&cvs-download-ftp;"/></para></listitem>
36<listitem><para>Download size: &cvs-size;</para></listitem>
37<listitem><para>Estimated Disk space required: &cvs-buildsize;</para></listitem>
38<listitem><para>Estimated build time: &cvs-time;</para></listitem></itemizedlist>
39</sect3>
40
41<sect3><title>Additional downloads</title>
42<itemizedlist spacing='compact'>
43<listitem><para>Recommended patch: <ulink
44url="&patch-root;/cvs-&cvs-version;-zlib-2.patch"/>
45</para></listitem>
46</itemizedlist></sect3>
47
48<sect3><title><application>CVS</application> dependencies</title>
49<sect4><title>Optional</title>
50<para>
51<xref linkend="gdbm"/>,
52<ulink url="http://www.pdc.kth.se/kth-krb/">krb4</ulink>,
53<xref linkend="mitkrb"/> or <xref linkend="heimdal"/>,
54<xref linkend="gs"/> or <xref linkend="espgs"/>,
55<ulink url="../server/mail.html">MTA</ulink> and
56<xref linkend="postlfs-editors-vim"/>
57</para></sect4>
58</sect3>
59
60</sect2>
61
62<sect2>
63<title>Installation of <application><acronym>CVS</acronym></application></title>
64
65<para>By default <application><acronym>CVS</acronym></application>
66is statically linked against the zlib library included in its source
67tree. This makes it exposed to possible security vulnerabilities in that
68library. If you want to modify CVS to use the newest system shared zlib
69library apply the following patch:</para>
70
71<screen><userinput><command>patch -Np1 -i ../cvs-&cvs-version;-zlib-2.patch</command></userinput></screen>
72
73<para>Install <application><acronym>cvs</acronym></application> by running the following commands:</para>
74
75<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
76make &amp;&amp;
77make install</command></userinput></screen>
78
79</sect2>
80
81<sect2>
82<title>Configuring <application><acronym>CVS</acronym></application></title>
83
84<sect3><title>Config files</title>
85<para><filename>~/.cvsrc</filename>, <filename>~/.cvswrappers</filename></para>
86</sect3>
87
88<sect3><title>Configuration Information</title>
89
90<para><filename>~/.cvsrc</filename> is the main
91<application><acronym>CVS</acronym></application> configuration file.
92This file is used by users to specify defaults for different <command>cvs
93</command> commands, for example to make all <command>cvs diff</command>
94commands run with <userinput>-u</userinput>, a user would add <userinput>
95diff -u</userinput> to their <filename>.cvsrc</filename> file.</para>
96
97<para><filename>~/.cvswrappers</filename> specifies wrappers to be used in
98addition to those specified in the <filename>CVSROOT/cvswrappers</filename>
99file in the repository.</para>
100
101<para><filename>~/.cvspass</filename> can hold passwords to complete
102logins to servers.</para></sect3>
103
104</sect2>
105
106<sect2>
107<title>Contents</title>
108
109<para>The <application><acronym>CVS</acronym></application> package contains
110<command>cvs</command>, <command>cvsbug</command> and <command>rcs2log</command>.</para>
111
112</sect2>
113
114<sect2><title>Description</title>
115
116<sect3><title>cvs</title>
117<para>This is the main program file for the concurrent versioning
118system.</para></sect3>
119
120<sect3><title>cvsbug</title>
121<para>This is used to send problem reports about
122<application><acronym>CVS</acronym></application> to a central
123support site.</para></sect3>
124
125<sect3><title>rcs2log</title>
126<para><acronym>RCS</acronym> to Change Log generator.</para></sect3>
127
128</sect2>
129
130</sect1>
Note: See TracBrowser for help on using the repository browser.