kdevelop-3.0.0 installing into existing debian version of KDE ./configure --prefix=/usr/local/encap/kdevelop-3.0.0 --enable-debug=full --enable-autoproject --enable-scriptproject --enable-trollproject --enable-customproject --enable-cvs --with-arts make make install after this it was complainig about not being in KDEDIRS so i did this 1. export KDEDIRS=/usr/local/encap/kdevelop-3.0.0 2. kbuildsycoca 3. epkg kdevelop-3.0.0 4. restart kde kdevelop-3.0.0 installing into kde 3.2 export CC=gcc-3.3 export CXX=g++-3.3 export KDEDIR=/usr/local/kde ./configure --prefix=/usr/local/kde make install #disabling cursor flash brutal patch src/main.cpp in the funcion main just before it returns app.exec(); do this //jakub app.setCursorFlashTime(9999999); return app.exec(); and run make install