-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdist.beos.custom.py
189 lines (158 loc) · 3.76 KB
/
dist.beos.custom.py
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
#
# Example build configuration for BeOS platforms.
#
# To use rename to "custom.py" and uncomment the desired parameters.
#
# Most parameters in here are tri-state and accept the values 'auto', 'yes' and 'no'.
# Since this is a python file after all you can also use the values True and False
# instead of 'yes' and 'no' as well as all kinds of code you can use in python for
# example to adjust configuration on external parameters.
#
# See dist.custom.py for platform independent options to add here.
#
# ToolKit used to build IGDE.
#
# Value enumeration: one from:
# - 'null': Use no ToolKit. Only special command lines supported.
#
# igde_toolkit = 'null'
# System path
#
# Value type: string with directory path
#
# prefix = '/boot/system'
# System libraries
#
# Value type: string with directory path
#
# libdir = '${prefix}/lib'
# System includes
#
# Value type: string with directory path
#
# includedir = '${prefix}/develop/include'
# System shares
#
# Value type: string with directory path
#
# datadir = '${prefix}/data'
# System configuration
#
# Value type: string with directory path
#
# sysconfdir = '${prefix}/settings'
# System binaries
#
# Value type: string with directory path
#
# execdir = '${prefix}/bin'
# System var
#
# Value type: string with directory path
#
# sysvardir = '${prefix}/var'
# System cache
#
# Value type: string with directory path
#
# cachedir = '${prefix}/cache'
# System documentation
#
# Value type: string with directory path
#
# docdir = '${prefix}/documentation'
# Path to the Drag[en]gine binaries
#
# Value type: string with directory path
#
# path_de_bin = '${execdir}'
# Path to the Drag[en]gine libraries
#
# Value type: string with directory path
#
# path_de_lib = '${libdir}'
# Path to the Drag[en]gine headers
#
# Value type: string with directory path
#
# path_de_include = '${includedir}/dragengine'
# Path to the Drag[en]gine configuration
#
# Value type: string with directory path
#
# path_de_config = '${sysconfdir}/dragengine'
# Path to the Drag[en]gine data
#
# Value type: string with directory path
#
# path_de_data = '${libdir}/dragengine'
# Path to the Drag[en]gine shares
#
# Value type: string with directory path
#
# path_de_share = '${datadir}/dragengine'
# Path to the Drag[en]gine cache
#
# Value type: string with directory path
#
# path_de_cache = '${cachedir}/dragengine'
# Path to the IGDE binaries
#
# Value type: string with directory path
#
# path_igde_bin = '${execdir}'
# Path to the IGDE libraries
#
# Value type: string with directory path
#
# path_igde_lib = '${libdir}'
# Path to the IGDE headers
#
# Value type: string with directory path
#
# path_igde_include = '${includedir}/deigde'
# Path to the IGDE configuration
#
# Value type: string with directory path
#
# path_igde_config = '${sysconfdir}/deigde'
# Path to the IGDE data
#
# Value type: string with directory path
#
# path_igde_data = '${libdir}/deigde'
# Path to the IGDE shares
#
# Value type: string with directory path
#
# path_igde_share = '${datadir}/deigde'
# Path to the Launcher binaries
#
# Value type: string with directory path
#
# path_launcher_bin = '${execdir}'
# Path to the Launcher binary libraries
#
# Value type: string with directory path
#
# path_launcher_bin_lib = '${libdir}'
# Path to the Launcher configuration
#
# Value type: string with directory path
#
# path_launcher_config = '${sysconfdir}/delauncher'
# Path to the Launcher data
#
# Value type: string with directory path
#
# path_launcher_data = '${libdir}/delauncher'
# Path to the Launcher shares
#
# Value type: string with directory path
#
# path_launcher_share = '${datadir}/delauncher'
# Path to the Launcher games
#
# Value type: string with directory path
#
# path_launcher_games = '${sysconfdir)/delauncher/games'