Difference between revisions of "CVS"

From LinuxHam
Jump to navigationJump to search
(The CVS root has changed to /home/ax25-cvs)
Line 10: Line 10:


== Web CVS ==
== Web CVS ==
                                                                               
=== Browse th changes ===                                                                             
Via [http://www.linux-ax25.org/cvsweb cvsweb], you have direct access to the new [[AX.25]] sources, and a few other projects hosted in the same CVS archive.  The intuitive interface allows you to follow the development at the click of your mouse.
Via [http://www.linux-ax25.org/cvsweb cvsweb], you have direct access to the new [[AX.25]] sources, and a few other projects hosted in the same CVS archive.  The intuitive interface allows you to follow the development at the click of your mouse.


== CVS over Rsync ==
=== Download as tar archive ===
[http://www.linux-ax25.org/cvsweb/libax25/libax25.tar.gz?tarball=1 libax25]
[http://www.linux-ax25.org/cvsweb/ax25-apps/ax25-apps.tar.gz?tarball=1 ax25-apps]
[http://www.linux-ax25.org/cvsweb/ax25-tools/ax25-tools.tar.gz?tarball=1 ax25-tools]
 
== CVS copy via Rsync ==


The CVS repository can also be fetched using rsync:
The CVS repository can also be fetched using rsync:
Line 27: Line 33:


[[de:CVS]]
[[de:CVS]]
== Compilation notes ==
=== Predependencies ===
install autoconf automake1.9 libtool libncurses-dev
At least automake1.4 on debian etch is known to be broken concerning the hdlcutil tree.
=== Bootstrap (aclocal, autoconf and make) ===
<pre>
for dir in libax25 ax25-apps ax25-tools; do
  cd $dir && sh bootstrap && make && make install && cd ..
done
</pre>
On a new fresh installation, you should do "make installconf" in the ibax25 ax25-apps ax25-tools directories, too.
But be aware, that make installconf overwrites existing configuration files in /etc/ax25/.

Revision as of 14:42, 11 May 2008

Anonymous CVS

For those who always want to stay on the bleeding edge, and want to avoid having to download patch files or full tarballs, we also have an anonymous CVS server. There are currently three amateur radio relevant modules in CVS archive, libax25, ax25-apps and ax25-tools.

cvs -d :pserver:cvs@cvs.linux-ax25.org:/home/ax25-cvs login
(Only needed the first time you use anonymous CVS, the password is "cvs")
cvs -d :pserver:cvs@cvs.linux-ax25.org:/home/ax25-cvs co <module>

Web CVS

Browse th changes

Via cvsweb, you have direct access to the new AX.25 sources, and a few other projects hosted in the same CVS archive. The intuitive interface allows you to follow the development at the click of your mouse.

Download as tar archive

libax25 ax25-apps ax25-tools

CVS copy via Rsync

The CVS repository can also be fetched using rsync:

rsync -avz --progress --stats rsync://cvs.linux-ax25.org/cvs/linux /local/directory
rsync -avz --progress --stats rsync://cvs.linux-ax25.org/cvs/CVSROOT /local/directory

You can then check it out using:

cvs -d/local/directory co <module>

Compilation notes

Predependencies

install autoconf automake1.9 libtool libncurses-dev

At least automake1.4 on debian etch is known to be broken concerning the hdlcutil tree.

Bootstrap (aclocal, autoconf and make)

for dir in libax25 ax25-apps ax25-tools; do
  cd $dir && sh bootstrap && make && make install && cd ..
done

On a new fresh installation, you should do "make installconf" in the ibax25 ax25-apps ax25-tools directories, too. But be aware, that make installconf overwrites existing configuration files in /etc/ax25/.