blob: 974d66cb6968ee953a90d59d5f65b8e982add2e6 (
plain) (
blame)
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
|
#!/bin/bash
function check_error {
if [ "$1" != 0 ]; then
echo "Error detected"
exit "$1"
fi
}
function common_build_init {
export dir=$(pwd)
if [[ "${installname}" == "" ]]; then
export installname=${package}
fi
if [[ "${envname}" == "" ]]; then
export envname=${package}
fi
export srcdir=$(realpath "${dir}/../src/${package}")
if [ ! -d "${srcdir}" ]; then
echo "Error: Package sources directory not exists for package '${package}'."
exit 3
fi
if [ ! -d "../env" ]; then
mkdir -p "../env"
check_error $?
fi
if [ ! -d "../bin" ]; then
mkdir -p "../bin"
check_error $?
fi
if [ ! -d "../tmp" ]; then
mkdir -p "../tmp"
check_error $?
fi
export builddir=$(realpath "${dir}/../tmp/${package}")
export bindir=$(realpath "${dir}/../bin/${installname}")
}
function common_package_init {
export scriptsdir=$(realpath .)
if [[ "${package}" == "" ]]; then
echo "Error: Missing package name"
echo "Example: ./build.sh virglrenderer"
exit 1
fi
export packagefile="${package}.sh"
export SRCTYPE="git"
export DEFAULT_BRANCH="master"
export AUTORECONF_FLAGS="-i"
if [ ! -f "../packages/${packagefile}" ]; then
echo "Error: Package '${package}' not exists."
exit 2
fi
}
function common_run_package {
cd ../packages
check_error $?
echo "${package}.sh"
source "./${package}.sh"
check_error $?
}
function env_path {
echo "export PATH=${bindir}/$1:\$PATH" >>"${envfile}"
check_error $?
}
function env_aclocal_path {
echo "export ACLOCAL_PATH=${bindir}/$1:\$PATH" >>"${envfile}"
check_error $?
}
function env_lib_library_path {
echo "export LD_LIBRARY_PATH=${bindir}/$1:\$LD_LIBRARY_PATH" >>"${envfile}"
check_error $?
}
function env_ldflags_path {
echo "export LDFLAGS=${bindir}/$1 \$LDFLAGS" >>"${envfile}"
check_error $?
}
function env_cppflags_path {
echo "export CPPFLAGS=${bindir}/$1 \$CPPFLAGS" >>"${envfile}"
check_error $?
}
function env_pkg_config_path {
echo "export PKG_CONFIG_PATH=${bindir}/$1:\$PKG_CONFIG_PATH" >>"${envfile}"
check_error $?
}
function env_man {
echo "export MANPATH=${bindir}/$1:\$MANPATH" >>"${envfile}"
check_error $?
}
function run_autoreconf {
flags="$*"
if [[ "${flags}" == "" ]]; then
flags="${AUTORECONF_FLAGS}"
fi
echo "cd ${srcdir}/${SUBDIR}"
cd "${srcdir}/${SUBDIR}"
check_error $?
echo "make distclean"
make distclean
echo "autoreconf ${flags}"
autoreconf ${flags}
unset flags
return 0
}
function run_src_script {
echo "cd ${srcdir}/${SUBDIR}"
cd "${srcdir}/${SUBDIR}"
check_error $?
echo $@
$@
check_error $?
}
function run_enable_same_dir_build {
echo "copy sources from $srcdir to ${builddir}"
cp -r "$srcdir" "${builddir}/.."
export srcdir="$builddir"
echo mkdir -p "${builddir}/${SUBDIR}"
mkdir -p "${builddir}/${SUBDIR}" || true
echo "change src dir to $srcdir"
}
function run_configure {
flags="$*"
if [[ "${flags}" == "" ]]; then
flags="${CONFIGURE_FLAGS}"
fi
echo "cd ${builddir}/${SUBDIR}"
cd "${builddir}/${SUBDIR}"
check_error $?
echo "$srcdir"/"$SUBDIR"/configure --prefix="${bindir}" "${flags}"
eval "$srcdir"/"$SUBDIR"/configure --prefix="${bindir}" ${flags}
check_error $?
unset flags
}
function run_cmake {
flags="$*"
if [[ "${flags}" == "" ]]; then
flags="${CONFIGURE_FLAGS}"
fi
echo "cd ${builddir}/${SUBDIR}"
cd "${builddir}/${SUBDIR}"
check_error $?
echo "cmake -DCMAKE_INSTALL_PREFIX:PATH=\"${bindir}\" \"$srcdir\" ${flags}"
eval cmake -DCMAKE_INSTALL_PREFIX:PATH="${bindir}" "$srcdir" ${flags}
check_error $?
unset flags
}
function run_make {
if [[ "${jobs}" == "" ]]; then
if [ -f "/proc/cpuinfo" ]; then
jobs="$(cat /proc/cpuinfo|grep processor|wc -l)"
else
jobs="1"
fi
fi
j=" -j${jobs}"
echo "make$j"
make$j
check_error $?
unset j
}
function run_make_install {
echo "make install"
make install
check_error $?
}
function run_git_clone {
echo "clone git repository $1"
git clone "$1" "../src/${package}"
check_error $?
}
function run_hg_clone {
echo "clone hg repository $1"
hg clone "$1" "../src/${package}"
check_error $?
}
function run_clone {
if [[ "${SRCTYPE}" == "git" ]]; then
run_git_clone $1
elif [[ "${SRCTYPE}" == "hg" ]]; then
run_hg_clone $1
else
echo "Error: unknown SRCTYPE: ${SRCTYPE}"
exit 1
fi
}
function run_git_switch_branch {
cd "${srcdir}"
check_error $?
if [[ "${srcbranch}" == "" ]]; then
export srcbranch="$1"
fi
echo "git checkout ${srcbranch}"
git checkout "${srcbranch}"
check_error $?
}
function run_hg_switch_branch {
cd "${srcdir}"
if [[ "${srcbranch}" == "" ]]; then
export srcbranch="$1"
fi
echo "hg update ${srcbranch}"
hg update "${srcbranch}"
check_error $?
}
function run_switch_branch {
branch="$1"
if [[ "${DEFAULT_BRANCH}" == "" ]]; then
echo "Error: source branch not set."
exit 1
fi
if [[ "${branch}" == "" ]]; then
branch="${DEFAULT_BRANCH}"
fi
if [[ "${SRCTYPE}" == "git" ]]; then
run_git_switch_branch ${branch}
elif [[ "${SRCTYPE}" == "hg" ]]; then
run_hg_switch_branch ${branch}
else
echo "Error: unknown SRCTYPE: ${SRCTYPE}"
exit 1
fi
unset branch
}
function repack_paths {
envvar="$1"
if [[ "$2" != "" ]]; then
envvar="$2"
fi
if [[ "$envvar" == "" ]]; then
return
fi
IFS=":"
packedpaths=""
for var in $envvar
do
packedpaths="${packedpaths}${bindir}/$var:"
done
unset IFS
echo "export $3=\"${packedpaths}\$$3\"" >>"${envfile}"
check_error $?
}
function repack_flags {
envvar="$1"
if [[ "$2" != "" ]]; then
envvar="$2"
fi
if [[ "$envvar" == "" ]]; then
return
fi
IFS=":"
packedpaths=""
for var in $envvar
do
packedpaths="${packedpaths}${4}${bindir}/$var "
done
unset IFS
echo "export $3=\"${packedpaths}\$$3\"" >>"${envfile}"
check_error $?
}
function package_use {
echo "package_use"
repack_paths "$ENV_PATH" "$OVERRIDE_ENV_PATH" "PATH"
repack_paths "$ENV_LD_LIBRARY_PATH" "$OVERRIDE_ENV_LD_LIBRARY_PATH" "LD_LIBRARY_PATH"
repack_paths "$ENV_PKG_CONFIG_PATH" "$OVERRIDE_ENV_PKG_CONFIG_PATH" "PKG_CONFIG_PATH"
repack_paths "$ENV_MANPATH" "$OVERRIDE_ENV_MANPATH" "MANPATH"
repack_paths "$ENV_ACLOCAL_PATH" "$OVERRIDE_ENV_ACLOCAL_PATH" "ACLOCAL_PATH"
repack_paths "$ENV_LIBGL_DRIVERS_PATH" "$OVERRIDE_ENV_LIBGL_DRIVERS_PATH" "LIBGL_DRIVERS_PATH"
repack_flags "$ENV_LDFLAGS_PATH" "$OVERRIDE_ENV_LDFLAGS_PATH" "LDFLAGS" "-L"
repack_flags "$ENV_CPPFLAGS_PATH" "$OVERRIDE_ENV_CPPFLAGS_PATH" "CPPFLAGS" "-I"
}
function common_use_package {
cd "${scriptsdir}"
check_error $?
export envfile="../env/run${envname}.sh"
echo "#!/bin/bash" >"${envfile}"
check_error $?
echo "" >>"${envfile}"
package_use
check_error $?
echo "\"\$@\"" >>"${envfile}"
check_error $?
chmod 0755 "${envfile}"
check_error $?
}
function common_use_packages {
cd "${scriptsdir}"
check_error $?
export envname="$1"
export installname0="${installname}"
export envfile="../env/run${envname}.sh"
echo "#!/bin/bash" >"${envfile}"
check_error $?
echo "" >>"${envfile}"
shift
names="$*"
IFS=" "
for package in $names
do
export installname="${installname0}"
unset ENV_PATH
unset ENV_LD_LIBRARY_PATH
unset ENV_PKG_CONFIG_PATH
unset ENV_MANPATH
unset ENV_ACLOCAL_PATH
unset ENV_LDFLAGS_PATH
unset ENV_CPPFLAGS_PATH
common_package_init
common_build_init
common_run_package
package_use
check_error $?
done
unset IFS
echo "\"\$@\"" >>"${envfile}"
check_error $?
chmod 0755 "${envfile}"
check_error $?
}
function common_update_source_all {
cd ../src/
check_error $?
files="*"
for package in $files
do
cd ../scripts/
./updatesrc.sh $package
check_error $?
done
unset files
}
function common_reset_source_all {
cd ../src/
check_error $?
files="*"
for package in $files
do
cd ../scripts/
./resetsrc.sh $package
check_error $?
done
unset files
}
function package_get_source {
echo "package_get_source"
run_clone "${SRCURL}"
}
function package_update_source {
echo "package_update_source"
cd "../src/${package}"
if [ -d .git ]; then
echo "git fetch origin"
git fetch --all
check_error $?
run_switch_branch
echo "git pull --rebase"
git pull --rebase --all
return 0
fi
if [ -d .hg ]; then
echo "hg pull"
hg pull
check_error $?
return
fi
}
function package_reset_source {
echo "package_reset_source"
cd "../src/${package}"
if [ -d .git ]; then
echo "git reset --hard HEAD"
git reset --hard HEAD
check_error $?
return
fi
if [ -d .hg ]; then
echo "hg update -C"
hg update -C
check_error $?
return
fi
}
function common_clean_destination {
echo "clean ${bindir}"
rm -rf "${bindir}"
}
function common_clean_builddir {
echo rm -rf "${builddir}"
rm -rf "${builddir}"
check_error $?
echo mkdir -p "${builddir}"
mkdir -p "${builddir}"
check_error $?
}
function package_build {
echo "package_build"
run_switch_branch
if [[ "$ENABLE_SAME_DIR_BUILD" != "" ]]; then
run_enable_same_dir_build
fi
if [[ "$SRC_INIT_COMMAND" != "" ]]; then
eval run_src_script "$SRC_INIT_COMMAND"
fi
case "$BUILD_TYPE" in
automake)
run_autoreconf
run_configure
;;
configure)
run_configure
;;
cmake)
run_cmake
;;
*)
echo "Error: unknown BUILD_TYPE. Valid values: automake, configure, cmake"
exit 1
;;
esac
run_make
run_make_install
}
function include {
source "./$1.sh"
}
|