-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path07-blfs-setup.sh
More file actions
447 lines (446 loc) · 24.5 KB
/
07-blfs-setup.sh
File metadata and controls
447 lines (446 loc) · 24.5 KB
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
#!/bin/bash
#################################################
# Title: 07-blfs-setup.sh #
# Date: 2018-02-09 #
# Version: 1.1 #
# Author: baho-utot@columbus.rr.com #
# Options: #
#################################################
#
set -o errexit # exit if error...insurance ;)
set -o nounset # exit if variable not initalized
set +h # disable hashall
PRGNAME=${0##*/} # script name minus the path
TOPDIR=${PWD}
PARENT=/usr/src/Octothorpe
LOGFILE=$(date +%Y-%m-%d).log
#LOGFILE=/dev/null # uncomment to disable log file
#
# Common support functions
#
die() {
local _red="\\033[1;31m"
local _normal="\\033[0;39m"
[ -n "$*" ] && printf "${_red}$*${_normal}\n"
false
exit 1
}
msg() {
printf "%s\n" "${1}"
return
}
msg_line() {
printf "%s" "${1}"
return
}
msg_failure() {
local _red="\\033[1;31m"
local _normal="\\033[0;39m"
printf "${_red}%s${_normal}\n" "FAILURE"
exit 2
}
msg_success() {
local _green="\\033[1;32m"
local _normal="\\033[0;39m"
printf "${_green}%s${_normal}\n" "SUCCESS"
return
}
msg_log() {
printf "\n%s\n\n" "${1}" >> ${_logfile} 2>&1
return
}
end-run() {
local _green="\\033[1;32m"
local _normal="\\033[0;39m"
printf "${_green}%s${_normal}\n" "Run Complete"
return
}
#
# Functions
#
_wget_list() {
msg_line " Creating wget-list: "
cat > ${PARENT}/SOURCES/wget-blfs <<- EOF
http://anduin.linuxfromscratch.org/BLFS/blfs-bootscripts/blfs-bootscripts-20170731.tar.xz
https://www.kernel.org/pub/software/utils/pciutils/pciutils-3.5.5.tar.xz
https://www.samba.org/ftp/rsync/src/rsync-3.1.2.tar.gz
https://www.python.org/ftp/python/3.6.2/Python-3.6.2.tar.xz
http://ftp.osuosl.org/pub/blfs/8.1/p/python-3.6.2-docs-html.tar.bz2
EOF
# dependencies
cat >> ${PARENT}/SOURCES/wget-blfs <<- EOF
https://sourceware.org/ftp/libffi/libffi-3.2.1.tar.gz
https://dri.freedesktop.org/libdrm/libdrm-2.4.82.tar.bz2
https://ftp.gnu.org/gnu/nettle/nettle-3.3.tar.gz
https://sourceware.org/ftp/elfutils/0.170/elfutils-0.170.tar.bz2
http://xmlsoft.org/sources/libxml2-2.9.4.tar.gz
https://wayland.freedesktop.org/releases/wayland-1.14.0.tar.xz
https://www.gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-1.27.tar.bz2
https://www.gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-1.8.0.tar.bz2
https://people.freedesktop.org/~aplattner/vdpau/libvdpau-1.1.1.tar.bz2
https://www.python.org/ftp/python/2.7.13/Python-2.7.13.tar.xz
https://files.pythonhosted.org/packages/source/f/funcsigs/funcsigs-1.0.2.tar.gz
https://files.pythonhosted.org/packages/source/B/Beaker/Beaker-1.9.0.tar.gz
https://files.pythonhosted.org/packages/source/M/MarkupSafe/MarkupSafe-1.0.tar.gz
https://files.pythonhosted.org/packages/source/M/Mako/Mako-1.0.4.tar.gz
http://anduin.linuxfromscratch.org/BLFS/other/make-ca.sh-20170514
http://anduin.linuxfromscratch.org/BLFS/other/certdata.txt
http://www.cacert.org/certs/root.crt
https://curl.haxx.se/download/curl-7.55.1.tar.xz
http://www.libarchive.org/downloads/libarchive-3.3.2.tar.gz
https://cmake.org/files/v3.9/cmake-3.9.1.tar.gz
http://llvm.org/releases/4.0.1/llvm-4.0.1.src.tar.xz
https://ftp.gnu.org/gnu/screen/screen-4.5.1.tar.gz
https://downloads.sourceforge.net/libpng/libpng-1.6.31.tar.xz
https://downloads.sourceforge.net/apng/libpng-1.6.31-apng.patch.gz
https://www.cairographics.org/releases/pixman-0.34.0.tar.gz
https://github.com/anholt/libepoxy/releases/download/1.4.3/libepoxy-1.4.3.tar.xz
http://bitmath.org/code/mtdev/mtdev-1.1.5.tar.bz2
https://ftp.gnu.org/gnu/cpio/cpio-2.12.tar.bz2
https://downloads.sourceforge.net/pcre/pcre-8.41.tar.bz2
http://ftp.gnome.org/pub/gnome/sources/glib/2.52/glib-2.52.3.tar.xz
http://ftp.gnome.org/pub/gnome/sources/gobject-introspection/1.52/gobject-introspection-1.52.1.tar.xz
EOF
# Xorg
cat >> ${PARENT}/SOURCES/wget-blfs <<- EOF
https://www.x.org/pub/individual/util/util-macros-1.19.1.tar.bz2
https://www.x.org/pub/individual/proto/bigreqsproto-1.1.2.tar.bz2
https://www.x.org/pub/individual/proto/compositeproto-0.4.2.tar.bz2
https://www.x.org/pub/individual/proto/damageproto-1.2.1.tar.bz2
https://www.x.org/pub/individual/proto/dmxproto-2.3.1.tar.bz2
https://www.x.org/pub/individual/proto/dri2proto-2.8.tar.bz2
https://www.x.org/pub/individual/proto/dri3proto-1.0.tar.bz2
https://www.x.org/pub/individual/proto/fixesproto-5.0.tar.bz2
https://www.x.org/pub/individual/proto/fontsproto-2.1.3.tar.bz2
https://www.x.org/pub/individual/proto/glproto-1.4.17.tar.bz2
https://www.x.org/pub/individual/proto/inputproto-2.3.2.tar.bz2
https://www.x.org/pub/individual/proto/kbproto-1.0.7.tar.bz2
https://www.x.org/pub/individual/proto/presentproto-1.1.tar.bz2
https://www.x.org/pub/individual/proto/randrproto-1.5.0.tar.bz2
https://www.x.org/pub/individual/proto/recordproto-1.14.2.tar.bz2
https://www.x.org/pub/individual/proto/renderproto-0.11.1.tar.bz2
https://www.x.org/pub/individual/proto/resourceproto-1.2.0.tar.bz2
https://www.x.org/pub/individual/proto/scrnsaverproto-1.2.2.tar.bz2
https://www.x.org/pub/individual/proto/videoproto-2.3.3.tar.bz2
https://www.x.org/pub/individual/proto/xcmiscproto-1.2.2.tar.bz2
https://www.x.org/pub/individual/proto/xextproto-7.3.0.tar.bz2
https://www.x.org/pub/individual/proto/xf86bigfontproto-1.2.0.tar.bz2
https://www.x.org/pub/individual/proto/xf86dgaproto-2.1.tar.bz2
https://www.x.org/pub/individual/proto/xf86driproto-2.1.1.tar.bz2
https://www.x.org/pub/individual/proto/xf86vidmodeproto-2.3.1.tar.bz2
https://www.x.org/pub/individual/proto/xineramaproto-1.2.1.tar.bz2
https://www.x.org/pub/individual/proto/xproto-7.0.31.tar.bz2
https://www.x.org/pub/individual/lib/libXau-1.0.8.tar.bz2
https://www.x.org/pub/individual/lib/libXdmcp-1.1.2.tar.bz2
https://xcb.freedesktop.org/dist/xcb-proto-1.12.tar.bz2
http://www.linuxfromscratch.org/patches/blfs/8.1/xcb-proto-1.12-python3-1.patch
http://www.linuxfromscratch.org/patches/blfs/8.1/xcb-proto-1.12-schema-1.patch
https://xcb.freedesktop.org/dist/libxcb-1.12.tar.bz2
http://www.linuxfromscratch.org/patches/blfs/8.1/libxcb-1.12-python3-1.patch
https://www.x.org/pub/individual/lib/xtrans-1.3.5.tar.bz2
https://www.x.org/pub/individual/lib/libX11-1.6.5.tar.bz2
https://www.x.org/pub/individual/lib/libXext-1.3.3.tar.bz2
https://www.x.org/pub/individual/lib/libFS-1.0.7.tar.bz2
https://www.x.org/pub/individual/lib/libICE-1.0.9.tar.bz2
https://www.x.org/pub/individual/lib/libSM-1.2.2.tar.bz2
https://www.x.org/pub/individual/lib/libXScrnSaver-1.2.2.tar.bz2
https://www.x.org/pub/individual/lib/libXt-1.1.5.tar.bz2
https://www.x.org/pub/individual/lib/libXmu-1.1.2.tar.bz2
https://www.x.org/pub/individual/lib/libXpm-3.5.12.tar.bz2
https://www.x.org/pub/individual/lib/libXaw-1.0.13.tar.bz2
https://www.x.org/pub/individual/lib/libXfixes-5.0.3.tar.bz2
https://www.x.org/pub/individual/lib/libXcomposite-0.4.4.tar.bz2
https://www.x.org/pub/individual/lib/libXrender-0.9.10.tar.bz2
https://www.x.org/pub/individual/lib/libXcursor-1.1.14.tar.bz2
https://www.x.org/pub/individual/lib/libXdamage-1.1.4.tar.bz2
https://www.x.org/pub/individual/lib/libfontenc-1.1.3.tar.bz2
https://www.x.org/pub/individual/lib/libXfont2-2.0.1.tar.bz2
https://www.x.org/pub/individual/lib/libXft-2.3.2.tar.bz2
https://www.x.org/pub/individual/lib/libXi-1.7.9.tar.bz2
https://www.x.org/pub/individual/lib/libXinerama-1.1.3.tar.bz2
https://www.x.org/pub/individual/lib/libXrandr-1.5.1.tar.bz2
https://www.x.org/pub/individual/lib/libXres-1.0.7.tar.bz2
https://www.x.org/pub/individual/lib/libXtst-1.2.3.tar.bz2
https://www.x.org/pub/individual/lib/libXv-1.0.11.tar.bz2
https://www.x.org/pub/individual/lib/libXvMC-1.0.10.tar.bz2
https://www.x.org/pub/individual/lib/libXxf86dga-1.1.4.tar.bz2
https://www.x.org/pub/individual/lib/libXxf86vm-1.1.4.tar.bz2
https://www.x.org/pub/individual/lib/libdmx-1.1.3.tar.bz2
https://www.x.org/pub/individual/lib/libpciaccess-0.13.5.tar.bz2
https://www.x.org/pub/individual/lib/libxkbfile-1.0.9.tar.bz2
https://www.x.org/pub/individual/lib/libxshmfence-1.2.tar.bz2
https://downloads.sourceforge.net/freetype/freetype-2.8.tar.bz2
https://downloads.sourceforge.net/freetype/freetype-doc-2.8.tar.bz2
https://www.freedesktop.org/software/fontconfig/release/fontconfig-2.12.4.tar.bz2
https://xcb.freedesktop.org/dist/xcb-util-0.4.0.tar.bz2
https://xcb.freedesktop.org/dist/xcb-util-image-0.4.0.tar.bz2
https://xcb.freedesktop.org/dist/xcb-util-keysyms-0.4.0.tar.bz2
https://xcb.freedesktop.org/dist/xcb-util-renderutil-0.3.9.tar.bz2
https://xcb.freedesktop.org/dist/xcb-util-wm-0.4.1.tar.bz2
https://xcb.freedesktop.org/dist/xcb-util-cursor-0.1.3.tar.bz2
https://mesa.freedesktop.org/archive/mesa-17.1.6.tar.xz
http://www.linuxfromscratch.org/patches/blfs/8.1/mesa-17.1.6-add_xdemos-1.patch
https://www.x.org/pub/individual/data/xbitmaps-1.1.1.tar.bz2
https://www.x.org/pub/individual/app/iceauth-1.0.7.tar.bz2
https://www.x.org/pub/individual/app/luit-1.1.1.tar.bz2
https://www.x.org/pub/individual/app/mkfontdir-1.0.7.tar.bz2
https://www.x.org/pub/individual/app/mkfontscale-1.1.2.tar.bz2
https://www.x.org/pub/individual/app/sessreg-1.1.1.tar.bz2
https://www.x.org/pub/individual/app/setxkbmap-1.3.1.tar.bz2
https://www.x.org/pub/individual/app/smproxy-1.0.6.tar.bz2
https://www.x.org/pub/individual/app/x11perf-1.6.0.tar.bz2
https://www.x.org/pub/individual/app/xauth-1.0.10.tar.bz2
https://www.x.org/pub/individual/app/xbacklight-1.2.1.tar.bz2
https://www.x.org/pub/individual/app/xcmsdb-1.0.5.tar.bz2
https://www.x.org/pub/individual/app/xcursorgen-1.0.6.tar.bz2
https://www.x.org/pub/individual/app/xdpyinfo-1.3.2.tar.bz2
https://www.x.org/pub/individual/app/xdriinfo-1.0.5.tar.bz2
https://www.x.org/pub/individual/app/xev-1.2.2.tar.bz2
https://www.x.org/pub/individual/app/xgamma-1.0.6.tar.bz2
https://www.x.org/pub/individual/app/xhost-1.0.7.tar.bz2
https://www.x.org/pub/individual/app/xinput-1.6.2.tar.bz2
https://www.x.org/pub/individual/app/xkbcomp-1.4.0.tar.bz2
https://www.x.org/pub/individual/app/xkbevd-1.1.4.tar.bz2
https://www.x.org/pub/individual/app/xkbutils-1.0.4.tar.bz2
https://www.x.org/pub/individual/app/xkill-1.0.4.tar.bz2
https://www.x.org/pub/individual/app/xlsatoms-1.1.2.tar.bz2
https://www.x.org/pub/individual/app/xlsclients-1.1.3.tar.bz2
https://www.x.org/pub/individual/app/xmessage-1.0.4.tar.bz2
https://www.x.org/pub/individual/app/xmodmap-1.0.9.tar.bz2
https://www.x.org/pub/individual/app/xpr-1.0.4.tar.bz2
https://www.x.org/pub/individual/app/xprop-1.2.2.tar.bz2
https://www.x.org/pub/individual/app/xrandr-1.5.0.tar.bz2
https://www.x.org/pub/individual/app/xrdb-1.1.0.tar.bz2
https://www.x.org/pub/individual/app/xrefresh-1.0.5.tar.bz2
https://www.x.org/pub/individual/app/xset-1.2.3.tar.bz2
https://www.x.org/pub/individual/app/xsetroot-1.1.1.tar.bz2
https://www.x.org/pub/individual/app/xvinfo-1.1.3.tar.bz2
https://www.x.org/pub/individual/app/xwd-1.0.6.tar.bz2
https://www.x.org/pub/individual/app/xwininfo-1.1.3.tar.bz2
https://www.x.org/pub/individual/app/xwud-1.0.4.tar.bz2
https://www.x.org/pub/individual/data/xcursor-themes-1.0.4.tar.bz2
https://www.x.org/pub/individual/font/font-util-1.3.1.tar.bz2
https://www.x.org/pub/individual/font/encodings-1.0.4.tar.bz2
https://www.x.org/pub/individual/font/font-alias-1.0.3.tar.bz2
https://www.x.org/pub/individual/font/font-adobe-utopia-type1-1.0.4.tar.bz2
https://www.x.org/pub/individual/font/font-bh-ttf-1.0.3.tar.bz2
https://www.x.org/pub/individual/font/font-bh-type1-1.0.3.tar.bz2
https://www.x.org/pub/individual/font/font-ibm-type1-1.0.3.tar.bz2
https://www.x.org/pub/individual/font/font-misc-ethiopic-1.0.3.tar.bz2
https://www.x.org/pub/individual/font/font-xfree86-type1-1.0.4.tar.bz2
https://www.x.org/pub/individual/data/xkeyboard-config/xkeyboard-config-2.21.tar.bz2
https://www.x.org/pub/individual/xserver/xorg-server-1.19.3.tar.bz2
https://www.freedesktop.org/software/libevdev/libevdev-1.5.7.tar.xz
https://www.x.org/pub/individual/driver/xf86-input-evdev-2.10.5.tar.bz2
https://www.freedesktop.org/software/libinput/libinput-1.8.1.tar.xz
https://www.x.org/pub/individual/driver/xf86-input-libinput-0.25.1.tar.bz2
https://www.x.org/pub/individual/driver/xf86-input-synaptics-1.9.0.tar.bz2
https://www.x.org/pub/individual/driver/xf86-video-ati-7.9.0.tar.bz2
https://www.x.org/pub/individual/driver/xf86-video-fbdev-0.4.4.tar.bz2
https://github.com/01org/libva/releases/download/1.8.3/libva-1.8.3.tar.bz2
https://www.x.org/pub/individual/app/twm-1.0.9.tar.bz2
http://invisible-mirror.net/archives/xterm/xterm-330.tgz
https://www.x.org/pub/individual/app/xclock-1.0.7.tar.bz2
https://www.x.org/pub/individual/app/xinit-1.3.4.tar.bz2
EOF
msg_success
return
}
_md5sum_list(){
msg_line " Creating wget-list: "
cat > ${PARENT}/SOURCES/md5sum-blfs <<- EOF
238d9969cc0de8b9105d972007d9d546 SOURCES/pciutils-3.5.5.tar.xz
feeffb543c42d3a9790d4e77437b57db SOURCES/blfs-bootscripts-20170731.tar.xz
0f758d7e000c0f7f7d3792610fad70cb SOURCES/rsync-3.1.2.tar.gz
2c68846471994897278364fc18730dd9 SOURCES/Python-3.6.2.tar.xz
EOF
# Dependencies
cat >> ${PARENT}/SOURCES/md5sum-blfs <<- EOF
83b89587607e3eb65c70d361f13bab43 SOURCES/libffi-3.2.1.tar.gz
29867814123c3d23056b1d05aada1b9d SOURCES/libdrm-2.4.82.tar.bz2
10f969f78a463704ae73529978148dbe SOURCES/nettle-3.3.tar.gz
03599aee98c9b726c7a732a2dd0245d5 SOURCES/elfutils-0.170.tar.bz2
ae249165c173b1ff386ee8ad676815f5 SOURCES/libxml2-2.9.4.tar.gz
0235f6075c32c3be61cff94fa0b9f108 SOURCES/wayland-1.14.0.tar.xz
5217ef3e76a7275a2a3b569a12ddc989 SOURCES/libgpg-error-1.27.tar.bz2
530db74602b558209f9ad7356a680971 SOURCES/libgcrypt-1.8.0.tar.bz2
2fa0b05a4f4d06791eec83bc9c854d14 SOURCES/libvdpau-1.1.1.tar.bz2
53b43534153bb2a0363f08bae8b9d990 SOURCES/Python-2.7.13.tar.xz
7e583285b1fb8a76305d6d68f4ccc14e SOURCES/funcsigs-1.0.2.tar.gz
38b3fcdfa24faf97c6cf66991eb54e9c SOURCES/Beaker-1.9.0.tar.gz
2fcedc9284d50e577b5192e8e3578355 SOURCES/MarkupSafe-1.0.tar.gz
c5fc31a323dd4990683d2f2da02d4e20 SOURCES/Mako-1.0.4.tar.gz
a21a04d6ff5c4645c748220dbaa9f221 SOURCES/make-ca.sh-20170514
ac4a59c38c47adc160ea71eace20257b SOURCES/curl-7.55.1.tar.xz
4583bd6b2ebf7e0e8963d90879eb1b27 SOURCES/libarchive-3.3.2.tar.gz
00f43c6a56d4903436317c14f9ca7f37 SOURCE/cmake-3.9.1.tar.gz
a818e70321b91e2bb2d47e60edd5408f SOURCES/llvm-4.0.1.src.tar.xz
a8c5da2f42f8a18fa4dada2419d1549b SOURCES/screen-4.5.1.tar.gz
1b34eab440263e32cfa39d19413fad54 SOURCES/libpng-1.6.31.tar.xz
1b34eab440263e32cfa39d19413fad54 SOURCES/libpng-1.6.31-apng.patch.gz
e80ebae4da01e77f68744319f01d52a3 SOURCES/pixman-0.34.0.tar.gz
af4c3ce0fb1143bdc4e43f85695a9bed SOURCES/libepoxy-1.4.3.tar.xz
52c9610b6002f71d1642dc1a1cca5ec1 SOURCES/mtdev-1.1.5.tar.bz2
93eea9f07c0058c097891c73e4955456 SOURCES/cpio-2.12.tar.bz2
c160d22723b1670447341b08c58981c1 SOURCES/pcre-8.41.tar.bz2
89265d0289a436e99cad54491eb21ef4 SOURCES/glib-2.52.3.tar.xz
34157073991f9eeb0ed953351b65eb61 SOURCES/gobject-introspection-1.52.1.tar.xz
EOF
# Xorg
cat >> ${PARENT}/SOURCES/md5sum-blfs <<- EOF
6e76e546a4e580f15cebaf8019ef1625 SOURCES/util-macros-1.19.1.tar.bz2
1a05fb01fa1d5198894c931cf925c025 SOURCES/bigreqsproto-1.1.2.tar.bz2
98482f65ba1e74a08bf5b056a4031ef0 SOURCES/compositeproto-0.4.2.tar.bz2
998e5904764b82642cc63d97b4ba9e95 SOURCES/damageproto-1.2.1.tar.bz2
4ee175bbd44d05c34d43bb129be5098a SOURCES/dmxproto-2.3.1.tar.bz2
b2721d5d24c04d9980a0c6540cb5396a SOURCES/dri2proto-2.8.tar.bz2
a3d2cbe60a9ca1bf3aea6c93c817fee3 SOURCES/dri3proto-1.0.tar.bz2
e7431ab84d37b2678af71e29355e101d SOURCES/fixesproto-5.0.tar.bz2
36934d00b00555eaacde9f091f392f97 SOURCES/fontsproto-2.1.3.tar.bz2
5565f1b0facf4a59c2778229c1f70d10 SOURCES/glproto-1.4.17.tar.bz2
b290a463af7def483e6e190de460f31a SOURCES/inputproto-2.3.2.tar.bz2
94afc90c1f7bef4a27fdd59ece39c878 SOURCES/kbproto-1.0.7.tar.bz2
92f9dda9c870d78a1d93f366bcb0e6cd SOURCES/presentproto-1.1.tar.bz2
a46765c8dcacb7114c821baf0df1e797 SOURCES/randrproto-1.5.0.tar.bz2
1b4e5dede5ea51906f1530ca1e21d216 SOURCES/recordproto-1.14.2.tar.bz2
a914ccc1de66ddeb4b611c6b0686e274 SOURCES/renderproto-0.11.1.tar.bz2
cfdb57dae221b71b2703f8e2980eaaf4 SOURCES/resourceproto-1.2.0.tar.bz2
edd8a73775e8ece1d69515dd17767bfb SOURCES/scrnsaverproto-1.2.2.tar.bz2
fe86de8ea3eb53b5a8f52956c5cd3174 SOURCES/videoproto-2.3.3.tar.bz2
5f4847c78e41b801982c8a5e06365b24 SOURCES/xcmiscproto-1.2.2.tar.bz2
70c90f313b4b0851758ef77b95019584 SOURCES/xextproto-7.3.0.tar.bz2
120e226ede5a4687b25dd357cc9b8efe SOURCES/xf86bigfontproto-1.2.0.tar.bz2
a036dc2fcbf052ec10621fd48b68dbb1 SOURCES/xf86dgaproto-2.1.tar.bz2
1d716d0dac3b664e5ee20c69d34bc10e SOURCES/xf86driproto-2.1.1.tar.bz2
e793ecefeaecfeabd1aed6a01095174e SOURCES/xf86vidmodeproto-2.3.1.tar.bz2
9959fe0bfb22a0e7260433b8d199590a SOURCES/xineramaproto-1.2.1.tar.bz2
16791f7ca8c51a20608af11702e51083 SOURCES/xproto-7.0.31.tar.bz2
685f8abbffa6d145c0f930f00703b21b SOURCES/libXau-1.0.8.tar.bz2
18aa5c1279b01f9d18e3299969665b2e SOURCES/libXdmcp-1.1.2.tar.bz2
14e60919f859560f28426a685a555962 SOURCES/xcb-proto-1.12.tar.bz2
28e552bd78bc1050b6b26ca1db0e5bb6 SOURCES/libxcb-1.12.tar.bz2
c5ba432dd1514d858053ffe9f4737dd8 SOURCES/xtrans-1.3.5.tar.bz2
0f618db70c4054ca67cee0cc156a4255 SOURCES/libX11-1.6.5.tar.bz2
52df7c4c1f0badd9f82ab124fb32eb97 SOURCES/libXext-1.3.3.tar.bz2
d79d9fe2aa55eb0f69b1a4351e1368f7 SOURCES/libFS-1.0.7.tar.bz2
addfb1e897ca8079531669c7c7711726 SOURCES/libICE-1.0.9.tar.bz2
499a7773c65aba513609fe651853c5f3 SOURCES/libSM-1.2.2.tar.bz2
7a773b16165e39e938650bcc9027c1d5 SOURCES/libXScrnSaver-1.2.2.tar.bz2
8f5b5576fbabba29a05f3ca2226f74d3 SOURCES/libXt-1.1.5.tar.bz2
41d92ab627dfa06568076043f3e089e4 SOURCES/libXmu-1.1.2.tar.bz2
20f4627672edb2bd06a749f11aa97302 SOURCES/libXpm-3.5.12.tar.bz2
e5e06eb14a608b58746bdd1c0bd7b8e3 SOURCES/libXaw-1.0.13.tar.bz2
07e01e046a0215574f36a3aacb148be0 SOURCES/libXfixes-5.0.3.tar.bz2
f7a218dcbf6f0848599c6c36fc65c51a SOURCES/libXcomposite-0.4.4.tar.bz2
802179a76bded0b658f4e9ec5e1830a4 SOURCES/libXrender-0.9.10.tar.bz2
1e7c17afbbce83e2215917047c57d1b3 SOURCES/libXcursor-1.1.14.tar.bz2
0cf292de2a9fa2e9a939aefde68fd34f SOURCES/libXdamage-1.1.4.tar.bz2
0920924c3a9ebc1265517bdd2f9fde50 SOURCES/libfontenc-1.1.3.tar.bz2
0d9f6dd9c23bf4bcbfb00504b566baf5 SOURCES/libXfont2-2.0.1.tar.bz2
331b3a2a3a1a78b5b44cfbd43f86fcfe SOURCES/libXft-2.3.2.tar.bz2
1f0f2719c020655a60aee334ddd26d67 SOURCES/libXi-1.7.9.tar.bz2
9336dc46ae3bf5f81c247f7131461efd SOURCES/libXinerama-1.1.3.tar.bz2
28e486f1d491b757173dd85ba34ee884 SOURCES/libXrandr-1.5.1.tar.bz2
45ef29206a6b58254c81bea28ec6c95f SOURCES/libXres-1.0.7.tar.bz2
ef8c2c1d16a00bd95b9fdcef63b8a2ca SOURCES/libXtst-1.2.3.tar.bz2
210b6ef30dda2256d54763136faa37b9 SOURCES/libXv-1.0.11.tar.bz2
4cbe1c1def7a5e1b0ed5fce8e512f4c6 SOURCES/libXvMC-1.0.10.tar.bz2
d7dd9b9df336b7dd4028b6b56542ff2c SOURCES/libXxf86dga-1.1.4.tar.bz2
298b8fff82df17304dfdb5fe4066fe3a SOURCES/libXxf86vm-1.1.4.tar.bz2
ba983eba5a9f05d152a0725b8e863151 SOURCES/libdmx-1.1.3.tar.bz2
d810ab17e24c1418dedf7207fb2841d4 SOURCES/libpciaccess-0.13.5.tar.bz2
4a4cfeaf24dab1b991903455d6d7d404 SOURCES/libxkbfile-1.0.9.tar.bz2
66662e76899112c0f99e22f2fc775a7e SOURCES/libxshmfence-1.2.tar.bz2
2413ac3eaf508ada019c63959ea81a92 SOURCES/freetype-2.8.tar.bz2
29105662c7d319720e0088a0ac53f494 SOURCES/fontconfig-2.12.4.tar.bz2
2e97feed81919465a04ccc71e4073313 SOURCES/xcb-util-0.4.0.tar.bz2
08fe8ffecc8d4e37c0ade7906b3f4c87 SOURCES/xcb-util-image-0.4.0.tar.bz2
1022293083eec9e62d5659261c29e367 SOURCES/xcb-util-keysyms-0.4.0.tar.bz2
468b119c94da910e1291f3ffab91019a SOURCES/xcb-util-renderutil-0.3.9.tar.bz2
87b19a1cd7bfcb65a24e36c300e03129 SOURCES/xcb-util-wm-0.4.1.tar.bz2
6ac3b17cba51aaaa36ba035a53527214 SOURCES/xcb-util-cursor-0.1.3.tar.bz2
54758bf842f9ea53c8b57cce4311b87e SOURCES/mesa-17.1.6.tar.xz
7444bbbd999b53bec6a60608a5301f4c SOURCES/xbitmaps-1.1.1.tar.bz2
25dab02f8e40d5b71ce29a07dc901b8c SOURCES/iceauth-1.0.7.tar.bz2
c4a3664e08e5a47c120ff9263ee2f20c SOURCES/luit-1.1.1.tar.bz2
18c429148c96c2079edda922a2b67632 SOURCES/mkfontdir-1.0.7.tar.bz2
9bdd6ebfa62b1bbd474906ac86a40fd8 SOURCES/mkfontscale-1.1.2.tar.bz2
e475167a892b589da23edf8edf8c942d SOURCES/sessreg-1.1.1.tar.bz2
2c47a1b8e268df73963c4eb2316b1a89 SOURCES/setxkbmap-1.3.1.tar.bz2
3a93d9f0859de5d8b65a68a125d48f6a SOURCES/smproxy-1.0.6.tar.bz2
f0b24e4d8beb622a419e8431e1c03cd7 SOURCES/x11perf-1.6.0.tar.bz2
f3f76cb10f69b571c43893ea6a634aa4 SOURCES/xauth-1.0.10.tar.bz2
0066f23f69ca3ef62dcaeb74a87fdc48 SOURCES/xbacklight-1.2.1.tar.bz2
9956d751ea3ae4538c3ebd07f70736a0 SOURCES/xcmsdb-1.0.5.tar.bz2
b58a87e6cd7145c70346adad551dba48 SOURCES/xcursorgen-1.0.6.tar.bz2
8809037bd48599af55dad81c508b6b39 SOURCES/xdpyinfo-1.3.2.tar.bz2
fceddaeb08e32e027d12a71490665866 SOURCES/xdriinfo-1.0.5.tar.bz2
249bdde90f01c0d861af52dc8fec379e SOURCES/xev-1.2.2.tar.bz2
90b4305157c2b966d5180e2ee61262be SOURCES/xgamma-1.0.6.tar.bz2
f5d490738b148cb7f2fe760f40f92516 SOURCES/xhost-1.0.7.tar.bz2
6a889412eff2e3c1c6bb19146f6fe84c SOURCES/xinput-1.6.2.tar.bz2
cc22b232bc78a303371983e1b48794ab SOURCES/xkbcomp-1.4.0.tar.bz2
c747faf1f78f5a5962419f8bdd066501 SOURCES/xkbevd-1.1.4.tar.bz2
502b14843f610af977dffc6cbf2102d5 SOURCES/xkbutils-1.0.4.tar.bz2
0ae6bc2a8d3af68e9c76b1a6ca5f7a78 SOURCES/xkill-1.0.4.tar.bz2
5dcb6e6c4b28c8d7aeb45257f5a72a7d SOURCES/xlsatoms-1.1.2.tar.bz2
9fbf6b174a5138a61738a42e707ad8f5 SOURCES/xlsclients-1.1.3.tar.bz2
2dd5ae46fa18abc9331bc26250a25005 SOURCES/xmessage-1.0.4.tar.bz2
723f02d3a5f98450554556205f0a9497 SOURCES/xmodmap-1.0.9.tar.bz2
6101f04731ffd40803df80eca274ec4b SOURCES/xpr-1.0.4.tar.bz2
fae3d2fda07684027a643ca783d595cc SOURCES/xprop-1.2.2.tar.bz2
ebffac98021b8f1dc71da0c1918e9b57 SOURCES/xrandr-1.5.0.tar.bz2
b54c7e3e53b4f332d41ed435433fbda0 SOURCES/xrdb-1.1.0.tar.bz2
a896382bc53ef3e149eaf9b13bc81d42 SOURCES/xrefresh-1.0.5.tar.bz2
dcd227388b57487d543cab2fd7a602d7 SOURCES/xset-1.2.3.tar.bz2
7211b31ec70631829ebae9460999aa0b SOURCES/xsetroot-1.1.1.tar.bz2
558360176b718dee3c39bc0648c0d10c SOURCES/xvinfo-1.1.3.tar.bz2
6b5d48464c5f366e91efd08b62b12d94 SOURCES/xwd-1.0.6.tar.bz2
b777bafb674555e48fd8437618270931 SOURCES/xwininfo-1.1.3.tar.bz2
3025b152b4f13fdffd0c46d0be587be6 SOURCES/xwud-1.0.4.tar.bz2
fdfb0ad9cfceed60e3bfe9f18765aa0d SOURCES/xcursor-themes-1.0.4.tar.bz2
23756dab809f9ec5011bb27fb2c3c7d6 SOURCES/font-util-1.3.1.tar.bz2
0f2d6546d514c5cc4ecf78a60657a5c1 SOURCES/encodings-1.0.4.tar.bz2
6d25f64796fef34b53b439c2e9efa562 SOURCES/font-alias-1.0.3.tar.bz2
fcf24554c348df3c689b91596d7f9971 SOURCES/font-adobe-utopia-type1-1.0.4.tar.bz2
e8ca58ea0d3726b94fe9f2c17344be60 SOURCES/font-bh-ttf-1.0.3.tar.bz2
53ed9a42388b7ebb689bdfc374f96a22 SOURCES/font-bh-type1-1.0.3.tar.bz2
bfb2593d2102585f45daa960f43cb3c4 SOURCES/font-ibm-type1-1.0.3.tar.bz2
6306c808f7d7e7d660dfb3859f9091d2 SOURCES/font-misc-ethiopic-1.0.3.tar.bz2
3eeb3fb44690b477d510bbd8f86cf5aa SOURCES/font-xfree86-type1-1.0.4.tar.bz2
af9498e8954907d0a47f0f7b3d21e1ef SOURCES/xkeyboard-config-2.21.tar.bz2
015d2fc4b9f2bfe7a626edb63a62c65e SOURCES/xorg-server-1.19.3.tar.bz2
4f1cfaee8d75ea3fbbfeb99a98730952 SOURCES/libevdev-1.5.7.tar.xz
94c2c8354c74ab1cfbbb0a222078b9c6 SOURCES/xf86-input-evdev-2.10.5.tar.bz2
8247f0bb67052ffb272c50c3cb9c5998 SOURCES/libinput-1.8.1.tar.xz
14003139614b25cc76c9a4cad059df89 SOURCES/xf86-input-libinput-0.25.1.tar.bz2
58e5b7722a402114093bf193962d1e3a SOURCES/xf86-input-synaptics-1.9.0.tar.bz2
bf3dfdae23879bdc0c8a7b955572ad90 SOURCES/xf86-video-ati-7.9.0.tar.bz2
3931c0e19d441cc576dc088f9eb9fd73 SOURCES/xf86-video-fbdev-0.4.4.tar.bz2
0d498a6ad65d21a8a15f990cb4ea5dff SOURCES/libva-1.8.3.tar.bz2
59a6f076cdacb5f6945dac809bcf4906 SOURCES/twm-1.0.9.tar.bz2
9a6db7974aa4ccbb50eabebf72618467 SOURCES/xterm-330.tgz
6f150d063b20d08030b98c45b9bee7af SOURCES/xclock-1.0.7.tar.bz2
4e928452dfaf73851413a2d8b8c76388 SOURCES/xinit-1.3.4.tar.bz2
EOF
msg_success
return
}
_copy_source() {
# Copy build system to $LFS
# Directories to copy
msg_line " Installing build system: "
cp -ar * ${PARENT}
chmod 777 ${PARENT}/*.sh
msg_success
return
}
#
# Main line
#
[ -z ${PARENT} ] && { echo "${PRGNAME}: PARENT: not set";exit 1; }
[ -z ${LOGFILE} ] && { echo "${PRGNAME}: LOGFILE: not set";exit 1; }
_copy_source # Copy build system to $LFS
_wget_list # Create wget list
_md5sum_list # Create md5sum list
end-run