|
X11amp now has a CVS server (thanks to gdev.net) from where you can
download the latest development version. It's rather easy to use CVS, first of all if your system lacks CVS, download
it from http://www.loria.fr/~molli/cvs-index.html.
Once you've made sure that CVS is on your system you have to set an enviroment variable:
for bash:
export CVSROOT=":pserver:anonymous@cvs.gdev.net:/cvs"
for csh:
setenv CVSROOT ":pserver:anonymous@cvs.gdev.net:/cvs"
When you have set the variable use cvs login to login to the CVS server.
(just hit enter when it asks for the password)
cd to the dir where you want the x11amp source to be downloaded to, then run
cvs -z3 checkout x11amp
Please use the -z3 option to minimize network bandwidth (-z9 eats too much CPU time - please don't use it).
Once the checkout is completed, cd x11amp/ and then ./autogen.sh to create the configure script. Once
autogen is completed run make and make install to compile and install x11amp.
If you want to update your source tree with the latest changes simply use cvs -z3 update -Pd x11amp
and do as described above.
There are daily rpms of the CVS at Freshmeat
|