|
|
|
%global qt_module qtvirtualkeyboard
|
|
|
|
|
|
|
|
# To build without qttools doctools package, just undefine docs
|
|
|
|
%ifarch %{arm} %{ix86} x86_64
|
|
|
|
%global docs 1
|
|
|
|
%endif
|
|
|
|
|
|
|
|
Summary: Qt5 - VirtualKeyboard component
|
|
|
|
Name: qt5-%{qt_module}
|
|
|
|
Version: 5.8.0
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
|
|
|
# See LGPL_EXCEPTIONS.txt, LICENSE.GPL3, respectively, for exception details
|
|
|
|
License: LGPLv2 with exceptions or GPLv3 with exceptions
|
|
|
|
Url: http://www.qt.io
|
|
|
|
Source0: http://download.qt.io/official_releases/qt/5.8/%{version}/submodules/%{qt_module}-opensource-src-%{version}.tar.xz
|
|
|
|
|
|
|
|
BuildRequires: qt5-qtbase-devel >= %{version}
|
|
|
|
BuildRequires: qt5-qtdeclarative-devel >= %{version}
|
|
|
|
BuildRequires: qt5-qtsvg-devel >= %{version}
|
|
|
|
|
|
|
|
%description
|
|
|
|
The Qt Virtual Keyboard project provides an input framework and reference 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.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: qt5-qtbase-devel%{?_isa}
|
|
|
|
%description devel
|
|
|
|
%{summary}.
|
|
|
|
|
|
|
|
%if 0%{?docs}
|
|
|
|
%package doc
|
|
|
|
Summary: API documentation for %{name}
|
|
|
|
License: GFDL
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
BuildRequires: qt5-doctools
|
|
|
|
BuildRequires: qt5-qtbase-doc
|
|
|
|
BuildRequires: qt5-qtdeclarative-doc
|
|
|
|
BuildRequires: qt5-qtsvg-doc
|
|
|
|
Requires: qt5-qtbase-doc
|
|
|
|
Requires: qt5-qtdeclarative-doc
|
|
|
|
Requires: qt5-qtsvg-doc
|
|
|
|
BuildArch: noarch
|
|
|
|
%description doc
|
|
|
|
%{summary}.
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%package examples
|
|
|
|
Summary: Programming examples for %{name}
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
%description examples
|
|
|
|
%{summary}.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{qt_module}-opensource-src-%{version}
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
mkdir %{_target_platform}
|
|
|
|
pushd %{_target_platform}
|
|
|
|
%{qmake_qt5} .. \
|
|
|
|
%{?_qt5_examplesdir:CONFIG+=qt_example_installs}
|
|
|
|
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%if 0%{?docs}
|
|
|
|
# HACK to avoid multilib conflicts in noarch content
|
|
|
|
# see also https://bugreports.qt-project.org/browse/QTBUG-42071
|
|
|
|
QT_HASH_SEED=0; export QT_HASH_SEED
|
|
|
|
make %{?_smp_mflags} docs
|
|
|
|
%endif
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
make install INSTALL_ROOT=%{buildroot} -C %{_target_platform}
|
|
|
|
|
|
|
|
%if 0%{?docs}
|
|
|
|
make install_docs INSTALL_ROOT=%{buildroot} -C %{_target_platform}
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files
|
|
|
|
%license LICENSE.GPL3
|
|
|
|
%{_qt5_plugindir}/platforminputcontexts/libqtvirtualkeyboardplugin.so
|
|
|
|
%{_qt5_qmldir}/QtQuick/VirtualKeyboard
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{_qt5_libdir}/cmake/Qt5Gui/Qt5Gui_QVirtualKeyboardPlugin.cmake
|
|
|
|
|
|
|
|
%if 0%{?docs}
|
|
|
|
%files doc
|
|
|
|
%{_qt5_docdir}/qtvirtualkeyboard.qch
|
|
|
|
%{_qt5_docdir}/qtvirtualkeyboard/
|
|
|
|
|
|
|
|
%files examples
|
|
|
|
%{_qt5_examplesdir}/
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
* Mon Jan 30 2017 Helio Chissini de Castro <helio@kde.org> - 5.8.0-1
|
|
|
|
- New upstream version
|
|
|
|
|
|
|
|
* Sat Dec 17 2016 Rex Dieter <rdieter@fedoraproject.org> - 5.7.1-2
|
|
|
|
- updated sources, drop pkgconfig-style deps (for now)
|
|
|
|
|
|
|
|
* Wed Nov 09 2016 Helio Chissini de Castro <helio@kde.org> - 5.7.1-1
|
|
|
|
- New upstream version
|
|
|
|
|
|
|
|
* Tue Jul 05 2016 Helio Chissini de Castro <helio@kde.org> - 5.7.0-1
|
|
|
|
- New Qt 5.7.0 package
|