Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

I already do following things:

# layman -a qt
# cat /etc/portage/package.accept_keywords
=x11-libs/qt-core-5.9999 **
=x11-libs/qt-network-5.9999 **
=x11-libs/qt-dbus-5.9999 **
=x11-libs/qt-declarative-5.9999 **
=x11-libs/qt-demo-5.9999 **
=x11-libs/qt-gui-5.9999 **
=x11-libs/qt-multimedia-5.9999 **
=x11-libs/qt-opengl-5.9999 **
=x11-libs/qt-phonon-5.9999 **
=x11-libs/qt-qt3support-5.9999 **
=x11-libs/qt-script-5.9999 **
=x11-libs/qt-sql-5.9999 **
=x11-libs/qt-svg-5.9999 **
=x11-libs/qt-test-5.9999 **
=x11-libs/qt-webkit-5.9999 **
=x11-libs/qt-xmlpatterns-5.9999 **
=x11-libs/qt-widgets-5.9999 **
=x11-libs/qt-jsbackend-5.9999 **
=x11-libs/qt-xml-5.9999 **

And what next?

share|improve this question

2 Answers

up vote 1 down vote accepted

As with any other package, you need to "emerge" the ones you want.

This seems rather easy to me, so maybe you're not quite asking what you actually mean?

share|improve this answer
What package I need to emerge? There is no qt-meta for 5.9999 version. Emerge Qt module by module is an ugly way I think. – proofit404 Nov 19 '12 at 6:33
You emerge the modules you want. That's how it works. – Nikos C. Nov 19 '12 at 6:38
Thanks, I understand now. – proofit404 Nov 19 '12 at 6:53

You are looking for the package qt-core which is the main Qt5 package available in the repository/overlay.

emerge -av x11-libs/qt-core-5.9999

In addition you can select further modules. Qt5 is pretty well structured as you are now able to only install the modules which you need instead of pulling the whole bloated Qt-package.

Common used packages are for example qt-gui or qt-widgets but that depends on your requirements.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.