when emerging gnash-0.7.2_p20099999 with the -kde useflags, it tries to compile with --enable-klash which fails because it doesn't find some kdelibs. Reproducible: Always Steps to Reproduce: emerge =gnash-0.7.2_p20099999 with -kde set and no kde//qt emerged Actual Results: KDE flags are: -I/usr/kde/3.5/include/kde -I/usr/kde/3.5/include/kde/kio KDE libs are: -L/usr/kde/3.5/lib -lkdeui -lkdecore -lkdeprint ERROR: No QT development package installed! Reconfigure with --disable-klash to continue and/or change to a different gui Expected Results: fine compile with the --disable-klash option fixed it by modifying the ebuild: transformed: if use kde; then myconf="${myconf} --enable-klash --with-qt-incl=${QTDIR}/include --with-qt-lib=${QTDIR}/$(get_libdir)" fi into: if use kde; then myconf="${myconf} --enable-klash --with-qt-incl=${QTDIR}/include --with-qt-lib=${QTDIR}/$(get_libdir)" else myconf="${myconf} --disable-klash" fi
Created attachment 112097 [details] patched ebuild
thanks, fixed