Roy Brunjes wrote: Hi!
> I have never used CVS so I am useless there. I wait for a > tarball to download and then ./configure ; make against > that. Well in your case I'd also pack you a tarball together, but as you do not have to do the fancy stuff... > I of course can install CVS on my Ubuntu system (trivial) $ apt-get install cvs To get the cvs. As you mentioned that you built 3.6.24 I guess you have all other packages to build scid already. > but I have no idea how to use that to pull down the latest > SCID for compilation. If you have a command line you can > email to me that would be great. Ok, here we go: $ cvs -d:pserver:[EMAIL PROTECTED]:/cvsroot/scid login Just press enter when it asks for a password. (We do anonymous cvs here.) This needs to be done only once! $ cvs -d:pserver:[EMAIL PROTECTED]:/cvsroot/scid co -P scid This will "check out" (co) the whole source tree into a subdir "scid" of the current working directory. Suppose you are in $HOME/sourceforge you will get a $HOME/sourceforge/scid. $ cd scid $ export PATH=.:$PATH $ ./configure ; make will build it. It can be run via $ ./scid Note that you have to set PATH to include the current dir, otherwise scid will try to load the parts of the old version installed and will fail to run. Once new code comes into the cvs just go _into_ this same directory (cd) and issue $ cvs update $ export PATH=.:$PATH $ make ; ./scid to get the new version compiled and run it. Suppose you have a dir $HOME/sourceforge/scid you could easily script the above: ---------------------------------------------------------------------- #!/bin/bash export PATH=.:$PATH cd $HOME/sourceforge/scid cvs update make ./scid ---------------------------------------------------------------------- -- Kind regards, / War is Peace. | Freedom is Slavery. Alexander Wagner | Ignorance is Strength. | | Theory : G. Orwell, "1984" / In practice: USA, since 2001 ------------------------------------------------------------------------- Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! Studies have shown that voting for your favorite open source project, along with a healthy diet, reduces your potential for chronic lameness and boredom. Vote Now at http://www.sourceforge.net/community/cca08 _______________________________________________ Scid-users mailing list Scid-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/scid-users