Blame


1 194f18c8 2001-12-31 alex
2 194f18c8 2001-12-31 alex ngIRCd - Next Generation IRC Server
3 194f18c8 2001-12-31 alex
4 8291e10b 2003-03-26 alex (c)2001-2003 by Alexander Barton,
5 194f18c8 2001-12-31 alex alex@barton.de, http://www.barton.de/
6 194f18c8 2001-12-31 alex
7 8291e10b 2003-03-26 alex ngIRCd is free software and published under the
8 8291e10b 2003-03-26 alex terms of the GNU General Public License.
9 194f18c8 2001-12-31 alex
10 194f18c8 2001-12-31 alex -- CVS.txt --
11 194f18c8 2001-12-31 alex
12 194f18c8 2001-12-31 alex
13 8291e10b 2003-03-26 alex The source code of ngIRCd is maintained using the "Concurrent Versions
14 8291e10b 2003-03-26 alex System" (CVS). Thereby several developers can work with the source tree at
15 8291e10b 2003-03-26 alex the same time.
16 5b333085 2003-01-04 alex
17 5b333085 2003-01-04 alex
18 8291e10b 2003-03-26 alex I. Anonymous read-only Access
19 8291e10b 2003-03-26 alex ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 8291e10b 2003-03-26 alex To access the source tree anonymously in read-only mode, follow these steps:
21 194f18c8 2001-12-31 alex
22 8291e10b 2003-03-26 alex Login to the CVS server:
23 194f18c8 2001-12-31 alex
24 05a493e1 2002-02-15 alex $ cvs -d:pserver:anonymous@arthur.ath.cx:/usr/local/CVS/ngircd login
25 05a493e1 2002-02-15 alex
26 8291e10b 2003-03-26 alex Use "anonymous" as user name and no password (just hit Return). Now you can
27 8291e10b 2003-03-26 alex check out the sources:
28 05a493e1 2002-02-15 alex
29 05a493e1 2002-02-15 alex $ cvs -d:pserver:anonymous@arthur.ath.cx:/usr/local/CVS/ngircd checkout ngircd
30 05a493e1 2002-02-15 alex
31 8291e10b 2003-03-26 alex Thereby a new folder "ngircd" will be created containing all the individual
32 8291e10b 2003-03-26 alex source files.
33 05a493e1 2002-02-15 alex
34 8291e10b 2003-03-26 alex This is the "working folder", all CVS commands will be executed from within
35 8291e10b 2003-03-26 alex this folder in the future.
36 05a493e1 2002-02-15 alex
37 8291e10b 2003-03-26 alex Please note: When checking out a fresh copy of ngIRCd from CVS, the
38 8291e10b 2003-03-26 alex configure script doesn't exist; you have to run the autogen.sh shell script
39 8291e10b 2003-03-26 alex (which is included in the source tree) to generate it. This requires you to
40 8291e10b 2003-03-26 alex have GNU automake and GNU autoconf installed on your system.
41 05a493e1 2002-02-15 alex
42 8291e10b 2003-03-26 alex Updating the CVS tree:
43 05a493e1 2002-02-15 alex
44 8291e10b 2003-03-26 alex $ cvs update -d -P [<filename>]
45 05a493e1 2002-02-15 alex
46 8291e10b 2003-03-26 alex You can update a single file or the complete source tree.
47 05a493e1 2002-02-15 alex
48 05a493e1 2002-02-15 alex
49 8291e10b 2003-03-26 alex III. Write Access
50 8291e10b 2003-03-26 alex ~~~~~~~~~~~~~~~~~
51 8291e10b 2003-03-26 alex If you want to contribute a couple of patches and write access to the CVS
52 8291e10b 2003-03-26 alex repository would be handy, please contact Alex Barton, <alex@barton.de>.
53 05a493e1 2002-02-15 alex
54 05a493e1 2002-02-15 alex
55 7709acf7 2002-01-23 alex --
56 8291e10b 2003-03-26 alex $Id: CVS.txt,v 1.7 2003/03/26 22:34:33 alex Exp $