ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/tradinstall.csh
Revision: 2.3
Committed: Tue Nov 7 09:58:43 1995 UTC (28 years, 4 months ago) by greg
Content type: application/x-csh
Branch: MAIN
Changes since 2.2: +5 -3 lines
Log Message:
added creation of tcl subdirectory

File Contents

# Content
1 #!/bin/csh -fe
2 # SCCSid "$SunId$ LBL"
3 # Install correct version of trad for wish or wish4.0
4 #
5 set instdir = $1
6 set libdir = $2
7
8 set TLIBFILES = ( *[a-z].tcl *.hlp trad.icon tclIndex )
9
10 set TDIFFS = (`ls | sed -n 's/3\.6\.tcl$//p'`)
11
12 foreach d ($path)
13 if (-x $d/wish4.0) then
14 set wishcom = $d/wish4.0
15 break
16 endif
17 end
18 if (! $?wishcom) then
19 foreach d ($path)
20 if (-x $d/wish) then
21 set wishcom = "$d/wish -f"
22 break
23 endif
24 end
25 if (! $?wishcom) then
26 echo "Cannot find wish executable in current path -- trad not installed."
27 exit 1
28 endif
29 set oldwish
30 endif
31
32 echo "Installing trad using $wishcom"
33
34 sed -e "1s|/usr/local/bin/wish4\.0|$wishcom|" \
35 -e "s|^set radlib .*|set radlib $libdir|" trad.wsh > $instdir/trad
36 chmod 755 $instdir/trad
37 if (! -d $libdir) then
38 mkdir $libdir
39 endif
40 (cd $libdir ; rm -f $TLIBFILES)
41 cp $TLIBFILES $libdir
42 if ($?oldwish) then
43 foreach i ($TDIFFS)
44 rm -f $libdir/$i.tcl
45 cp ${i}3.6.tcl $libdir/$i.tcl
46 end
47 endif