1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
# The MIT License (MIT)
#
# Copyright (c) 2013 Tomasz Olszak <olszak.tomasz@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
# This file is based on qtwayland.spec from Mer project
# http://merproject.org
%bcond_with wayland
Name: qt5-qtwayland
Summary: Qt Wayland compositor
Version: 5.2.0
Release: 0
Group: Base/Libraries
License: LGPL-2.1+ or GPL-3.0
URL: http://qt.digia.com
Source0: %{name}-%{version}.tar.bz2
%if %{with wayland}
BuildRequires: pkgconfig(Qt5Core)
BuildRequires: pkgconfig(Qt5Gui)
BuildRequires: pkgconfig(Qt5Widgets)
BuildRequires: pkgconfig(Qt5OpenGL)
BuildRequires: pkgconfig(Qt5PlatformSupport)
BuildRequires: pkgconfig(Qt5Qml)
BuildRequires: pkgconfig(Qt5Quick)
BuildRequires: pkgconfig(Qt5DBus)
BuildRequires: pkgconfig(wayland-client)
BuildRequires: pkgconfig(wayland-cursor)
BuildRequires: pkgconfig(wayland-egl)
BuildRequires: pkgconfig(egl)
BuildRequires: pkgconfig(glib-2.0)
BuildRequires: libffi-devel
BuildRequires: fdupes
BuildRequires: pkgconfig(xkbcommon)
%endif
%description
Qt is a cross-platform application and UI framework. Using Qt, you can
write web-enabled applications once and deploy them across desktop,
mobile and embedded systems without rewriting the source code.
.
This package contains the Qt wayland compositor for wayland_egl
%if %{with wayland}
%package devel
Summary: Qt Wayland compositor - development files
Group: Base/Libraries
Requires: %{name} = %{version}-%{release}
%description devel
Qt is a cross-platform application and UI framework. Using Qt, you can
write web-enabled applications once and deploy them across desktop,
mobile and embedded systems without rewriting the source code.
.
This package contains the Qt wayland compositor development files for wayland_egl
#### Build section
%prep
%setup -q -n %{name}-%{version}/qtwayland
%build
export QTDIR=/usr/share/qt5
export QT_WAYLAND_GL_CONFIG=wayland_egl
touch .git
qmake -qt=5
make %{?_smp_mflags}
%install
rm -rf %{buildroot}
%qmake_install
%fdupes %{buildroot}%{_includedir}
#### Pre/Post section
%post
/sbin/ldconfig
%postun
/sbin/ldconfig
#### File section
%files
%defattr(-,root,root,-)
#%{_libdir}/libQt5Compositor.so.5*
%{_libdir}/qt5/plugins/platforms/libqwayland-egl.so
#%{_libdir}/qt5/plugins/waylandcompositors/libwayland-egl.so
%files devel
%defattr(-,root,root,-)
#%{_libdir}/libQt5Compositor.so
#%{_includedir}/qt5/*
#%{_libdir}/libQt5Compositor.la
#%{_libdir}/libQt5Compositor.prl
#%{_libdir}/pkgconfig/Qt5Compositor.pc
#%{_libdir}/cmake/Qt5Compositor/*
#%{_datadir}/qt5/mkspecs/modules/qt_lib_compositor.pri
#%{_datadir}/qt5/mkspecs/modules/qt_lib_compositor_private.pri
%{_libdir}/qt5/bin/qtwaylandscanner
%{_libdir}/cmake
%endif
#### No changelog section, separate $pkg.changes contains the history
|