Solved Attempting to install QT5.3.2 using pkg, but can't call qmake-q5

This is what I've done:

pkg search qt5, this returned devel/qt5. Next I ran sudo pkg install qt5-5.3.2, it downloaded about 44MB with no errors and it installed everything successfully.

Now, I'm trying to run qmake-q5 with no success. I found this post that states that qmake does not work anymore, so I tried using qmake-q<x> unsuccessfully. It returns qmake-qt5: not found.

How do I call the proper qmake file version for QT5.3.2 in FreeBSD 10.0 ? Thanks.
 
Thanks, SirDice, I edited my initial entry. In a "desperate" attempt to fix this issue I tried several things, including compiling QT5 from source. I think the "src part" was added accidentally from that phase. Entry edited.
 
Thanks much, this did it:

Just in case someone stumbles upon this. If you are using FreeBSD 10 and installed qmake5; it's not in the default $PATH.
You can get the path for its binaries using: pkg info -l qt5-qmake | grep bin
For my setup it's: /usr/local/lib/qt5/bin/qmake

by draco003 (can't seem to be able to format a user)

[Mod: It's @<username>, it's the only 'tag' that doesn't use a tag ;) ]
 
Back
Top