blob: 93634a1857261189ab607804ae7266f1d1d02c81 (
plain)
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
|
prog-group = GnuTLS;
config-header = config.h;
gnu-usage;
disable-save;
long-opts;
no-xlate = opt;
version = "@VERSION@";
no-misuse-usage;
export = '#include <gettext.h>';
copyright = {
date = "2000-@YEAR@";
owner = "Free Software Foundation, and others";
author = "Nikos Mavrogiannopoulos, Simon Josefsson and others; "
"see /usr/share/doc/gnutls/AUTHORS for a complete list.";
eaddr = "@PACKAGE_BUGREPORT@";
type = gpl;
};
help-value = h;
flag = {
name = debug;
value = d;
arg-type = number;
arg-range = "0 -> 9999";
descrip = "Enable debugging";
doc = "Specifies the debug level.";
};
#ifdef VERBOSE_OPT
flag = {
name = verbose;
value = V;
max = NOLIMIT;
descrip = "More verbose output";
doc = "";
};
#endif
#ifdef INFILE_OPT
flag = {
name = infile;
arg-type = file;
file-exists = yes;
descrip = "Input file";
doc = "";
};
#endif
#ifdef OUTFILE_OPT
flag = {
name = outfile;
arg-type = string;
descrip = "Output file";
doc = "";
};
#endif
|