source: trunk/gsdl3/install.bat@ 6370

Last change on this file since 6370 was 6370, checked in by mdewsnip, 20 years ago

Now deletes tomcat archive file once unpacked.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 KB
Line 
1@echo off
2
3:: ---- Check that %GSDL3HOME% is set ----
4if not "%GSDL3HOME%" == "" goto start
5 echo You need to run setup.bat before running this install file
6 goto exit
7
8:start
9:: ---- Make sure we have the current GSDL3 (also prunes empty directories) ----
10cvs update -dRP
11
12:: ---- Check out mgpp ----
13cd %GSDL3HOME%\packages
14cvs co mgpp
15
16:: ---- Unpack Tomcat and rename folder ----
17echo Unpacking Tomcat...
18cd %GSDL3HOME%\comms\jakarta
19"%GSDL3HOME%\winutil\gunzip.exe" tomcat-4.1.24.tar.gz
20"%GSDL3HOME%\winutil\tar.exe" xf tomcat-4.1.24.tar
21ren jakarta-tomcat-4.1.24 tomcat
22del tomcat-4.1.24.tar
23
24:: ---- Edit the Tomcat setclasspath script to add our classpath ----
25echo Fixing setclasspath.bat...
26cd %GSDL3HOME%\comms\jakarta\tomcat\bin
27ren setclasspath.bat setclasspath.bat.orig
28"%GSDL3HOME%\winutil\sed.exe" 's,set CLASSPATH=,set CLASSPATH=%%CLASSPATH%%;,' setclasspath.bat.orig > setclasspath.bat
29
30:: ---- Unpack the sample collections ----
31echo Unpacking sample collections...
32cd %GSDL3HOME%\web\sites\localsite\collect
33
34cd chinesedemo\index
35"%GSDL3HOME%\winutil\gunzip.exe" indexfiles.tgz
36"%GSDL3HOME%\winutil\tar.exe" xf indexfiles.tar
37del indexfiles.tar
38cd ..\..
39
40cd demo\index
41"%GSDL3HOME%\winutil\gunzip.exe" indexfiles.tgz
42"%GSDL3HOME%\winutil\tar.exe" xf indexfiles.tar
43del indexfiles.tar
44cd ..\..
45
46cd gberg\index
47"%GSDL3HOME%\winutil\gunzip.exe" indexfiles.tgz
48"%GSDL3HOME%\winutil\tar.exe" xf indexfiles.tar
49del indexfiles.tar
50cd ..\..
51
52cd mgppdemo\index
53"%GSDL3HOME%\winutil\gunzip.exe" indexfiles.tgz
54"%GSDL3HOME%\winutil\tar.exe" xf indexfiles.tar
55del indexfiles.tar
56cd ..\..
57
58:: ---- Enter the correct paths in various files ----
59if "%1" == "-for_distribution" goto done
60
61 :: ---- Set up the servlet information for Tomcat ----
62 echo Setting up servlet information for Tomcat...
63 cd %GSDL3HOME%\web\WEB-INF
64 echo %GSDL3HOME%| "%GSDL3HOME%\winutil\sed.exe" 's,\\,\\\\,g' | "%GSDL3HOME%\winutil\setvar.exe" GSDL3HOME_ESCAPED >setgsdl3e.bat
65 call setgsdl3e.bat
66 del setgsdl3e.bat
67 "%GSDL3HOME%\winutil\sed.exe" 's,@gsdl3home@,%GSDL3HOME_ESCAPED%,' web.xml.in > web.xml
68 set GSDL3HOME_ESCAPED=
69
70:done
71cd %GSDL3HOME%
72
73:exit
Note: See TracBrowser for help on using the repository browser.