Now all documentation is built using a separate port using
the --single-exec option of qdoc. This gaves significant speedup
as well as fixing quiet a few interlinking problems.
All -qch, -html and -docindex subpackages of Qt modules ports are
removed. The qt5-html and qt5-qch are now provided by x11/qt5/docs
instead of meta/qt5, thus REVISION set from the start.
This commit should fix problems with building Qt5 documentation
that people started seeing after switching to Clang. We also could
zap some interdependencies between Qt5 modules as well, but that's
a different story.
Now all the documentation is built at once: much faster and allowing
interlinks between Qt modules to work better. This should also fix some
packaging issues people are seeing after switching to Clang (the reason
is still unknown, unfortunately).
To be linked to builds a bit later.
Tested with both GCC and CLang (less through).
This forces updating x11/py-qt5, which forces update of devel/py-sip,
which forces update of x11/py-qt4, but, thankfully, no breakage detected.
keyboard frontend for Qt 5 on Linux Desktop/X11, Windows Desktop, and Boot2Qt
targets.
The input framework makes it easy to write custom input methods or to integrate
3rd party input engines. The input methods can be implemented in C++ or QML.
This is a part of upcoming Qt 5.9.
text-to-speech, which is useful for end-users who are visually challenged or
cannot access the application for whatever reason. The most common use case
where text-to-speech comes in handy is when the end-user is driving and cannot
attend the incoming messages on the phone. In such a scenario, the messaging
application can read out the incoming message.
This is a part of upcoming Qt 5.9.
files. This includes both dynamically creating state machines (loading the SCXML
file and instantiating states and transitions) and generating a C++ file that
has a class implementing the state machine. It also contains functionality to
support data models and executable content.
This is a part of upcoming Qt 5.9.
developed for Qt. The idea is to extend existing Qt's functionalities to enable
an easy exchange of information between processes or computers.
One of the key features of Qt to enable this is the distinction between an
objects API (defined by its Q_Property, Signals and Slots) and the
implementation of that API. The purpose of QtRO is to meet the expected API,
even if the true QObject is in a different process. A Slot called on a copy of
an object (called a Replica) is forwarded to the true object (called a Source)
for handling. Updates to the Source, either property changes or emitted Signals,
are forwarded to every Replica.
This is a part of upcoming Qt 5.9.
in-app purchases. It is a cross-platform library that currently supports
purchases made to the Mac App Store on OS X, App Store on iOS, and Google Play
on Android.
This is a part of upcoming Qt 5.9.
to obtain limited access to online accounts and HTTP services without exposing
users' passwords.
Currently, the supported authorization protocol is OAuth 1 & 2.
This is a part of upcoming Qt 5.9.
on multiple platforms.
This module provides classes that can:
- read input events from game controllers (Button and Axis events),
both from C++ and Qt Quick (QML);
- provide a queryable input state (by processing events);
- provide key bindings.
This is a part of upcoming Qt 5.9.
scatter, and surface graphs. It is especially useful for visualizing depth maps
and large quantities of rapidly changing data, such as data received from
multiple sensors. The look and feel of graphs can be customized by using themes
or by adding custom items and labels to them.
This is a part of upcoming Qt 5.9.
have been missed previously listed because Qt likes to dlopen() things
so check-lib-depends can't find it, which would stop qt5base getting
updated correctly by pkg_add -u when ssl/crypto libs are updated.
Nowadays we have fake SSL_CTRL_SET_CURVES macro, and SSL_CTX_set1_curves
defined as synonym to SSL_CTX_set1_groups. So use the latter instead
of the former.
The patch should be tweaked furthermore before proposing it upstream,
but for now we can at least build things again.
to prevent unloading Qt plugins in various destructors. Fixes a segfault seen
closing otter-browser using WM kill; otter bug report pointing at the Qt bug
was tracked down by awolk@. OK zhuk@