1 | #!/bin/ksh |
---|
2 | |
---|
3 | USAGE="usage: SniAp_IndigoR5 [sourceDirectory]" |
---|
4 | |
---|
5 | ############################################################################ |
---|
6 | # This is the root of where the libraries and includes will be installed. |
---|
7 | # During pre-release development, you probably want this to be something |
---|
8 | # else, like your home directory or the project's home directory |
---|
9 | ############################################################################ |
---|
10 | |
---|
11 | DEST=/GlobalTools/WCL |
---|
12 | WCL_VER=2.7 |
---|
13 | |
---|
14 | ############################################################################ |
---|
15 | |
---|
16 | if (( $# == 1 )) |
---|
17 | then |
---|
18 | ############################################################################ |
---|
19 | # Optionally do build in specified directory |
---|
20 | ############################################################################ |
---|
21 | cd $1 |
---|
22 | fi |
---|
23 | |
---|
24 | set -x |
---|
25 | |
---|
26 | ############################################################################ |
---|
27 | # Make sure the distribution is unpacked |
---|
28 | ############################################################################ |
---|
29 | |
---|
30 | if [[ ! -f README ]] |
---|
31 | then |
---|
32 | zcat Wclx*Z | tar xf - |
---|
33 | fi |
---|
34 | |
---|
35 | ############################################################################ |
---|
36 | # Use Indigo templates and imake |
---|
37 | ############################################################################ |
---|
38 | |
---|
39 | rm -f Wc.tmpl |
---|
40 | ln -s Wc.tmpl.r5s Wc.tmpl |
---|
41 | |
---|
42 | cd Wc ; ln -s ../Library.tmpl . ; cd .. |
---|
43 | cd Xp ; ln -s ../Library.tmpl . ; cd .. |
---|
44 | cd Xmp ; ln -s ../Library.tmpl . ; cd .. |
---|
45 | cd Xmx ; ln -s ../Library.tmpl . ; cd .. |
---|
46 | |
---|
47 | xmkmf |
---|
48 | |
---|
49 | rm -rf ./X11 |
---|
50 | ./makeSun World |
---|
51 | |
---|
52 | ############################################################################ |
---|
53 | # Copy includes and libraries and Mri to new directories in DEST. |
---|
54 | ############################################################################ |
---|
55 | |
---|
56 | rm -rf $DEST/inc.new $DEST/lib.new $DEST/bin.new |
---|
57 | |
---|
58 | if [[ ! -d $DEST ]] |
---|
59 | then |
---|
60 | mkdir $DEST |
---|
61 | fi |
---|
62 | |
---|
63 | mkdir $DEST/inc.new |
---|
64 | mkdir $DEST/lib.new |
---|
65 | mkdir $DEST/bin.new |
---|
66 | |
---|
67 | cp -r X11 $DEST/inc.new |
---|
68 | |
---|
69 | cp Wc/libWc* $DEST/lib.new |
---|
70 | cp Xmp/libXmp* $DEST/lib.new |
---|
71 | cp Xmx/libXmx* $DEST/lib.new |
---|
72 | |
---|
73 | cp Mri/Mri $DEST/bin.new |
---|
74 | cp Xri/Xri $DEST/bin.new |
---|
75 | |
---|
76 | ############################################################################ |
---|
77 | # Swap existing with new |
---|
78 | ############################################################################ |
---|
79 | |
---|
80 | if [[ -d $DEST/inc ]] |
---|
81 | then |
---|
82 | rm -rf $DEST/inc.old |
---|
83 | mv $DEST/inc $DEST/inc.old |
---|
84 | fi |
---|
85 | |
---|
86 | mv $DEST/inc.new $DEST/inc |
---|
87 | |
---|
88 | if [[ -d $DEST/lib ]] |
---|
89 | then |
---|
90 | rm -rf $DEST/lib.old |
---|
91 | mv $DEST/lib $DEST/lib.old |
---|
92 | fi |
---|
93 | |
---|
94 | mv $DEST/lib.new $DEST/lib |
---|
95 | |
---|
96 | if [[ -d $DEST/bin ]] |
---|
97 | then |
---|
98 | rm -rf $DEST/bin.old |
---|
99 | mv $DEST/bin $DEST/bin.old |
---|
100 | fi |
---|
101 | |
---|
102 | mv $DEST/bin.new $DEST/bin |
---|
103 | |
---|
104 | ############################################################################ |
---|
105 | # All done! |
---|
106 | ############################################################################ |
---|
107 | ls -l $DEST $DEST/lib $DEST/bin \ |
---|
108 | $DEST/inc $DEST/inc/X11 $DEST/inc/X11/Wc \ |
---|
109 | $DEST/inc/X11/Xmp $DEST/inc/X11/Xmx |
---|
110 | |
---|
111 | # must get rid of old installation |
---|
112 | rm -rf /usr/include/X11/Wc |
---|
113 | rm -rf /usr/include/X11/Xmp |
---|
114 | rm -rf /usr/include/X11/Xp |
---|
115 | rm -rf /usr/include/X11/Xmx |
---|
116 | rm -rf /usr/lib/X11/app-defaults/Mri |
---|
117 | rm -rf /usr/lib/X11/app-defaults/Ari |
---|
118 | rm -rf /usr/lib/X11/app-defaults/Xri |
---|
119 | |
---|
120 | ./makeSun install |
---|
121 | |
---|
122 | if [[ ! -d /usr/man/mann ]] |
---|
123 | then |
---|
124 | mkdir /usr/man/mann |
---|
125 | chmod ugo+rx /usr/man/mann |
---|
126 | fi |
---|
127 | |
---|
128 | ./makeSun install.man |
---|