From: Stefano Crocco Date: 2009-05-06T02:30:05+09:00 Subject: Re: (mandriva 2009) problem with installation kdevelop/ruby/Qt On Tuesday 05 May 2009, Olivier Lolveley wrote: > |hello, > | > |I would like to use kdevelop with Qt and ruby with a mandriva 2009. > | > |so I downloaded kdevelop from the mandriva packages, it runs fine. > | > |then, I installed Qt, and ruby.ok. > | > |then, I had to install the binding Qt-kdevelop, referring at these > |pages: > |- [www.bawet.org] (in french) > |- [techbase.kde.org] > |- [rubyforge.org] finally. > | > |in the last page, I have only to install the 2 last packages I think. > | > |so I installed qt4-qtruby, I installed smoke (./configure,make, make > |install) (ok) then I have this error, while trying to install > |qt4-qtruby: You don't need to install smoke by itself, if you need to install qtruby for Qt4, it is included in the qt4 source tarball. Also, if you installed smoke using ./configure, make, make install, you installed the qt3 version of smoke, while the version of qtruby you want to install is for qt4. So: what version of Qt do you wish to use? If you want to use qt4, you'll simply need the qt4-qtruby-2.0.3.tgz file from http://rubyforge.org/frs/?group_id=181&release_id=32620 then do the following: tar -xf qt4-qtruby-2.0.3.tgz mkdir build cd build cmake -DCMAKE_INSTALL_PREFIX=/opt/kde4 ../qt4-qtruby-2.0.3 make sudo make install This should work. As I said, you don't need to install smoke separately. Since you seem to have done that, I suggest that you uninstall it, before doing the above. I hope this helps Stefano