I'm pretty involved in Blender Plug-in development and I Just switched from Fedora after trying v18. I could successfully compile Blender from svn and Mitsuba from mercurial, but both are missing features because of missing devel packages. Blender now needs OSL ( http://code.google.com/p/openshadinglanguage/ ) and Mitsuba needs Collada-dom-devel (http://sourceforge.net/projects/collada-dom/files/).
Problems and already tried solutions :
Compiling OSL and collada-dom was doable and installing successfull, but the make install script only install binaries, no header. Thus, the scons script of both Blender and Mitsuba can't find the header files.
Trying to install from Fedora18 repositories doesn't work, because of a different Boost version (1.50 for Fedora).
The Dependency install script from Blender (which download, compile and install all needed dependencies) only works for Fedora, Suse and Debian.
Can someone explain how to install header files so that they are "registered" and scons can find them ? If someone can teach me or give a good link on how to build devel packages fo Mageia, i'm ok to start packaging for Mageia as well

Thanks
Edit : Solution :
replace line 22 and 23 of build/config-linux-gcc.py with that after compiling collada-dom 2.3.1:
COLLADAINCLUDE = ['/usr/local/include/collada-dom', '/usr/local/include/collada-dom/1.4']
COLLADALIB = ['collada14dom', 'xml2']
then copy it as config.py in mitsuba src's root directory and run scons