I've made a simple shell script to aid environment building on Ubuntu Linux, works with 8.04 (LTS) with latest updates.
#!/bin/sh
#
# Enviromental setup script for Go4-IT system by LouiSe@louise.hu
# http://www.go4-it.eu/
#
# Build installation:
# http://www.go4-it.eu/modules/mediawiki/index.php/Technical_Documentation:_Building_and_Installation
# Install packages to Ubuntu (8.04)
sudo apt-get install subversion mc
sudo apt-get install sun-java6-jre sun-java6-jdk ant
sudo apt-get install make flex bison libtool automake autoconf
sudo apt-get install g++ libboost-dev
# Checkout from SVN repository
svn co --username anonymous http://www.go4-it.eu/svnrepos/Go4IT
# Create missing symlinks for builds
ln -s package2/picottcn/compiler package2/compiler/src/picottcn
ln -s package2/picottcn/rts package2/TE/src
# Start build
cd Go4IT/package2/build
./autogen.sh
./configure
make
sudo make install