File: margas.diff

package info (click to toggle)
cdcover 0.9.1-12
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 400 kB
  • sloc: cpp: 3,257; makefile: 91
file content (595 lines) | stat: -rw-r--r-- 15,915 bytes parent folder | download | duplicates (6)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
Description: Collate existing changes introduced in version 0.9.1-6.3
 and earlier. This patch has been created by dpkg-source.
 Here's the last changelog entry:
 .
 cdcover (0.9.1-6.3) unstable; urgency=low
 .
   * Non-maintainer upload to fix uninstallable package.
   * Changed dependency from tetex-* to texlive-latex-base.
     (Closes: #400597)
 .
 The person named in the Author field signed this changelog entry.
Author: Margarita Manterola <marga@debian.org>
Bug-Debian: http://bugs.debian.org/400597

---

--- cdcover-0.9.1.orig/stringlist.h
+++ cdcover-0.9.1/stringlist.h
@@ -57,12 +57,12 @@ public:
 	}
 };
 
-class MatrixIndexList: public vector<MatrixIndex> {
+class MatrixIndexList: public std::vector<MatrixIndex> {
 };
 
 
 
-class Stringlist : public vector<Bytevector*> {
+class Stringlist : public std::vector<Bytevector*> {
 private:
     Stringlist::iterator getID(Bytevector id);
 	
--- cdcover-0.9.1.orig/cccpara2.h
+++ cdcover-0.9.1/cccpara2.h
@@ -4,11 +4,11 @@
 
 char * cccpara2V[]=
 {
-{"-h"},
-{"--help"},
-{"-i"},
-{"--interactive"},
-{""}
+"-h",
+"--help",
+"-i",
+"--interactive",
+""
 };
 
 int cccpara2C=4;
--- cdcover-0.9.1.orig/Makefile
+++ cdcover-0.9.1/Makefile
@@ -1,6 +1,6 @@
 CC=g++
-INSTDIR=/usr/local/bin
-CFLAGS=-Wall
+INSTDIR=$(DESTDIR)/usr/bin
+CFLAGS=-Wall -g -DI_AM_A_SUCKER
 STRINGLIB=bytevector.o stringlist.o
 
 ccc: ccc.o
--- cdcover-0.9.1.orig/INSTALL
+++ cdcover-0.9.1/INSTALL
@@ -1,4 +1,4 @@
-CCC INSTALLATION
+CDCOVER INSTALLATION
 ----------------
 
 GNU\LINUX and UNIX-Systems:
--- cdcover-0.9.1.orig/resback.h
+++ cdcover-0.9.1/resback.h
@@ -4,65 +4,65 @@
 
 char * resbackV[]=
 {
-{"%%%%%%%%"},
-{"% BACK %"},
-{"%%%%%%%%"},
-{""},
-{""},
-{"\\newlength{\\Test%i}"},
-{"\\settowidth{\\Test%i}{{%SIDETEXTLEFT%}\\hfill~{%SIDETEXTRIGHT%}}"},
-{"\\ifthenelse{\\lengthtest{\\Test%i > 12.0cm}}"},
-{"{"},
-{"	\\settowidth{\\Test%i}{\\small {%SIDETEXTLEFT%}\\hfill~{%SIDETEXTRIGHT%}}"},
-{"	\\ifthenelse{\\lengthtest{\\Test%i > 12.0cm}}"},
-{"	{"},
-{"		\\settowidth{\\Test%i}{\\footnotesize {%SIDETEXTLEFT%}\\hfill~{%SIDETEXTRIGHT%}}"},
-{"		\\ifthenelse{\\lengthtest{\\Test%i > 12.0cm}}"},
-{"		{"},
-{"			\\settowidth{\\Test%i}{\\scriptsize {%SIDETEXTLEFT%}\\hfill~{%SIDETEXTRIGHT%}}"},
-{"			\\ifthenelse{\\lengthtest{\\Test%i > 12.0cm}}"},
-{"			{"},
-{"				\\newcommand{\\sidetext%i}{\\parbox{11.6cm}{\\tiny {%SIDETEXTLEFT%}\\hfill~{%SIDETEXTRIGHT%}}}"},
-{"			}"},
-{"			{"},
-{"				\\newcommand{\\sidetext%i}{\\parbox{11.6cm}{\\scriptsize {%SIDETEXTLEFT%}\\hfill~{%SIDETEXTRIGHT%}}}"},
-{"			}"},
-{"		}"},
-{"		{"},
-{"			\\newcommand{\\sidetext%i}{\\parbox{11.6cm}{\\footnotesize {%SIDETEXTLEFT%}\\hfill~{%SIDETEXTRIGHT%}}}"},
-{"		}"},
-{"	}"},
-{"	{"},
-{"		\\newcommand{\\sidetext%i}{\\parbox{11.6cm}{\\small {%SIDETEXTLEFT%}\\hfill~{%SIDETEXTRIGHT%}}}"},
-{"	}"},
-{"}"},
-{"{"},
-{"	\\newcommand{\\sidetext%i}{\\parbox{11.6cm}{{%SIDETEXTLEFT%}\\hfill~{%SIDETEXTRIGHT%}}}"},
-{"}"},
-{""},
-{"\\noindent"},
-{"\\framebox{\\parbox[c][11.6cm][t]{3mm}"},
-{"{"},
-{"	\\rotatebox{90}{\\sidetext%i}"},
-{"}}\\framebox{\\parbox[c][11.6cm][t]{13.6cm}"},
-{"{"},
-{"	\\vspace{-0.1cm}"},
-{"	\\vspace{-0.2cm}"},
-{"	\\vspace{0.5cm}"},
-{"	\\color{black}"},
-{""},
-{"	{\\footnotesize"},
-{"	\\begin{tabular}{l@{\\hspace{1em}}p{5.6cm}l@{}l@{\\hspace{1em}}p{5.6cm}}"},
-{"%BACKCOVERTEXT%	"},
-{"	\\end{tabular}"},
-{"	}"},
-{"}}\\framebox{\\parbox[c][11.6cm][t]{3mm}"},
-{"{"},
-{"	\\rotatebox{-90}{\\sidetext%i}"},
-{"}}"},
-{""},
-{"%%%%%%%%"},
-{""}
+"%%%%%%%%",
+"% BACK %",
+"%%%%%%%%",
+"",
+"",
+"\\newlength{\\Test%i}",
+"\\settowidth{\\Test%i}{{%SIDETEXTLEFT%}\\hfill~{%SIDETEXTRIGHT%}}",
+"\\ifthenelse{\\lengthtest{\\Test%i > 12.0cm}}",
+"{",
+"	\\settowidth{\\Test%i}{\\small {%SIDETEXTLEFT%}\\hfill~{%SIDETEXTRIGHT%}}",
+"	\\ifthenelse{\\lengthtest{\\Test%i > 12.0cm}}",
+"	{",
+"		\\settowidth{\\Test%i}{\\footnotesize {%SIDETEXTLEFT%}\\hfill~{%SIDETEXTRIGHT%}}",
+"		\\ifthenelse{\\lengthtest{\\Test%i > 12.0cm}}",
+"		{",
+"			\\settowidth{\\Test%i}{\\scriptsize {%SIDETEXTLEFT%}\\hfill~{%SIDETEXTRIGHT%}}",
+"			\\ifthenelse{\\lengthtest{\\Test%i > 12.0cm}}",
+"			{",
+"				\\newcommand{\\sidetext%i}{\\parbox{11.6cm}{\\tiny {%SIDETEXTLEFT%}\\hfill~{%SIDETEXTRIGHT%}}}",
+"			}",
+"			{",
+"				\\newcommand{\\sidetext%i}{\\parbox{11.6cm}{\\scriptsize {%SIDETEXTLEFT%}\\hfill~{%SIDETEXTRIGHT%}}}",
+"			}",
+"		}",
+"		{",
+"			\\newcommand{\\sidetext%i}{\\parbox{11.6cm}{\\footnotesize {%SIDETEXTLEFT%}\\hfill~{%SIDETEXTRIGHT%}}}",
+"		}",
+"	}",
+"	{",
+"		\\newcommand{\\sidetext%i}{\\parbox{11.6cm}{\\small {%SIDETEXTLEFT%}\\hfill~{%SIDETEXTRIGHT%}}}",
+"	}",
+"}",
+"{",
+"	\\newcommand{\\sidetext%i}{\\parbox{11.6cm}{{%SIDETEXTLEFT%}\\hfill~{%SIDETEXTRIGHT%}}}",
+"}",
+"",
+"\\noindent",
+"\\framebox{\\parbox[c][11.6cm][t]{3mm}",
+"{",
+"	\\rotatebox{90}{\\sidetext%i}",
+"}}\\framebox{\\parbox[c][11.6cm][t]{13.6cm}",
+"{",
+"	\\vspace{-0.1cm}",
+"	\\vspace{-0.2cm}",
+"	\\vspace{0.5cm}",
+"	\\color{black}",
+"",
+"	{\\footnotesize",
+"	\\begin{tabular}{l@{\\hspace{1em}}p{5.6cm}l@{}l@{\\hspace{1em}}p{5.6cm}}",
+"%BACKCOVERTEXT%	",
+"	\\end{tabular}",
+"	}",
+"}}\\framebox{\\parbox[c][11.6cm][t]{3mm}",
+"{",
+"	\\rotatebox{-90}{\\sidetext%i}",
+"}}",
+"",
+"%%%%%%%%",
+""
 };
 
 int resbackC=58;
--- cdcover-0.9.1.orig/stringlist.cc
+++ cdcover-0.9.1/stringlist.cc
@@ -22,6 +22,8 @@
 
 #include "stringlist.h"
 
+using namespace std;
+
 Stringlist::Stringlist(){
 	lineSeperator=STRINGLIST_LS;
 	fieldSeperator=STRINGLIST_FS;
--- cdcover-0.9.1.orig/README
+++ cdcover-0.9.1/README
@@ -1,4 +1,4 @@
-CCC - CD COVER CREATOR
+CDCOVER - CD COVER CREATOR
 
 Creating Data-CD Covers
 
@@ -15,9 +15,9 @@ http://www.liacs.nl/~jvhemert/disc-cover
 
 MANUAL
 
-CCC is a little commandline tool which creates
+CDCOVER is a little commandline tool which creates
 user-defined data-cd covers. After installing
-the program, open a shell and enter "ccc". The
+the program, open a shell and enter "cdcover". The
 program gives you a overview of the supported
 parameters. Should be easy to use.
 
--- cdcover-0.9.1.orig/reshead.tex
+++ cdcover-0.9.1/reshead.tex
@@ -1,5 +1,6 @@
 \documentclass[]{article}
-\usepackage{ifthen,isolatin1,graphicx,color}
+\usepackage{ifthen,graphicx,color}
+\usepackage[latin1]{inputenc}
 \graphicspath{{/tmp/disc-cover-8568/}}
 \renewcommand{\thepage}{}
 \setlength{\oddsidemargin}{0pt}
--- cdcover-0.9.1.orig/bytevector.h
+++ cdcover-0.9.1/bytevector.h
@@ -54,7 +54,7 @@
 
 
 
-class VectorIndexList : public vector<int> {
+class VectorIndexList : public std::vector<int> {
 };
 
 
--- cdcover-0.9.1.orig/reshead.h
+++ cdcover-0.9.1/reshead.h
@@ -4,32 +4,32 @@
 
 char * resheadV[]=
 {
-{"\\documentclass[]{article}"},
-{"\\usepackage{ifthen,isolatin1,graphicx,color}"},
-{"\\graphicspath{{/tmp/disc-cover-8568/}}"},
-{"\\renewcommand{\\thepage}{}"},
-{"\\setlength{\\oddsidemargin}{0pt}"},
-{"\\setlength{\\evensidemargin}{0pt}"},
-{"\\setlength{\\voffset}{-100pt}"},
-{"\\setlength{\\footskip}{0pt}"},
-{"\\setlength{\\textheight}{780pt}"},
-{"\\hyphenpenalty=10000"},
-{"\\renewcommand{\\dotfill}{\\leaders\\hbox to 2mm{\\hfil.\\hfil}\\hfill}"},
-{""},
-{"\\newcommand{\\mylabel}{\\color{black}}"},
-{""},
-{""},
-{"\\begin{document}"},
-{""},
-{"\\noindent"},
-{"\\parbox{11cm}"},
-{"{"},
-{"{\\small Printed with \\emph{cd cover creator} (C) (GPL) by Ulli Meybohm, www.meybohm.de"},
-{"The program uses the tex-template from Disc-Cover."},
-{"Disc-Cover is available at  \\texttt{http://www.liacs.nl/\\~{}jvhemert/disc-cover}}"},
-{"}"},
-{"\\vspace{0.5cm}"},
-{""}
+"\\documentclass[]{article}",
+"\\usepackage{ifthen,isolatin1,graphicx,color}",
+"\\graphicspath{{/tmp/disc-cover-8568/}}",
+"\\renewcommand{\\thepage}{}",
+"\\setlength{\\oddsidemargin}{0pt}",
+"\\setlength{\\evensidemargin}{0pt}",
+"\\setlength{\\voffset}{-100pt}",
+"\\setlength{\\footskip}{0pt}",
+"\\setlength{\\textheight}{780pt}",
+"\\hyphenpenalty=10000",
+"\\renewcommand{\\dotfill}{\\leaders\\hbox to 2mm{\\hfil.\\hfil}\\hfill}",
+"",
+"\\newcommand{\\mylabel}{\\color{black}}",
+"",
+"",
+"\\begin{document}",
+"",
+"\\noindent",
+"\\parbox{11cm}",
+"{",
+"{\\small Printed with \\emph{cd cover creator} (C) (GPL) by Ulli Meybohm, www.meybohm.de",
+"The program uses the tex-template from Disc-Cover.",
+"Disc-Cover is available at  \\texttt{http://www.liacs.nl/\\~{}jvhemert/disc-cover}}",
+"}",
+"\\vspace{0.5cm}",
+""
 };
 
 int resheadC=25;
--- cdcover-0.9.1.orig/resfront.h
+++ cdcover-0.9.1/resfront.h
@@ -4,42 +4,42 @@
 
 char * resfrontV[]=
 {
-{""},
-{"%%%%%%%%%"},
-{"% FRONT %"},
-{"%%%%%%%%%"},
-{""},
-{"\\noindent"},
-{"\\framebox{\\parbox[c][12.0cm][t]{12.0cm}"},
-{"{"},
-{"\\vspace{1cm}"},
-{""},
-{"\\noindent"},
-{"\\begin{center}"},
-{"{"},
-{"\\parbox{10cm}{{\\Large\\color{black}%TITLE%}}"},
-{""},
-{"\\rule{10cm}{1pt}"},
-{"\\vspace{0.1cm}"},
-{""},
-{"\\noindent"},
-{"\\parbox{10cm}{{\\hfill\\large{\\color{black}%SUBTITLE%}}}"},
-{"}"},
-{"\\end{center}"},
-{""},
-{"\\vfill"},
-{"\\begin{center}"},
-{""},
-{"\\parbox{10cm}{{\\footnotesize\\sffamily\\mylabel}}"},
-{"\\end{center}"},
-{""},
-{"}}"},
-{""},
-{"%%%%%%%%%"},
-{""},
-{""},
-{"\\vspace{1cm}"},
-{""}
+"",
+"%%%%%%%%%",
+"% FRONT %",
+"%%%%%%%%%",
+"",
+"\\noindent",
+"\\framebox{\\parbox[c][12.0cm][t]{12.0cm}",
+"{",
+"\\vspace{1cm}",
+"",
+"\\noindent",
+"\\begin{center}",
+"{",
+"\\parbox{10cm}{{\\Large\\color{black}%TITLE%}}",
+"",
+"\\rule{10cm}{1pt}",
+"\\vspace{0.1cm}",
+"",
+"\\noindent",
+"\\parbox{10cm}{{\\hfill\\large{\\color{black}%SUBTITLE%}}}",
+"}",
+"\\end{center}",
+"",
+"\\vfill",
+"\\begin{center}",
+"",
+"\\parbox{10cm}{{\\footnotesize\\sffamily\\mylabel}}",
+"\\end{center}",
+"",
+"}}",
+"",
+"%%%%%%%%%",
+"",
+"",
+"\\vspace{1cm}",
+""
 };
 
 int resfrontC=35;
--- cdcover-0.9.1.orig/HACKING
+++ cdcover-0.9.1/HACKING
@@ -2,14 +2,14 @@ HACKING
 -------
 
 This file is for every hacker who wants to reuse
-some code of the ccc-program or who wants to
+some code of the cdcover-program or who wants to
 make improvements or bugfixes. Read this text first.
 
 
 
 STRINGLIB
 
-The ccc program makes heavy use of the c++-classes
+The cdcover program makes heavy use of the c++-classes
 "Bytevector" and "Stringlist", which are defined
 in bytevector.cc and stringlist.cc.  I don't like
 the stirng-class of the c++ standard library, so I
@@ -18,7 +18,7 @@ You can use these classes as black boxes
 They are well tested and should work properly.
 Take a look to the header files "bytevector.h" 
 and "stringlist.h" to get information about available
-functions. Only very few functions are needed in ccc.
+functions. Only very few functions are needed in cdcover.
 
 
 TEXT2H
@@ -28,15 +28,15 @@ into c++ header files with "char* argv[]
 constants. See text2h.cc for the source code.
 This tool is used to create the string-ressource
 files, which are used to include the tex-templates
-and the ccc-ressources.
+and the cdcover-ressources.
 
-CCC
+CDCOVER
 
-The ccc program consists of the following files:
+The cdcover program consists of the following files:
 
 ccc.cc        - main program, parameter, error messages
-cccpara.h     - ccc parameters
-cccpara2.h    - ccc parameters WITHOUT value
+cccpara.h     - cdcover parameters
+cccpara2.h    - cdcover parameters WITHOUT value
                 These two files are needed by ccc.cc
 				for parameter-parsing
 
@@ -52,5 +52,5 @@ to reuse the cover-generator in other ap
 If you have special questions or if you have made
 improvements feel free to contact me:
 
-ccc-author:
+cdcover-author:
 Ulli Meybohm : ulli@meybohm.de
--- /dev/null
+++ cdcover-0.9.1/cdcover.1
@@ -0,0 +1,38 @@
+.TH CDCOVER 1
+.SH NAME
+cdcover \- Creating Data-CD Covers
+.SH SYNOPSIS
+.B cdcover
+.RI [ options ]
+.SH DESCRIPTION
+This manual page documents briefly the
+.B cdcover
+command.
+.PP
+\fBcdcover\fP is a program that creates Data-CD Covers.
+.SH OPTIONS
+.B \-t, \-\-title \fI<TITLE>\fP
+Set Frontcover Title
+.TP
+.B \-s, \-\-subtitle \fI<SUBTITLE>\fP
+Set Frontcover Subtitle
+.TP
+.B \-b, \-\-backcovertext \fI<BACKCOVERTEXT>\fP
+Set Backcovertext       (can be multiline)
+.TP
+.B \-l, \-\-sidetext-left \fI<LEFTSIDETEXT>\fP
+Set left sidetext        (default=\fI<TITLE>\fP) 
+.TP
+.B \-r, \-\-sidetext-right \fI<RIGHTSIDETEXT>\fP
+Set right sidetext     (default=\fI<SUBTITLE>\fP)
+.TP 
+.B \-c, \-\-count \fI<COUNT>\fP
+Set Number of CDs              (default=1)
+.TP
+.B \-o, \-\-outputfile \fI<FILENAME>\fP
+Set Outputfile (*.tex)    (default=stdout)
+.SH AUTHOR
+\fBcdcover\fP was written by Ulli Meybohm <ulli@meybohm.de>.
+.PP
+This manual page was written by Adrian Bunk <bunk@fs.tum.de>
+for the Debian GNU/Linux system (but may be used by others).
--- cdcover-0.9.1.orig/bytevector.cc
+++ cdcover-0.9.1/bytevector.cc
@@ -22,6 +22,7 @@
 
 #include "bytevector.h"
 
+using namespace std;
 
 	Bytevector::Bytevector(){
 		data=NULL;
--- cdcover-0.9.1.orig/cccpara.h
+++ cdcover-0.9.1/cccpara.h
@@ -4,23 +4,23 @@
 
 char * cccparaV[]=
 {
-{"-h"},
-{"--help"},
-{"-t"},
-{"--title"},
-{"-s"},
-{"--subtitle"},
-{"-b"},
-{"--backcovertext"},
-{"-c"},
-{"--count"},
-{"-o"},
-{"--outputfile"},
-{"-l"},
-{"--sidetext-left"},
-{"-r"},
-{"--sidetext-right"},
-{""}
+"-h",
+"--help",
+"-t",
+"--title",
+"-s",
+"--subtitle",
+"-b",
+"--backcovertext",
+"-c",
+"--count",
+"-o",
+"--outputfile",
+"-l",
+"--sidetext-left",
+"-r",
+"--sidetext-right",
+""
 };
 
 int cccparaC=16;
--- cdcover-0.9.1.orig/ccchelp.h
+++ cdcover-0.9.1/ccchelp.h
@@ -4,28 +4,28 @@
 
 char * ccchelpV[]=
 {
-{"CD Cover Creator  Version 0.9.1 (stable)                       "},
-{"Creating LaTeX cd-cover files"},
-{"Copyright (C) 2000, Ulli Meybohm, www.meybohm.de (GNU General Public License)"},
-{""},
-{"Start: cdcover [options]"},
-{""},
-{"Options:     "},
-{"-t, --title <TITLE>                  Set Frontcover Title"},
-{"-s, --subtitle <SUBTITLE>            Set Frontcover Subtitle"},
-{"-b, --backcovertext <BACKCOVERTEXT>  Set Backcovertext       (can be multiline)"},
-{"-l, --sidetext-left <LEFTSIDETEXT>   Set left sidetext        (default=<TITLE>) "},
-{"-r, --sidetext-right <RIGHTSIDETEXT> Set right   \"         (default=<SUBTITLE>) "},
-{"-c, --count <COUNT>                  Set Number of CDs              (default=1)"},
-{"-o, --outputfile <FILENAME>          Set Outputfile (*.tex)    (default=stdout)"},
-{""},
-{"You can use the variables %i and %n in the string-parameters if you make covers"},
-{"for cd-sets with more than one disk. (see example below, 6 CDs) "},
-{""},
-{"Examples:"},
-{"cdcover -t \"SuSE Linux 6.3\" -s \"Disc %i/%n\" -b \"SuSE Linux\" -c 6 -o suse.tex"},
-{"cdcover -t \"Backup\" -s \"Date: 04-2000\" -b \"`ls -1 /backup/*.tgz`\" -o backup.tex"},
-{""}
+"CD Cover Creator  Version 0.9.1 (stable)                       ",
+"Creating LaTeX cd-cover files",
+"Copyright (C) 2000, Ulli Meybohm, www.meybohm.de (GNU General Public License)",
+"",
+"Start: cdcover [options]",
+"",
+"Options:     ",
+"-t, --title <TITLE>                  Set Frontcover Title",
+"-s, --subtitle <SUBTITLE>            Set Frontcover Subtitle",
+"-b, --backcovertext <BACKCOVERTEXT>  Set Backcovertext       (can be multiline)",
+"-l, --sidetext-left <LEFTSIDETEXT>   Set left sidetext        (default=<TITLE>) ",
+"-r, --sidetext-right <RIGHTSIDETEXT> Set right   \"         (default=<SUBTITLE>) ",
+"-c, --count <COUNT>                  Set Number of CDs              (default=1)",
+"-o, --outputfile <FILENAME>          Set Outputfile (*.tex)    (default=stdout)",
+"",
+"You can use the variables %i and %n in the string-parameters if you make covers",
+"for cd-sets with more than one disk. (see example below, 6 CDs) ",
+"",
+"Examples:",
+"cdcover -t \"Debian GNU/Linux 3.1\" -s \"Disc %i/%n\" -b \"Debian GNU/Linux\" -c 10 -o sarge.tex",
+"cdcover -t \"Backup\" -s \"Date: 04-2000\" -b \"`ls -1 /backup/*.tgz`\" -o backup.tex",
+""
 };
 
 int ccchelpC=21;