QT noob question
I have QT4 up and running on my system and I thought I'd experiment with porting an app I found
Google "how to port qt apps" and the answer comes back "it's easy! Type qmake ..."
~> qmake
bash: qmake: command not found
~> pkgman install cmd:qmake
*** failed to find a match for "cmd:qmake": Name not found
So I take it there is an alternative to qmake that we are using?

Comments
Re: QT noob question
pkgman install cmd:qmake_x86Re: QT noob question
Almost. Since Qt itself is a gcc4 application you need to add _x86 suffix:
It is part of libqt4_x86_devel package.
Re: QT noob question
Got it! Thanks.