File: README

package info (click to toggle)
rcs-blame 1.3.1-4
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,356 kB
  • ctags: 2,613
  • sloc: ansic: 16,351; sh: 11,881; yacc: 389; lex: 154; makefile: 151
file content (69 lines) | stat: -rw-r--r-- 1,869 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
Blame
=====

1. Description
--------------

Blame displays the last modification for each line in an RCS file. It is the
RCS equivalent of CVS's "annotate" command.

An annotated RCS file describes the revision and date in which each line was
added to the file and the author of each line.

2. Requirements
---------------

To compile Blame you will need a C compiler and standard C library.

Once installed, Blame does not have any external dependencies. It uses its own
RCS parsing code, so it does not itself require RCS.

3. Installation
---------------

In general, the standard

$ ./configure
$ make
  <switch to root>
# make install

will do what you want.

You may wish to run "make check" before switching to root. This will run Blame's
testsuite, which will test many aspects of the program on your system.

4. Usage
--------

A full list of valid command-line options can be viewed using `--help':

$ blame --help

Blame accepts many of the standard RCS options, such as `-r' (to select a
revision):

$ blame -r1.123 myfile

5. Getting Help
---------------

If Blame doesn't compile on your system please send me the config.log file
generated by configure, and a description of which bits don't compile.

If you're having trouble running Blame on certain files you might want to try
the test suite in the tarball. Simply run make check after compilation.

If Blame segfaults and you're feeling adventurous, you can enable full debugging
by using the --enable-debug option in configure. This turns on a bunch of
assertions -- hopefully this will turn the segfault into an identifiable
assertion failure.

If you're still stuck, feel free to mail bug reports to
<foonly@users.sourceforge.net>.

6. Legal Stuff
--------------

Blame is released under the terms and conditions of the GNU General Public
License version 2. Please read the COPYING file carefully.