How I built oreka from source using a clean fresh computer with Xubuntu 7.04, Feisty Fawn. Oreka is a tool for recording audio streams (VOIP and more). See Oreka homepage for more information.

       sudo apt-get install subversion
       sudo apt-get install sox
       sudo apt-get install g++
       sudo apt-get install libtool
       sudo apt-get install libxml2-dev
       sudo apt-get install liblog4cxx9-dev
       sudo apt-get install libace-dev
       sudo apt-get install libboost-dev
       sudo apt-get install libpcap0.7-dev
       sudo apt-get install libxerces27-dev
       sudo apt-get install libsndfile1-dev
       sudo apt-get install automake
       svn co https://oreka.svn.sourceforge.net/svnroot/oreka/trunk oreka
       cd oreka/
       cd orkbasecxx/
       automake -a
       libtoolize --force
       make -f Makefile.cvs 
       ./configure
       cat /usr/share/aclocal/libtool.m4 >>aclocal.m4
       automake -a
       make -f Makefile.cvs 
       ./configure
       make
       sudo make install
       cd ../orkaudio/
       libtoolize --force
       cat /usr/share/aclocal/libtool.m4 >>aclocal.m4
       automake -a
       make -f Makefile.cvs 
       libtoolize --force
       automake -a
       make -f Makefile.cvs 
       ./configure
       make
       sudo make install
       sudo orkaudio debug
Update (december 2007)
I have now confirmed that this also works with Ubuntu 7.10 (server). Some of the steps above are probably not needed but I have not cleaned it up yet. This were also described for Ubuntu 6.06 LTS in a mail by mahdi yari.
With Ubuntu 7.10 I had to add an "sudo apt-get install make" before using make. Also since the first writing there has been a couple of servers added, ie CommandLineServer and HttpServer. These can be turned off by adding this to config.xml:
<CommandLineServerPort>22</CommandLineServerPort>
<HttpServerPort>22</HttpServerPort>
The key is to use a port number that is already used by something else, like the ssh-server.

The raw bash history is also available here

This were written in june 2007.

©Jonas Svensson

webmaster@mozoft.com