Download Ekiga sources
From Ekiga
Steps: Download sources → Compile → Execute and Debug
Ekiga depends on two libraries, ptlib and opal, and these three programs are developed together. So you need to download and compile all the three. Note that you cannot mix them (stable branch ekiga with unstable branch ptlib for ex.)
If you do not know what to download, we recommend you to download the Last release, stable below.
Download
Last releases (tarballs):
- stable: PTLIB 2.6.7, OPAL 3.6.8, Ekiga 3.2.7
- unstable: PTLIB 2.10.2, OPAL 3.10.2, Ekiga 3.3.2
Active branches (using git/SVN):
- master/trunk (unstable branch): This branch contains the latest development code. It will make up a future release 3.4.0. Note that only ekiga uses master, while ptlib and opal use stable branch.
svn export https://opalvoip.svn.sourceforge.net/svnroot/opalvoip/ptlib/branches/v2_10 ptlibsvn export https://opalvoip.svn.sourceforge.net/svnroot/opalvoip/opal/branches/v3_10 opalgit clone git://git.gnome.org/ekiga
- gnome-2-26 (stable branch): This branch contains the latest stable code corresponding to the Ekiga 3.2.x releases.
svn export https://opalvoip.svn.sourceforge.net/svnroot/opalvoip/ptlib/branches/v2_6 ptlibsvn export https://opalvoip.svn.sourceforge.net/svnroot/opalvoip/opal/branches/v3_6 opalgit clone git://git.gnome.org/ekiga; cd ekiga; git checkout -b gnome-2-26 origin/gnome-2-26
- ds-gtk3 (GTK3 port branch): This branch, intented to ekiga developers, contains fixes for GTK 3; once ready, it will be integrated to the other branches. You are welcome to help!
svn export https://opalvoip.svn.sourceforge.net/svnroot/opalvoip/ptlib/trunk ptlibsvn export https://opalvoip.svn.sourceforge.net/svnroot/opalvoip/opal/trunk opalgit clone git://git.gnome.org/ekiga; cd ekiga; git checkout -b ds-gtk3 origin/ds-gtk3
Useful Links
- Web Interface:
- git tutorial: http://live.gnome.org/Git/Developers
- SVN Tutorial: http://developer.gnome.org/tools/svn.html