kdepim-3.0 doesn't seem to build kpilot, as the pilot-link includes are placed in /usr/include/libpisock . I've corrected this so that it builds properly, and attached the updated ebuild. If there are any problems in my setup, let me know - I'm still learning. ;-) . /usr/portage/eclass/inherit.eclass || die inherit kde-dist DESCRIPTION="${DESCRIPTION}PIM" DEPEND="$DEPEND sys-devel/perl" newdepend "pda ? ( >=dev-libs/pilot-link-0.9.0 )" src_compile() { kde_src_compile myconf use pda && myconf="$myconf --with-extra-includes=/usr/include/libpisock/" echo $myconf kde_src_compile configure make } src_install() { kde_src_install docinto html dodoc *.html }
Created attachment 724 [details] fixes kpilot's build I mucked it all up by inlining it, so I'm attempting to fix it by attaching.
Committing as r1. Only difference to your version is that I moved the myconf modifier line outside src_compile; that way we don't need to crete an src_compile at all. Thanks for reporting!