And on Gentoo, it's the local overlay way for me to go. Studying to be able to accomplish that.
I'm also a Gentoo user; not even a C programmer, let alone a developer. I'd be interested in your ebuild. For the devel version, I build it locally in my home directory. You need to include "$HOME/.local/bin" in your PATH. You also have to have x11-libs/fltk on your system. For fltk, the "xft" USE flag is strongly recommended. I wonder if the "opengl" and "threads" USE flags would help fltk+dillo. I have a script file ~/dillo/dbuild #!/bin/bash #hg clone http://hg.dillo.org/dillo dillo3 cd ${HOME}/dillo/dillo3 CFLAGS="-O2 -march=native -fomit-frame-pointer -pipe -fno-unwind-tables-fno-asynchronous-unwind-tables" CXXFLAGS=${CFLAGS} make clean hg pull hg update ./autogen.sh ./configure \ --prefix=${HOME}/.local \ --enable-ssl \ --disable-ipv6 \ --enable-cookies \ --enable-png \ --enable-jpeg \ --enable-gif \ --enable-threaded-dns \ --enable-dependency-tracking \ 2> ../build_err.txt make make install-strip The first time only, I uncoment the "hg clone" command. -- Walter Dnes <waltdnes at waltdnes.org>