Ignore:
Timestamp:
2005-06-30T09:48:37+12:00 (19 years ago)
Author:
kjdon
Message:

tried to separate out all cvs commands, so you can do all the cvs stuff outside of ant, and have ant do no cvs at all

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/README.txt

    r10137 r10195  
    57571. Install for the first time:
    5858cvs co gsdl3
     59cd gsdl3
    5960ant prepare install
    6061
     
    6263[online]
    6364cvs co gsdl3
     65cd gsdl3
    6466ant prepare
    6567[offline]
    6668ant install
    6769
    68 3. Updating your Greenstone installation from cvs:
     703. Install for the first time, cvs done outside of Ant (if you have problems running cvs commands from Ant):
     71cvs co [-P] gsdl3
     72cd gsdl3
     73cvs update -P (run this if you haven't done the checkout with the -P option)
     74cd packages
     75cvs co mgpp
     76cd ..
     77[if you want greenstone 2 building:
     78cvs co -P gli
     79cvs co -P gs2build
     80]
     81[if you are on windows
     82cvs co winbin
     83]
     84ant -Dnocvs.mode=yes prepare install (prepare needs to be online, install can be done offline)
     85
     864. Updating your Greenstone installation from cvs (and reconfigure/recompile):
     87cd gsdl3
    6988ant update
    7089
    71 4. Updating your Greenstone installation, offline:
     905. Updating your Greenstone installation, offline:
     91cd gsdl3
    7292[online]
    7393ant cvsupdate
    7494[offline]
    75 ant -Doffline.mode=yes update
     95ant -Dnocvs.mode=yes update
     96
     976. Updating your Greenstone installation, cvs outside of Ant:
     98cd gsdl3
     99cvs update -l
     100cvs update -dP bin comms docs lib resources src winutil packages
     101cd web (or the path-to-tomcat/webapps/gsdl3 if have installed greenstone as a webapp in Tomcat, see Using External Tomcat section)
     102cvs update -dP
     103cd gsdl3
     104[ if you have greenstone 2 building:
     105cvs update -dP gli
     106cvs checkout -P gs2build
     107Note that the gs2build one uses checkout not update.
     108]
     109ant -Dnocvs.mode=yes update
    76110
    77111The main targets for installation/update are:
     
    197231Once all these changes have been made, you will need to restart the Tomcat server for them to take effect.
    198232
    199 
    200 
    201 
     233Notes for Mac OS
     234------------------
     235
     236Set JAVA_HOME to be /Library/Java/Home
Note: See TracChangeset for help on using the changeset viewer.