Even if root sucks, I got to install it on several machine (laptop, office desktop, home deskop...). So here it is the recipe for a Kubuntu box.
- install X11 pixmap library and its development headers:
- download source tarball, e.g root_v5.17.02.source.tar.gz from http://root.cern.ch/root/Version517.html
- actual install it:
sudo apt-get install libxpm4 libxpm-dev
sudo mkdir /root++
mv root_v5.17.02.source.tar.gz /root++
cd /root++
tar -xzvf root_v5.17.02.source.tar.gz
export ROOTSYS=/root++/root
cd root
./configure
make
where /root++
is the directory where you want to install root into.Hope this can help someone else.