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
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
|
#!/bin/sh
# global environment variables you may set:
# CACHE: absolute path to a global autoconf cache
# QUIET: hush the configure script noise
# CONFFLAGS: flags to pass to all configure scripts
failed() {
if test x"$NOQUIT" = x1; then
echo "***** $1 failed on $2/$3"
else
exit 1
fi
}
build() {
echo "Building $1 module component $2..."
cd $1/$2
if test "$1" = "xserver" && test "$2" = "xorg" && test -n "$MESAPATH"; then
MESA=-"-with-mesa-source=${MESAPATH}"
else
MESA=
fi
# Use "sh autogen.sh" since some scripts are not executable in CVS
sh autogen.sh --prefix=${PREFIX} ${MESA} ${QUIET:+--quiet} \
${CACHE:+--cache-file=}${CACHE} ${CONFFLAGS} || failed autogen $1 $2
make || failed make $1 $2
if test x"$CLEAN" = x1; then
make clean || failed clean $1 $2
fi
if test x"$DIST" = x1; then
make dist || failed dist $1 $2
fi
if test x"$DISTCHECK" = x1; then
make distcheck || failed distcheck $1 $2
fi
$SUDO env LD_LIBRARY_PATH=$LD_LIBRARY_PATH make install || \
failed install $1 $2
cd ../..
}
# protocol headers have no build order dependencies
build_proto() {
build proto AppleWM
build proto BigReqs
build proto Composite
build proto Damage
build proto DMX
build proto EvIE
build proto Fixes
build proto Fontcache
build proto Fonts
build proto GL
build proto Input
build proto KB
build proto PM
build proto Print
build proto Randr
build proto Record
build proto Render
build proto Resource
build proto ScrnSaver
build proto Trap
build proto Video
build proto WindowsWM
build proto X11
build proto XCMisc
build proto XExt
build proto XF86BigFont
build proto XF86DGA
build proto XF86DRI
build proto XF86Misc
build proto XF86Rush
build proto XF86VidMode
build proto Xinerama
}
# bitmaps is needed for building apps, so has to be done separately first
# cursors depends on apps/xcursorgen
# xkbdata depends on apps/xkbcomp
build_data() {
# build data bitmaps
build data cursors
build data xkbdata
}
# All protocol modules must be installed before the libs (okay, that's an
# overstatement, but all protocol modules should be installed anyway)
#
# the libraries have a dependency order:
# xtrans, Xau, Xdmcp before anything else
# fontenc before Xfont
# ICE before SM
# X11 before Xext
# (X11 and SM) before Xt
# Xt before Xmu and Xpm
# Xext before any other extension library
# Xfixes before Xcomposite
# Xp before XprintUtil before XprintAppUtil
build_lib() {
build lib xtrans
build lib Xau
build lib Xdmcp
build lib X11
build lib Xext
build lib AppleWM
build lib WindowsWM
build lib dmx
build lib fontenc
build lib FS
build lib ICE
build lib lbxutil
build lib oldX
build lib SM
build lib Xt
build lib Xmu
build lib Xpm
build lib Xp
build lib Xaw
build lib Xfixes
build lib Xcomposite
build lib Xrender
build lib Xdamage
build lib Xcursor
build lib Xevie
build lib Xfont
build lib Xfontcache
build lib Xft
build lib Xi
build lib Xinerama
build lib xkbfile
build lib xkbui
build lib XprintUtil
build lib XprintAppUtil
build lib Xrandr
build lib XRes
build lib XScrnSaver
build lib XTrap
build lib Xtst
build lib Xv
build lib XvMC
build lib Xxf86dga
build lib Xxf86misc
build lib Xxf86vm
}
# Most apps depend at least on libX11.
#
# bdftopcf depends on libXfont
# mkfontscale depends on libfontenc and libfreetype
# mkfontdir depends on mkfontscale
#
# TODO: detailed breakdown of which apps require which libs
build_app() {
build app appres
build app bdftopcf
build app beforelight
build app bitmap
build app editres
build app fonttosfnt
build app fslsfonts
build app fstobdf
build app iceauth
build app ico
build app lbxproxy
build app listres
build app luit
build app mkcfm
build app mkfontdir
build app mkfontscale
build app oclock
# build app pclcomp
build app proxymngr
build app rgb
build app rstart
build app scripts
build app sessreg
build app setxkbmap
build app showfont
build app smproxy
build app twm
build app viewres
build app x11perf
build app xauth
build app xbiff
build app xcalc
build app xclipboard
build app xclock
build app xcmsdb
build app xconsole
build app xcursorgen
build app xdbedizzy
build app xditview
build app xdm
build app xdpyinfo
build app xdriinfo
build app xedit
build app xev
build app xeyes
build app xf86dga
build app xfindproxy
build app xfd
build app xfontsel
build app xfs
build app xfsinfo
build app xfwp
build app xgamma
build app xgc
build app xhost
build app xinit
build app xkbcomp
build app xkbevd
build app xkbprint
build app xkbutils
build app xkill
build app xload
build app xlogo
build app xlsatoms
build app xlsclients
build app xlsfonts
build app xmag
build app xman
build app xmessage
build app xmh
build app xmodmap
build app xmore
build app xphelloworld
build app xplsprinters
build app xpr
build app xprehashprinterlist
build app xprop
build app xrandr
build app xrdb
build app xrefresh
build app xrx
build app xset
build app xsetmode
build app xsetpointer
build app xsetroot
build app xsm
build app xstdcmap
build app xtrap
build app xvidtune
build app xvinfo
build app xwd
build app xwininfo
build app xwud
}
# The server requires at least the following libraries:
# Xfont, Xau, Xdmcp
build_xserver() {
build xserver xorg
}
build_driver_input() {
HOST_OS=`uname -s`
# Some drivers are only buildable on some OS'es
case $HOST_OS in
Linux)
build driver xf86-input-aiptek
build driver xf86-input-evdev
build driver xf86-input-ur98
;;
*)
;;
esac
build driver xf86-input-acecad
build driver xf86-input-calcomp
build driver xf86-input-citron
build driver xf86-input-digitaledge
build driver xf86-input-dmc
build driver xf86-input-dynapro
build driver xf86-input-elo2300
build driver xf86-input-elographics
build driver xf86-input-fpit
build driver xf86-input-hyperpen
build driver xf86-input-jamstudio
build driver xf86-input-joystick
build driver xf86-input-keyboard
build driver xf86-input-magellan
build driver xf86-input-magictouch
build driver xf86-input-microtouch
build driver xf86-input-mouse
build driver xf86-input-mutouch
build driver xf86-input-palmax
build driver xf86-input-penmount
build driver xf86-input-spaceorb
build driver xf86-input-summa
build driver xf86-input-tek4957
build driver xf86-input-void
}
build_driver_video() {
HOST_OS=`uname -s`
# Some drivers are only buildable on some OS'es
case $HOST_OS in
*BSD* | *bsd*)
build driver xf86-video-wsfb
build driver xf86-video-sunffb
;;
*Linux*)
build driver xf86-video-sisusb
build driver xf86-video-sunffb
build driver xf86-video-v4l
;;
*)
;;
esac
build driver xf86-video-apm
build driver xf86-video-ark
build driver xf86-video-ati
build driver xf86-video-chips
build driver xf86-video-cirrus
build driver xf86-video-cyrix
build driver xf86-video-dummy
build driver xf86-video-fbdev
# build driver xf86-video-glide
build driver xf86-video-glint
build driver xf86-video-i128
build driver xf86-video-i740
build driver xf86-video-i810
build driver xf86-video-imstt
build driver xf86-video-mga
build driver xf86-video-neomagic
build driver xf86-video-newport
build driver xf86-video-nsc
build driver xf86-video-nv
build driver xf86-video-rendition
build driver xf86-video-s3
build driver xf86-video-s3virge
build driver xf86-video-savage
build driver xf86-video-siliconmotion
build driver xf86-video-sis
build driver xf86-video-sunbw2
build driver xf86-video-suncg14
build driver xf86-video-suncg3
build driver xf86-video-suncg6
build driver xf86-video-sunleo
build driver xf86-video-suntcx
build driver xf86-video-tdfx
build driver xf86-video-tga
build driver xf86-video-trident
build driver xf86-video-tseng
build driver xf86-video-vesa
build driver xf86-video-vga
build driver xf86-video-via
build driver xf86-video-vmware
build driver xf86-video-voodoo
}
# The server must be built before the drivers
build_driver() {
build_driver_input
build_driver_video
}
# All fonts require mkfontscale and mkfontdir to be available
#
# The following fonts require bdftopcf to be available:
# adobe-100dpi, adobe-75dpi, adobe-utopia-100dpi, adobe-utopia-75dpi,
# arabic-misc, bh-100dpi, bh-75dpi, bh-lucidatypewriter-100dpi,
# bh-lucidatypewriter-75dpi, bitstream-100dpi, bitstream-75dpi,
# cronyx-cyrillic, cursor-misc, daewoo-misc, dec-misc, isas-misc,
# jis-misc, micro-misc, misc-cyrillic, misc-misc, mutt-misc,
# schumacher-misc, screen-cyrillic, sony-misc, sun-misc and
# winitzki-cyrillic
#
# Within the font module, the util component must be built before the
# following fonts:
# adobe-100dpi, adobe-75dpi, adobe-utopia-100dpi, adobe-utopia-75dpi,
# bh-100dpi, bh-75dpi, bh-lucidatypewriter-100dpi, bh-lucidatypewriter-75dpi,
# misc-misc and schumacher-misc
#
# The alias component is recommended to be installed after the other fonts
# since the fonts.alias files reference specific fonts installed from the
# other font components
build_font() {
build font util
build font encodings
build font adobe-100dpi
build font adobe-75dpi
build font adobe-utopia-100dpi
build font adobe-utopia-75dpi
build font adobe-utopia-type1
build font arabic-misc
build font bh-100dpi
build font bh-75dpi
build font bh-lucidatypewriter-100dpi
build font bh-lucidatypewriter-75dpi
build font bh-ttf
build font bh-type1
build font bitstream-100dpi
build font bitstream-75dpi
build font bitstream-speedo
build font bitstream-type1
build font cronyx-cyrillic
build font cursor-misc
build font daewoo-misc
build font dec-misc
build font ibm-type1
build font isas-misc
build font jis-misc
build font micro-misc
build font misc-cyrillic
build font misc-ethiopic
build font misc-meltho
build font misc-misc
build font mutt-misc
build font schumacher-misc
build font screen-cyrillic
build font sony-misc
build font sun-misc
build font winitzki-cyrillic
build font xfree86-type1
build font alias
}
# makedepend requires xproto
build_util() {
build util cf
build util imake
build util makedepend
build util gccmakedep
build util lndir
}
# xorg-docs requires xorg-sgml-doctools
build_doc() {
build doc xorg-sgml-doctools
build doc xorg-docs
}
usage() {
echo "Usage: $0 [options] prefix"
echo " where options are:"
echo " -d : run make distcheck in addition to others"
echo " -D : run make dist in addition to others"
echo " -c : run make clean in addition to others"
echo " -m path-to-mesa-sources-for-xserver : full path to Mesa sources"
echo " -n : do not quit after error; just print error message"
echo " -s sudo-command : sudo command to use"
}
# Process command line args
while test $# != 0
do
case $1 in
-s)
shift
SUDO=$1
;;
-m)
shift
MESAPATH=$1
;;
-n)
NOQUIT=1
;;
-d)
DISTCHECK=1
;;
-D)
DIST=1
;;
-c)
CLEAN=1
;;
*)
PREFIX=$1
;;
esac
shift
done
if test x"${PREFIX}" = x ; then
usage
exit
fi
# Must create local aclocal dir or aclocal fails
ACLOCAL_LOCALDIR="${DESTDIR}${PREFIX}/share/aclocal"
$SUDO mkdir -p ${ACLOCAL_LOCALDIR}
# The following is required to make aclocal find our .m4 macros
if test x"$ACLOCAL" = x; then
ACLOCAL="aclocal -I ${ACLOCAL_LOCALDIR}"
else
ACLOCAL="${ACLOCAL} -I ${ACLOCAL_LOCALDIR}"
fi
export ACLOCAL
# The following is required to make pkg-config find our .pc metadata files
if test x"$PKG_CONFIG_PATH" = x; then
PKG_CONFIG_PATH=${DESTDIR}${PREFIX}/lib/pkgconfig
else
PKG_CONFIG_PATH=${DESTDIR}${PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}
fi
export PKG_CONFIG_PATH
# Set the library path so that locally built libs will be found by apps
if test x"$LD_LIBRARY_PATH" = x; then
LD_LIBRARY_PATH=${DESTDIR}${PREFIX}/lib
else
LD_LIBRARY_PATH=${DESTDIR}${PREFIX}/lib:${LD_LIBRARY_PATH}
fi
export LD_LIBRARY_PATH
# Set the path so that locally built apps will be found and used
if test x"$PATH" = x; then
PATH=${DESTDIR}${PREFIX}/bin
else
PATH=${DESTDIR}${PREFIX}/bin:${PATH}
fi
export PATH
# Set the default font path for xserver/xorg unless it's already set
if test x"$FONTPATH" = x; then
FONTPATH="${PREFIX}/lib/X11/fonts/misc/,${PREFIX}/lib/X11/fonts/Type1/,${PREFIX}/lib/X11/fonts/75dpi/,${PREFIX}/lib/X11/fonts/100dpi/,${PREFIX}/lib/X11/fonts/cyrillic/,${PREFIX}/lib/X11/fonts/TTF/"
export FONTPATH
fi
# Create the log file directory
$SUDO mkdir -p ${DESTDIR}${PREFIX}/var/log
date
# We must install the global macros before anything else
build util macros
build_doc
build_proto
build_lib
build data bitmaps
build_app
build_xserver
build_driver
build_data
build_font
build_util
date
|