So I fired this up a few weeks ago, but decided I didn't have time to mess with it due to life-changing events and whatnot.
I recompiled it again today, and I'd like to comment on a few quirks I've discovered about running it on Ubuntu 12.04, using the default version of gcc, which is 4.6.3.
First, I had to edit the SConscript file to get the samples to compile. I kept getting errors about missing libraries. The curious thing is that all the necessary libraries are mentioned in the file already (of course) but I had to change the order. I edited the script so that X11, libz, and libcurl are at the end of the list of libraries to link, and then everything compiles happily.
I'm not nearly enough of a c++/linux guru to understand why that would be the case, especially since I presume that it works for you as-is.
The other quirk is that when the app windows first launch, all you see is a black screen. In the case of the BasicParticles app, you actually see the particles move across the window but then they get trapped in a thin sliver at the edge. Maximizing and then restoring the window to the original size fixes everything. You can then move the window and resize it as normal.
I'll dig into why that happens when I have time, but I figured I'd throw it out there to see if any of you who actually know what you're doing can diagnose the issue.