releasing package cdck version 0.7.0+dfsg-3
[debian/cdck.git] / debian / patches / man.patch
1 Author: gregor herrmann <gregoa@debian.org>
2 Last-Update: 2015-03-04
3 Description:
4  - fix calls to pod2man
5  - remove stray "=cut", leads to pod2man errors
6  - add a note about using the gnuplot datafile
7 Bugs-Ubuntu: https://bugs.launchpad.net/bugs/476591
8
9 --- a/man/Makefile.am
10 +++ b/man/Makefile.am
11 @@ -11,7 +11,7 @@
12  EXTRA_DIST = cdck_man.in
13  
14  cdck.1:
15 -       pod2man --section=cdck.1 --verbose cdck_man.in > cdck.1
16 +       pod2man --section=1 --verbose --name=cdck cdck_man.in > cdck.1
17  
18  
19  #
20 --- a/man/cdck_man.in
21 +++ b/man/cdck_man.in
22 @@ -1,5 +1,3 @@
23 -=cut
24 -
25  =head1 NAME
26  
27         cdck - simple CD/DVD check program
28 @@ -17,6 +15,8 @@
29         -i Print CD/DVD information and quit, perform no timings (default mode)
30  
31         -t Perform timing test
32 +
33 +         Note: this option will not work for audio CDs.
34  
35         -p Save data for gnuplot(1) program
36  
37 @@ -26,7 +26,11 @@
38  
39         -v Verbose operations
40  
41 +       To actually plot your data you have to start gnuplot and plot the datafile:
42 +          $ gnuplot
43 +          gnuplot> plot "cdck-plot.dat"
44 +
45  =head1 COPYRIGHT
46  
47 -       This manpage was written by gregor herrmann <gregor+debian@comodo.priv.at> for the
48 -       Debian project but may be used by others.
49 +       This manpage was written by gregor herrmann <gregoa@debian.org>
50 +       for the Debian project, but may be used by others.