source: trunk/README @ 281

Last change on this file since 281 was 281, checked in by Peter Johansson, 16 years ago

reorganized some of the build info. refs #111

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.2 KB
Line 
1$Id: README 281 2007-05-06 11:54:58Z peter $
2
3This directory contains the 0.6 release of svndigest.
4
5svndigest is a tool to extract development information and statistics
6from a subversion repository.
7
8See the file NEWS for the user-visible changes from previous releases.
9In addition, there have been bugs fixed.
10
11For general building and installation instructions, see the file INSTALL.
12
13svndigest is free software. See the file COPYING for copying conditions.
14
15
16Downloading
17-----------
18
19svndigest can be obtained from
20
21  http://lev.thep.lu.se/trac/svndigest
22
23
24Documentation
25-------------
26
27For documentation see the file doc/readme.txt.
28
29
30Development
31-----------
32
33The development of svndigest can be monitored through
34
35  http://lev.thep.lu.se/trac/svndigest
36
37You can find most information concerning the development of svndigest at
38this site.
39
40
41Bug Reporting
42-------------
43
44You can report svndigest bugs on
45
46  http://lev.thep.lu.se/trac/svndigest/newticket
47
48Use user `svndigest' and password `svndigest'.
49
50
51Subversion Access
52-----------------
53
54The svndigest source repository is available via anonymous subversion
55from the thep subversion server; issue:
56
57  svn checkout http://lev.thep.lu.se/repository/svndigest/trunk svndigest
58
59See file README.svn for developer specific information. We make no
60guarantees about the contents or quality of the latest code in the
61subversion repository: it is not unheard of for code that is known to
62be broken to checked in. Use at your own risk.
63
64
65Prerequisites
66-------------
67
68ia) Subversion development files, i.e., header files and program
69   libraries, version 1.4 or later.
70
71ib) This item should not be an issue if item ia) is fulfilled; the
72   Apache Portable Runtime (APR) should be available if the subversion
73   API was succesfully compiled. Subversion depends on APR and in
74   consequence, the dependency is inherited by svndigest.
75
76ii) Gnuplot.
77
78iii) A standard C++ compliant compiler with one extension: svndigest
79   must be compiled with a C++ compiler that supports 'long long'
80   types - GCC does this. This is due to the fact that one of the
81   underlying libraries, APR, is using 'long long'. APR is written in
82   C and the C standard allows 'long long'.
83
84   Even though the source is compiled with the -pedantic flag (which
85   should catch the non C++ standard 'long long') there is another
86   flag to suppress 'long long' diagnostics, -Wno-long-long.
87
88
89======================================================================
90Copyright (C) 2005, 2006 Jari Häkkinen
91Copyright (C) 2007 Peter Johansson
92
93This file is part of svndigest, http://lev.thep.lu.se/trac/svndigest
94
95svndigest is free software; you can redistribute it and/or modify it
96under the terms of the GNU General Public License as published by the
97Free Software Foundation; either version 2 of the License, or (at your
98option) any later version.
99
100svndigest is distributed in the hope that it will be useful, but
101WITHOUT ANY WARRANTY; without even the implied warranty of
102MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
103General Public License for more details.
104
105You should have received a copy of the GNU General Public License
106along with this program; if not, write to the Free Software
107Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
108USA.
109======================================================================
110
111
Note: See TracBrowser for help on using the repository browser.