blob: a08f48948f69f999fd78dfe9b441df550c622c64 (
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
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
|
##
## config.layout -- Pre-defined Installation Path Layouts
##
## Hints:
## - layouts can be loaded with configure's --enable-layout=ID option
## - when no --enable-layout option is given, the default layout is `RT'
## - a trailing plus character (`+') on paths is replaced with a
## `/<target>' suffix where <target> is currently hardcoded to 'rt3'.
## (This may become a configurable parameter at some point.)
##
## The following variables must _all_ be set:
## prefix exec_prefix bindir sbindir sysconfdir mandir libdir
## datadir htmldir localstatedir logfiledir masonstatedir
## sessionstatedir customdir customhtmldir customlexdir
## (This can be seen in m4/rt_layout.m4.)
##
# Default RT3 path layout.
<Layout RT3>
prefix: /opt/rt3
exec_prefix: ${prefix}
bindir: ${exec_prefix}/bin
sbindir: ${exec_prefix}/sbin
sysconfdir: ${prefix}/etc
mandir: ${prefix}/man
libdir: ${prefix}/lib
datadir: ${prefix}/share
htmldir: ${datadir}/html
manualdir: ${datadir}/doc
localstatedir: ${prefix}/var
logfiledir: ${localstatedir}/log
masonstatedir: ${localstatedir}/mason_data
sessionstatedir: ${localstatedir}/session_data
customdir: ${prefix}/local
custometcdir: ${customdir}/etc
customhtmldir: ${customdir}/html
customlexdir: ${customdir}/po
customlibdir: ${customdir}/lib
</Layout>
<Layout inplace>
prefix: `pwd`
exec_prefix: ${prefix}
bindir: ${exec_prefix}/bin
sbindir: ${exec_prefix}/sbin
sysconfdir: ${prefix}/etc
mandir: ${prefix}/man
libdir: ${prefix}/lib
datadir: ${prefix}/share
htmldir: ${prefix}/html
manualdir: ${datadir}/doc
localstatedir: ${prefix}/var
logfiledir: ${localstatedir}/log
masonstatedir: ${localstatedir}/mason_data
sessionstatedir: ${localstatedir}/session_data
customdir: ${prefix}/local
custometcdir: ${customdir}/etc
customhtmldir: ${customdir}/html
customlexdir: ${customdir}/po
customlibdir: ${customdir}/lib
</Layout>
<Layout FreeBSD>
prefix: /usr/local
exec_prefix: ${prefix}
bindir: ${exec_prefix}/bin
sbindir: ${exec_prefix}/sbin
sysconfdir: ${prefix}/etc+
mandir: ${prefix}/man
libdir: ${prefix}/lib+
datadir: ${prefix}/share+
htmldir: ${datadir}/html
manualdir: ${prefix}/share/doc+
logfiledir: /var/log
localstatedir: /var/run+
masonstatedir: ${localstatedir}/mason_data
sessionstatedir: ${localstatedir}/session_data
customdir: ${prefix}/share+
custometcdir: ${customdir}/local/etc
customhtmldir: ${customdir}/local/html
customlexdir: ${customdir}/local/po
customlibdir: ${customdir}/local/lib
</Layout>
<Layout Win32>
prefix: C:/Program Files/Request Tracker
exec_prefix: ${prefix}
bindir: ${exec_prefix}/bin
sbindir: ${exec_prefix}/sbin
sysconfdir: ${prefix}/etc
mandir: ${prefix}/man
libdir: ${prefix}/lib
datadir: ${prefix}
htmldir: ${datadir}/html
manualdir: ${datadir}/doc
localstatedir: ${prefix}/var
logfiledir: ${localstatedir}/log
masonstatedir: ${localstatedir}/mason_data
sessionstatedir: ${localstatedir}/session_data
customdir: ${prefix}/local
custometcdir: ${customdir}/etc
customhtmldir: ${customdir}/html
customlexdir: ${customdir}/po
customlibdir: ${customdir}/lib
</Layout>
<Layout Freeside>
prefix: /opt/rt3
exec_prefix: ${prefix}
bindir: ${exec_prefix}/bin
sbindir: ${exec_prefix}/sbin
sysconfdir: ${prefix}/etc
mandir: ${prefix}/man
libdir: ${prefix}/lib
datadir: ${prefix}/share
htmldir: %%%FREESIDE_DOCUMENT_ROOT%%%/rt
manualdir: ${datadir}/doc
localstatedir: ${prefix}/var
logfiledir: ${localstatedir}/log
masonstatedir: %%%MASONDATA%%%
sessionstatedir: ${localstatedir}/session_data
customdir: ${prefix}/local
custometcdir: ${customdir}/etc
customhtmldir: ${customdir}/html
customlexdir: ${customdir}/po
customlibdir: ${customdir}/lib
</Layout>
|