Home | Docs | Forums | Lists | Bugs | Planet | Store | GMN | Get Gentoo!
Not eligible to see or edit group visibility for this bug.
View Bug Activity | Format For Printing | XML | Clone This Bug
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 an attachment (id=112097) [edit] patched ebuild
thanks, fixed