]> git.pld-linux.org Git - packages/qt4.git/blob - qt4.spec
QGtkStyle was unable to detect the current GTK+ theme (RHBZ#702493, QTBUG-5545))
[packages/qt4.git] / qt4.spec
1 #
2 # TODO:
3 #       - more cleanups
4 #       - check if translations are available
5 #       - check Qt ui tool
6 #
7 # Conditional build:
8 %bcond_with     nas             # enable NAS audio support
9 %bcond_without  static_libs     # don't build static libraries
10 %bcond_without  cups            # disable CUPS support
11 %bcond_without  mysql           # don't build MySQL plugin
12 %bcond_without  odbc            # don't build unixODBC plugin
13 %bcond_without  pgsql           # don't build PostgreSQL plugin
14 %bcond_without  sqlite3         # don't build SQLite3 plugin
15 %bcond_without  sqlite          # don't build SQLite2 plugin
16 %bcond_without  ibase           # don't build ibase (InterBase/Firebird) plugin
17 %bcond_without  pch             # disable pch in qmake
18 %bcond_without  gtk             # don't build GTK theme integration
19 %bcond_without  system_phonon   # don't build phonon libraries
20 %bcond_with     mmx             # use MMX instructions
21 %bcond_with     3dnow           # use 3Dnow instructions
22 %bcond_with     sse             # use SSE instructions in gui/painting module
23 %bcond_with     sse2            # use SSE2 instructions
24 %bcond_with     sse3            # use SSE3 instructions (since: Intel middle Pentium4, AMD Athlon64)
25 %bcond_with     ssse3           # use SSSE3 instructions (Intel since Core2, Via Nano)
26 %bcond_with     sse41           # use SSE4.1 instructions (Intel since middle Core2)
27 %bcond_with     sse42           # use SSE4.2 instructions (the same)
28 %bcond_with     avx             # use AVX instructions (future Intel x86 CPUs only)
29
30 %ifnarch %{ix86} %{x8664} sparc sparcv9 alpha ppc
31 %undefine       with_ibase
32 %endif
33 %ifarch athlon
34 %define         with_3dnow      1
35 %endif
36 %ifarch athlon pentium3 pentium4 %{x8664}
37 %define         with_mmx        1
38 %endif
39 %ifarch pentium3 pentium4 %{x8664}
40 %define         with_sse        1
41 %endif
42 %ifarch pentium4 %{x8664}
43 %define         with_sse2       1
44 %endif
45 # any SQL
46 %define         _withsql        1
47 %{!?with_sqlite3:%{!?with_sqlite:%{!?with_ibase:%{!?with_mysql:%{!?with_pgsql:%{!?with_odbc:%undefine _withsql}}}}}}
48
49 Summary:        The Qt GUI application framework
50 Summary(es.UTF-8):      Biblioteca para ejecutar aplicaciones GUI Qt
51 Summary(pl.UTF-8):      Biblioteka Qt do tworzenia GUI
52 Summary(pt_BR.UTF-8):   Estrutura para rodar aplicações GUI Qt
53 Name:           qt4
54 Version:        4.8.4
55 Release:        3
56 License:        LGPL v2.1 or GPL v3.0
57 Group:          X11/Libraries
58 Source0:        http://releases.qt-project.org/qt4/source/qt-everywhere-opensource-src-%{version}.tar.gz
59 # Source0-md5:  89c5ecba180cae74c66260ac732dc5cb
60 Source2:        %{name}-qtconfig.desktop
61 Source3:        %{name}-designer.desktop
62 Source4:        %{name}-assistant.desktop
63 Source5:        %{name}-linguist.desktop
64
65 # git clone git://gitorious.org/+kde-developers/qt/kde-qt.git
66 # git checkout -b 4.7.1-patched origin/4.7.1-patched
67 # git diff v4.7.1..4.7.1-patched > ~/rpm/packages/qt4/qt4-kde-git.patch
68 Patch100:       %{name}-kde-git.patch
69
70 Patch0:         %{name}-tools.patch
71 Patch1:         %{name}-qt_copy.patch
72 Patch2:         %{name}-buildsystem.patch
73 Patch3:         %{name}-locale.patch
74 Patch5:         %{name}-support-cflags-with-commas.patch
75 Patch6:         %{name}-build-lib-static.patch
76 Patch7:         %{name}-x11_fonts.patch
77 Patch8:         %{name}-ibase.patch
78 Patch9:         qt-x11-opensource-src-4.5.1-enable_ft_lcdfilter.patch
79 Patch10:        webkit-no_Werror.patch
80 Patch11:        moc-boost148.patch
81 Patch12:        fix-crash-in-assistant.patch
82 Patch13:        improve-cups-support.patch
83 Patch14:        qt4-CVE-2013-0254.patch
84 # backported from Qt5 (essentially)
85 # http://bugzilla.redhat.com/702493
86 # https://bugreports.qt-project.org/browse/QTBUG-5545
87 Patch15:        qt-everywhere-opensource-src-4.8.4-qgtkstyle_disable_gtk_theme_check.patch
88 Patch16:        qt-everywhere-opensource-src-4.8.3-QTBUG-4862.patch
89 URL:            http://qt.nokia.com/
90 %{?with_ibase:BuildRequires:    Firebird-devel}
91 BuildRequires:  Mesa-libOpenVG-devel
92 BuildRequires:  OpenGL-GLU-devel
93 BuildRequires:  OpenGL-devel
94 BuildRequires:  alsa-lib-devel
95 %{?with_cups:BuildRequires:     cups-devel}
96 BuildRequires:  dbus-devel >= 0.93
97 BuildRequires:  fontconfig-devel
98 BuildRequires:  freetds-devel
99 BuildRequires:  freetype-devel >= 1:2.0.0
100 %{?with_pch:BuildRequires:      gcc >= 5:4.0}
101 BuildRequires:  glib2-devel >= 2.0.0
102 BuildRequires:  gstreamer0.10-plugins-base-devel
103 %{?with_gtk:BuildRequires:      gtk+2-devel >= 2:2.10}
104 # see dependency on libicu version below
105 BuildRequires:  libicu-devel < 50
106 BuildRequires:  libicu-devel >= 49
107 BuildRequires:  libjpeg-devel
108 BuildRequires:  libmng-devel >= 1.0.0
109 BuildRequires:  libpng-devel >= 2:1.0.8
110 BuildRequires:  libstdc++-devel
111 %{?with_mysql:BuildRequires:    mysql-devel}
112 %{?with_nas:BuildRequires:      nas-devel}
113 BuildRequires:  pkgconfig
114 %{?with_pgsql:BuildRequires:    postgresql-backend-devel}
115 %{?with_pgsql:BuildRequires:    postgresql-devel}
116 BuildRequires:  pulseaudio-devel >= 0.9.10
117 BuildRequires:  rpmbuild(macros) >= 1.654
118 BuildRequires:  sed >= 4.0
119 %{?with_sqlite:BuildRequires:   sqlite-devel}
120 %{?with_sqlite3:BuildRequires:  sqlite3-devel}
121 %{?with_odbc:BuildRequires:     unixODBC-devel >= 2.3.0}
122 BuildRequires:  xorg-lib-libSM-devel
123 BuildRequires:  xorg-lib-libXcursor-devel
124 BuildRequires:  xorg-lib-libXext-devel
125 BuildRequires:  xorg-lib-libXfixes-devel
126 BuildRequires:  xorg-lib-libXi-devel
127 BuildRequires:  xorg-lib-libXinerama-devel
128 BuildRequires:  xorg-lib-libXrandr-devel
129 BuildRequires:  xorg-lib-libXrender-devel
130 BuildRequires:  xorg-lib-libXtst-devel
131 BuildRequires:  xorg-lib-libXv-devel
132 BuildRequires:  zlib-devel
133 Obsoletes:      qt-extensions
134 Obsoletes:      qt-utils
135 Conflicts:      kdelibs <= 8:3.2-0.030602.1
136 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
137
138 %define         _noautoreqdep   libGL.so.1 libGLU.so.1
139 %define         _noautostrip    '.*_debug\\.so*'
140
141 %define         specflags       -fno-strict-aliasing
142
143 %define         _qtdir          %{_libdir}/qt4
144
145 %description
146 Qt is a complete C++ application development framework, which includes
147 a class library and tools for multiplatform development and
148 internationalization. Using Qt, a single source code tree can build
149 applications that run natively on different platforms (Windows,
150 Unix/Linux, Mac OS X, embedded Linux).
151
152 Qt has a rich set of standard widgets, and lets you write custom
153 controls. It encapsulates four different platform-specific APIs, and
154 the APIs for file-handling, networking, process-handling, threading,
155 database access, etc. Qt now also has Motif migration oraz Netscape
156 LiveConnect plugin.
157
158 %description -l es.UTF-8
159 Contiene las bibliotecas compartidas necesarias para ejecutar
160 aplicaciones Qt, bien como los archivos README.
161
162 %description -l pl.UTF-8
163 Qt oferuje kompletny system do tworzenia i rozwijania aplikacji w
164 języku C++, w którego skład wchodzi biblioteka z klasami oraz
165 wieloplatformowymi narzędziami do rozwijania i tłumaczenia aplikacji.
166 Z pomocą Qt jeden kod źródłowy może być natywnie uruchamiany na
167 różnych platformach (Windows, Unix/Linux, Mac OS X).
168
169 Qt ma bogaty zbiór standardowych elementów interfejsu graficznego, ale
170 pozwala również na pisanie własnych elementów. Łączy w sposób
171 niewidoczny dla programisty interfejsy programowania różnych systemów,
172 tworząc w ten sposób jeden interfejs dla obsługi plików, sieci,
173 procesów, wątków, baz danych itp. Umożliwia także łatwe przenoszenie
174 na Qt aplikacji korzystających z Motif oraz pisanie wtyczek z
175 wykorzystaniem Netscape LiveConnect.
176
177 %package -n Qt3Support
178 Summary:        Qt3 compatibility library
179 Summary(pl.UTF-8):      Biblioteka kompatybilności z Qt3
180 Group:          X11/Libraries
181 Requires:       QtCore = %{version}-%{release}
182 Requires:       QtGui = %{version}-%{release}
183 Requires:       QtNetwork = %{version}-%{release}
184 Requires:       QtSql = %{version}-%{release}
185 Requires:       QtXml = %{version}-%{release}
186
187 %description -n Qt3Support
188 Qt3 compatibility library.
189
190 %description -n Qt3Support -l pl.UTF-8
191 Biblioteka kompatybilności z Qt3.
192
193 %package -n Qt3Support-devel
194 Summary:        Qt3 compatibility library - development files
195 Summary(pl.UTF-8):      Biblioteka kompatybilności z Qt3 - pliki programistyczne
196 Group:          X11/Development/Libraries
197 Requires:       Qt3Support = %{version}-%{release}
198 Requires:       QtCore-devel = %{version}-%{release}
199 Requires:       QtGui-devel = %{version}-%{release}
200 Requires:       QtNetwork-devel = %{version}-%{release}
201 Requires:       QtSql-devel = %{version}-%{release}
202
203 %description -n Qt3Support-devel
204 Qt3 compatibility library - development files.
205
206 %description -n Qt3Support-devel -l pl.UTF-8
207 Biblioteka kompatybilności z Qt3 - pliki programistyczne.
208
209 %package -n Qt3Support-static
210 Summary:        Qt3 compatibility library - static libraries
211 Summary(pl.UTF-8):      Biblioteka kompatybilności z Qt3 - biblioteki statyczne
212 Group:          X11/Development/Libraries
213 Requires:       Qt3Support-devel = %{version}-%{release}
214
215 %description -n Qt3Support-static
216 Qt3 compatibility library - static libraries.
217
218 %description -n Qt3Support-static -l pl.UTF-8
219 Biblioteka kompatybilności z Qt3 - biblioteki statyczne.
220
221 %package -n QtCLucene
222 Summary:        QtCLucene full text search library wrapper
223 Summary(pl.UTF-8):      Interfejs QtCLucene do biblioteki wyszukiwania pełnotekstowego
224 Group:          X11/Libraries
225 Requires:       QtCore = %{version}-%{release}
226
227 %description -n QtCLucene
228 QtCLucene full text search library wrapper.
229
230 %description -n QtCLucene -l pl.UTF-8
231 Interfejs QtCLucene do biblioteki wyszukiwania pełnotekstowego.
232
233 %package -n QtCLucene-devel
234 Summary:        QtCLucene full text search library wrapper - development files
235 Summary(pl.UTF-8):      Interfejs QtCLucene do biblioteki wyszukiwania pełnotekstowego - pliki programistyczne
236 Group:          X11/Development/Libraries
237 Requires:       QtCLucene = %{version}-%{release}
238 Requires:       QtCore-devel = %{version}-%{release}
239
240 %description -n QtCLucene-devel
241 QtCLucene full text search library wrapper - development files.
242
243 %description -n QtCLucene-devel -l pl.UTF-8
244 Interfejs QtCLucene do biblioteki wyszukiwania pełnotekstowego - pliki
245 programistyczne.
246
247 %package -n QtCLucene-static
248 Summary:        QtCLucene full text search library wrapper - static library
249 Summary(pl.UTF-8):      Interfejs QtCLucene do biblioteki wyszukiwania pełnotekstowego - biblioteka statyczna
250 Group:          X11/Development/Libraries
251 Requires:       QtCLucene-devel = %{version}-%{release}
252
253 %description -n QtCLucene-static
254 QtCLucene full text search library wrapper - static library.
255
256 %description -n QtCLucene-static -l pl.UTF-8
257 Interfejs QtCLucene do biblioteki wyszukiwania pełnotekstowego -
258 biblioteka statyczna.
259
260 %package -n QtCore
261 Summary:        Qt core classes used by other modules
262 Summary(pl.UTF-8):      Podstawowe klasy Qt używane przez inne moduły
263 Group:          X11/Libraries
264 %requires_eq    libicu
265 # be sure to depend on proper arch.
266 %ifarch %{ix86}
267 Requires:       libicui18n.so.49
268 %endif
269 %ifarch %{x8664}
270 Requires:       libicui18n.so.49()(64bit)
271 %endif
272 Obsoletes:      QtAssistant
273
274 %description -n QtCore
275 Qt core classes used by other modules.
276
277 %description -n QtCore -l pl.UTF-8
278 Podstawowe klasy Qt używane przez inne moduły.
279
280 %package -n QtCore-devel
281 Summary:        Qt core classes used by other modules - development files
282 Summary(pl.UTF-8):      Podstawowe klasy Qt używane przez inne moduły - pliki programistyczne
283 Group:          X11/Development/Libraries
284 Requires:       QtCore = %{version}-%{release}
285 Requires:       glib2-devel
286 Requires:       libstdc++-devel
287 Requires:       zlib-devel
288 Obsoletes:      QtAssistant-devel
289
290 %description -n QtCore-devel
291 Qt core classes used by other modules - development files.
292
293 %description -n QtCore-devel -l pl.UTF-8
294 Podstawowe klasy Qt używane przez inne moduły - pliki programistyczne.
295
296 %package -n QtCore-static
297 Summary:        Qt core classes used by other modules - static libraries
298 Summary(pl.UTF-8):      Podstawowe klasy Qt używane przez inne moduły - biblioteki statyczne
299 Group:          X11/Development/Libraries
300 Requires:       QtCore-devel = %{version}-%{release}
301 Obsoletes:      QtAssistant-static
302
303 %description -n QtCore-static
304 Qt core classes used by other modules - static libraries.
305
306 %description -n QtCore-static -l pl.UTF-8
307 Podstawowe klasy Qt używane przez inne moduły - biblioteki statyczne.
308
309 %package -n QtDBus
310 Summary:        Qt classes for D-BUS support
311 Summary(pl.UTF-8):      Klasy Qt do obsługi D-BUS
312 Group:          X11/Libraries
313 Requires:       QtCore = %{version}-%{release}
314 Requires:       QtXml = %{version}-%{release}
315 # only for libqtscriptdbus plugin
316 Requires:       QtGui = %{version}-%{release}
317 Requires:       QtScript = %{version}-%{release}
318
319 %description -n QtDBus
320 This module provides Qt classes for D-BUS support. D-BUS is an
321 Inter-Process Communication (IPC) and Remote Procedure Calling (RPC)
322 mechanism originally developed for Linux to replace existing and
323 competing IPC solutions with one unified protocol.
324
325 %description -n QtDBus -l pl.UTF-8
326 Ten moduł udostępnia klasy Qt do obsługi D-BUS. D-BUS to mechanizm
327 komunikacji między procesowej (IPC - Inter-Process Communication) i
328 zdalnego wywoływania procedur (RPC - Remote Procedure Calling)
329 stworzony początkowo dla Linuksa, aby zastąpić istniejące i
330 konkurujące ze sobą rozwiązania IPC jednym, ujednoliconym protokołem.
331
332 %package -n QtDBus-devel
333 Summary:        Qt classes for D-BUS support - development files
334 Summary(pl.UTF-8):      Klasy Qt do obsługi D-BUS - pliki programistyczne
335 Group:          X11/Development/Libraries
336 Requires:       QtDBus = %{version}-%{release}
337 Requires:       QtXml-devel = %{version}-%{release}
338
339 %description -n QtDBus-devel
340 Qt classes for D-BUS support - development files.
341
342 %description -n QtDBus-devel -l pl.UTF-8
343 Klasy Qt do obsługi D-BUS - pliki programistyczne.
344
345 %package -n QtDBus-static
346 Summary:        Qt classes for D-BUS support - static libraries
347 Summary(pl.UTF-8):      Klasy Qt do obsługi D-BUS - biblioteki statyczne
348 Group:          X11/Development/Libraries
349 Requires:       QtDBus-devel = %{version}-%{release}
350
351 %description -n QtDBus-static
352 Qt classes for D-BUS support - static libraries.
353
354 %description -n QtDBus-static -l pl.UTF-8
355 Klasy Qt do obsługi D-BUS - biblioteki statyczne.
356
357 %package -n QtDeclarative
358 Summary:        QtDeclarative - QML language engine library
359 Summary(pl.UTF-8):      QtDeclarative - biblioteka języka QML
360 Group:          X11/Libraries
361 Requires:       QtCore = %{version}-%{release}
362 Requires:       QtGui = %{version}-%{release}
363 Requires:       QtNetwork = %{version}-%{release}
364 Requires:       QtOpenGL = %{version}-%{release}
365 Requires:       QtScript = %{version}-%{release}
366 Requires:       QtSql = %{version}-%{release}
367 Requires:       QtSvg = %{version}-%{release}
368 Requires:       QtXmlPatterns = %{version}-%{release}
369 # for qmlwebkitplugin plugin
370 Requires:       QtWebKit = %{version}-%{release}
371
372 %description -n QtDeclarative
373 QtDeclarative is the QML language engine library. QML is a declarative
374 language oriented on JavaScript.
375
376 %description -n QtDeclarative -l pl.UTF-8
377 QtDeclarative to biblioteka języka QML. QML jest deklaratywnym
378 językiem zorientowanym na JavaScript.
379
380 %package -n QtDeclarative-devel
381 Summary:        Development files for QtDeclarative - QML language engine library
382 Summary(pl.UTF-8):      Pliki programistyczne QtDeclarative - biblioteki języka QML
383 Group:          X11/Development/Libraries
384 Requires:       QtDeclarative = %{version}-%{release}
385 Requires:       QtGui-devel = %{version}-%{release}
386 Requires:       QtNetwork-devel = %{version}-%{release}
387 Requires:       QtScript-devel = %{version}-%{release}
388
389 %description -n QtDeclarative-devel
390 Development files for QtDeclarative - QML language engine library.
391
392 %description -n QtDeclarative-devel -l pl.UTF-8
393 Pliki programistyczne QtDeclarative - biblioteki języka QML.
394
395 %package -n QtDeclarative-static
396 Summary:        Static version of QtDeclarative - QML language engine library
397 Summary(pl.UTF-8):      Statycza wersja QtDeclarative - biblioteki języka QML
398 Group:          X11/Development/Libraries
399 Requires:       QtDeclarative-devel = %{version}-%{release}
400
401 %description -n QtDeclarative-static
402 Static version of QtDeclarative - QML language engine library.
403
404 %description -n QtDeclarative-static -l pl.UTF-8
405 Statycza wersja QtDeclarative - biblioteki języka QML.
406
407 %package -n QtDesigner
408 Summary:        Classes for extending Qt Designer
409 Summary(pl.UTF-8):      Klasy do rozbudowy Qt Designera
410 Group:          X11/Libraries
411 Requires:       QtGui = %{version}-%{release}
412 Requires:       QtNetwork = %{version}-%{release}
413 Requires:       QtScript = %{version}-%{release}
414 Requires:       QtXml = %{version}-%{release}
415 # for plugins
416 Requires:       Qt3Support = %{version}-%{release}
417 Requires:       QtDBus = %{version}-%{release}
418 Requires:       QtDeclarative = %{version}-%{release}
419 Requires:       QtOpenGL = %{version}-%{release}
420 Requires:       QtSql = %{version}-%{release}
421 Requires:       QtSvg = %{version}-%{release}
422 Requires:       QtWebKit = %{version}-%{release}
423 Requires:       QtXmlPatterns = %{version}-%{release}
424 Obsoletes:      qt4-designer-libs
425
426 %description -n QtDesigner
427 This module provides classes that allow you to create your own custom
428 widget plugins for Qt Designer, and classes that enable you to access
429 Qt Designer's components.
430
431 %description -n QtDesigner -l pl.UTF-8
432 Ten moduł dostarcza klasy, które pozwalają tworzyć własne wtyczki dla
433 Qt Designera oraz klasy, które umożliwiają dostęp do jego komponentów.
434
435 %package -n QtDesigner-devel
436 Summary:        Classes for extending Qt Designer - development files
437 Summary(pl.UTF-8):      Klasy do rozbudowy Qt Designera - pliki programistyczne
438 Group:          X11/Development/Libraries
439 Requires:       QtDesigner = %{version}-%{release}
440 Requires:       QtGui-devel = %{version}-%{release}
441 Requires:       QtScript-devel = %{version}-%{release}
442 Requires:       QtXml-devel = %{version}-%{release}
443
444 %description -n QtDesigner-devel
445 Classes for extending Qt Designer - development files.
446
447 %description -n QtDesigner-devel -l pl.UTF-8
448 Klasy do rozbudowy Qt Designera - pliki programistyczne.
449
450 %package -n QtDesigner-static
451 Summary:        Classes for extending Qt Designer - static libraries
452 Summary(pl.UTF-8):      Klasy do rozbudowy Qt Designera - biblioteki statyczne
453 Group:          X11/Development/Libraries
454 Requires:       QtDesigner-devel = %{version}-%{release}
455
456 %description -n QtDesigner-static
457 Classes for extending Qt Designer - static libraries.
458
459 %description -n QtDesigner-static -l pl.UTF-8
460 Klasy do rozbudowy Qt Designera - biblioteki statyczne.
461
462 %package -n QtGui
463 Summary:        Qt Graphical User Interface components
464 Summary(pl.UTF-8):      Komponenty graficznego interfejsu użytkownika Qt
465 Group:          X11/Libraries
466 Requires:       QtCore = %{version}-%{release}
467 # for qtracegraphicssystem plugin
468 Requires:       QtNetwork = %{version}-%{release}
469
470 %description -n QtGui
471 Qt Graphical User Interface components.
472
473 %description -n QtGui -l pl.UTF-8
474 Komponenty graficznego interfejsu użytkownika Qt.
475
476 %package -n QtGui-devel
477 Summary:        Qt Graphical User Interface components - development files
478 Summary(pl.UTF-8):      Komponenty graficznego interfejsu użytkownika Qt - pliki programistyczne
479 Group:          X11/Development/Libraries
480 Requires:       QtCore-devel = %{version}-%{release}
481 Requires:       QtGui = %{version}-%{release}
482 Requires:       fontconfig-devel
483 Requires:       freetype-devel >= 1:2.0.0
484 Requires:       libpng-devel >= 2:1.0.8
485 Requires:       xorg-lib-libSM-devel
486 Requires:       xorg-lib-libXcursor-devel
487 Requires:       xorg-lib-libXext-devel
488 Requires:       xorg-lib-libXfixes-devel
489 Requires:       xorg-lib-libXi-devel
490 Requires:       xorg-lib-libXinerama-devel
491 Requires:       xorg-lib-libXrandr-devel
492 Requires:       xorg-lib-libXrender-devel
493
494 %description -n QtGui-devel
495 Qt Graphical User Interface components - development files.
496
497 %description -n QtGui-devel -l pl.UTF-8
498 Komponenty graficznego interfejsu użytkownika Qt - pliki
499 programistyczne.
500
501 %package -n QtGui-static
502 Summary:        Qt Graphical User Interface components - static libraries
503 Summary(pl.UTF-8):      Komponenty graficznego interfejsu użytkownika Qt - biblioteki statyczne
504 Group:          X11/Development/Libraries
505 Requires:       QtGui-devel = %{version}-%{release}
506
507 %description -n QtGui-static
508 Qt Graphical User Interface components - static libraries.
509
510 %description -n QtGui-static -l pl.UTF-8
511 Komponenty graficznego interfejsu użytkownika Qt - biblioteki
512 statyczne.
513
514 %package -n QtHelp
515 Summary:        Qt classes for integrating online documentation in applications
516 Summary(pl.UTF-8):      Klasy Qt do integracji dokumentacji w aplikacjach
517 Group:          X11/Libraries
518 Requires:       QtCLucene = %{version}-%{release}
519 Requires:       QtGui = %{version}-%{release}
520 Requires:       QtNetwork = %{version}-%{release}
521 Requires:       QtSql = %{version}-%{release}
522 Requires:       QtXml = %{version}-%{release}
523
524 %description -n QtHelp
525 QtHelp module includes tools for generating and viewing Qt help files.
526 In addition it provides classes for accessing help contents
527 programatically to be able to integrate online help into Qt
528 applications.
529
530 %description -n QtHelp -l pl.UTF-8
531 Moduł QtHelp zawiera narzędzia do generowania i przeglądania plików
532 pomocy Qt. Oprócz tego udostępnia klasy pozwalające na programowy
533 dostęp do zawartości dokumentacji w celu integracji pomocy w
534 aplikacjach Qt.
535
536 %package -n QtHelp-devel
537 Summary:        Qt classes for integrating online documentation in applications - development files
538 Summary(pl.UTF-8):      Klasy Qt do integracji dokumentacji w aplikacjach - pliki programistyczne
539 Group:          X11/Development/Libraries
540 Requires:       QtCLucene-devel = %{version}-%{release}
541 Requires:       QtGui-devel = %{version}-%{release}
542 Requires:       QtHelp = %{version}-%{release}
543 Requires:       QtSql-devel = %{version}-%{release}
544 Requires:       QtXml-devel = %{version}-%{release}
545
546 %description -n QtHelp-devel
547 Qt classes for integrating online documentation in applications -
548 development files.
549
550 %description -n QtHelp-devel -l pl.UTF-8
551 Klasy Qt do integracji dokumentacji w aplikacjach - pliki
552 programistyczne.
553
554 %package -n QtHelp-static
555 Summary:        Qt classes for integrating online documentation in applications - static library
556 Summary(pl.UTF-8):      Klasy Qt do integracji dokumentacji w aplikacjach - biblioteka statyczna
557 Group:          X11/Development/Libraries
558 Requires:       QtHelp-devel = %{version}-%{release}
559
560 %description -n QtHelp-static
561 Qt classes for integrating online documentation in applications -
562 static library.
563
564 %description -n QtHelp-static -l pl.UTF-8
565 Klasy Qt do integracji dokumentacji w aplikacjach - biblioteka
566 statyczna.
567
568 %package -n QtMultimedia
569 Summary:        Qt classes for multimedia programming
570 Summary(pl.UTF-8):      Klasy Qt do programowania multimediów
571 Group:          X11/Libraries
572 Requires:       QtCore = %{version}-%{release}
573 Requires:       QtGui = %{version}-%{release}
574
575 %description -n QtMultimedia
576 Qt classes for multimedia programming.
577
578 %description -n QtMultimedia -l pl.UTF-8
579 Klasy Qt do programowania multimediów.
580
581 %package -n QtMultimedia-devel
582 Summary:        Qt classes for multimedia programming - development files
583 Summary(pl.UTF-8):      Klasy Qt do programowania multimediów - pliki programistyczne
584 Group:          X11/Development/Libraries
585 Requires:       QtCore-devel = %{version}-%{release}
586 Requires:       QtMultimedia = %{version}-%{release}
587
588 %description -n QtMultimedia-devel
589 Qt classes for multimedia programming - development files.
590
591 %description -n QtMultimedia-devel -l pl.UTF-8
592 Klasy Qt do programowania multimediów - pliki programistyczne.
593
594 %package -n QtMultimedia-static
595 Summary:        Qt classes for multimedia programming - static libraries
596 Summary(pl.UTF-8):      Klasy Qt do programowania multimediów - biblioteki statyczne
597 Group:          X11/Development/Libraries
598 Requires:       QtMultimedia-devel = %{version}-%{release}
599
600 %description -n QtMultimedia-static
601 Qt classes for multimedia programming - static libraries.
602
603 %description -n QtMultimedia-static -l pl.UTF-8
604 Klasy Qt do programowania multimediów - biblioteki statyczne.
605
606 %package -n QtNetwork
607 Summary:        Qt classes for network programming
608 Summary(pl.UTF-8):      Klasy Qt do programowania sieciowego
609 Group:          X11/Libraries
610 Requires:       QtCore = %{version}-%{release}
611 # the rest for qnmbearer plugin
612 Requires:       QtDBus = %{version}-%{release}
613 Requires:       QtXml = %{version}-%{release}
614
615 %description -n QtNetwork
616 Qt classes for network programming.
617
618 %description -n QtNetwork -l pl.UTF-8
619 Klasy Qt do programowania sieciowego.
620
621 %package -n QtNetwork-devel
622 Summary:        Qt classes for network programming - development files
623 Summary(pl.UTF-8):      Klasy Qt do programowania sieciowego - pliki programistyczne
624 Group:          X11/Development/Libraries
625 Requires:       QtCore-devel = %{version}-%{release}
626 Requires:       QtNetwork = %{version}-%{release}
627
628 %description -n QtNetwork-devel
629 Qt classes for network programming - development files.
630
631 %description -n QtNetwork-devel -l pl.UTF-8
632 Klasy Qt do programowania sieciowego - pliki programistyczne.
633
634 %package -n QtNetwork-static
635 Summary:        Qt classes for network programming - static libraries
636 Summary(pl.UTF-8):      Klasy Qt do programowania sieciowego - biblioteki statyczne
637 Group:          X11/Development/Libraries
638 Requires:       QtNetwork-devel = %{version}-%{release}
639
640 %description -n QtNetwork-static
641 Qt classes for network programming - static libraries.
642
643 %description -n QtNetwork-static -l pl.UTF-8
644 Klasy Qt do programowania sieciowego - biblioteki statyczne.
645
646 %package -n QtOpenGL
647 Summary:        Qt OpenGL support classes
648 Summary(pl.UTF-8):      Klasy Qt wspomagające OpenGL
649 Group:          X11/Libraries
650 Requires:       QtCore = %{version}-%{release}
651 Requires:       QtGui = %{version}-%{release}
652
653 %description -n QtOpenGL
654 Qt OpenGL support classes.
655
656 %description -n QtOpenGL -l pl.UTF-8
657 Klasy Qt wspomagające OpenGL.
658
659 %package -n QtOpenGL-devel
660 Summary:        Qt OpenGL support classes - development files
661 Summary(pl.UTF-8):      Klasy Qt wspomagające OpenGL - pliki programistyczne
662 Group:          X11/Development/Libraries
663 Requires:       OpenGL-GLU-devel
664 Requires:       QtCore-devel = %{version}-%{release}
665 Requires:       QtGui-devel = %{version}-%{release}
666 Requires:       QtOpenGL = %{version}-%{release}
667
668 %description -n QtOpenGL-devel
669 Qt OpenGL support classes - development files.
670
671 %description -n QtOpenGL-devel -l pl.UTF-8
672 Klasy Qt wspomagające OpenGL - pliki programistyczne.
673
674 %package -n QtOpenGL-static
675 Summary:        Qt OpenGL support classes - static libraries
676 Summary(pl.UTF-8):      Klasy Qt wspomagające OpenGL - biblioteki statyczne
677 Group:          X11/Development/Libraries
678 Requires:       QtOpenGL-devel = %{version}-%{release}
679
680 %description -n QtOpenGL-static
681 Qt OpenGL support classes - static libraries.
682
683 %description -n QtOpenGL-static -l pl.UTF-8
684 Klasy Qt wspomagające OpenGL - biblioteki statyczne.
685
686 %package -n QtOpenVG
687 Summary:        Qt OpenVG support classes
688 Summary(pl.UTF-8):      Klasy Qt wspomagające OpenVG
689 Group:          X11/Libraries
690 Requires:       QtCore = %{version}-%{release}
691 Requires:       QtGui = %{version}-%{release}
692
693 %description -n QtOpenVG
694 Qt OpenVG support classes.
695
696 %description -n QtOpenVG -l pl.UTF-8
697 Klasy Qt wspomagające OpenVG.
698
699 %package -n QtOpenVG-devel
700 Summary:        Qt OpenVG support classes - development files
701 Summary(pl.UTF-8):      Klasy Qt wspomagające OpenVG - pliki programistyczne
702 Group:          X11/Development/Libraries
703 Requires:       Mesa-libOpenVG-devel
704 Requires:       QtCore-devel = %{version}-%{release}
705 Requires:       QtGui-devel = %{version}-%{release}
706
707 %description -n QtOpenVG-devel
708 Qt OpenVG support classes - development files.
709
710 %description -n QtOpenVG-devel -l pl.UTF-8
711 Klasy Qt wspomagające OpenVG - pliki programistyczne.
712
713 %package -n QtOpenVG-static
714 Summary:        Qt OpenVG support classes - static libraries
715 Summary(pl.UTF-8):      Klasy Qt wspomagające OpenVG - biblioteki statyczne
716 Group:          X11/Development/Libraries
717 Requires:       QtOpenVG-devel = %{version}-%{release}
718
719 %description -n QtOpenVG-static
720 Qt OpenVG support classes - static libraries.
721
722 %description -n QtOpenVG-static -l pl.UTF-8
723 Klasy Qt wspomagające OpenVG - biblioteki statyczne.
724
725 %package -n QtScript
726 Summary:        Qt classes for scripting applications
727 Summary(pl.UTF-8):      Klasy Qt pozwalające dodać obsługę skryptów w aplikacjach
728 Group:          X11/Development/Libraries
729 Requires:       QtCore = %{version}-%{release}
730
731 %description -n QtScript
732 The QtScript module provides Qt classes to handle scripts inside
733 applications.
734
735 %description -n QtScript -l pl.UTF-8
736 Ten moduł dostarcza klasy Qt obsługujące języki skryptowe wewnątrz
737 aplikacji.
738
739 %package -n QtScript-devel
740 Summary:        Qt classes for scripting applications - development files
741 Summary(pl.UTF-8):      Klasy Qt do obsługi skryptów wewnątrz aplikacji - pliki programistyczne
742 Group:          X11/Development/Libraries
743 Requires:       QtCore-devel = %{version}-%{release}
744 Requires:       QtScript = %{version}-%{release}
745
746 %description -n QtScript-devel
747 Qt classes for scriptin applications - development files.
748
749 %description -n QtScript-devel -l pl.UTF-8
750 Klasy Qt do obsługi skryptów wewnątrz aplikacji - pliki
751 programistyczne.
752
753 %package -n QtScript-static
754 Summary:        Qt classes for scripting applications - static library
755 Summary(pl.UTF-8):      Klasy Qt pozwalające dodać obsługę skryptów w aplikacjach - biblioteka statyczna
756 Group:          X11/Development/Libraries
757 Requires:       QtScript-devel = %{version}-%{release}
758
759 %description -n QtScript-static
760 Qt classes for scripting applications - static library.
761
762 %description -n QtScript-static -l pl.UTF-8
763 Klasy Qt pozwalające dodać obsługę skryptów w aplikacjach - biblioteka
764 statyczna.
765
766 %package -n QtScriptTools
767 Summary:        QtScriptTools - additional components for applications that use QtScript
768 Summary(pl.UTF-8):      QtScriptTools - dodatkowe komponenty dla aplikacji wykorzystujących QtScript
769 Group:          X11/Development/Libraries
770 Requires:       QtCore = %{version}-%{release}
771 Requires:       QtGui = %{version}-%{release}
772 Requires:       QtScript = %{version}-%{release}
773
774 %description -n QtScriptTools
775 The QtScriptTools module provides additional components for
776 applications that use QtScript.
777
778 %description -n QtScriptTools -l pl.UTF-8
779 Moduł QtScriptTools dostarcza dodatkowe komponenty dla aplikacji
780 wykorzystujących QtScript.
781
782 %package -n QtScriptTools-devel
783 Summary:        Development files for QtScriptTools components
784 Summary(pl.UTF-8):      Pliki programistyczne komponentów QtScriptTools
785 Group:          X11/Development/Libraries
786 Requires:       QtCore-devel = %{version}-%{release}
787 Requires:       QtGui-devel = %{version}-%{release}
788 Requires:       QtScript-devel = %{version}-%{release}
789 Requires:       QtScriptTools = %{version}-%{release}
790
791 %description -n QtScriptTools-devel
792 Development files for QtScriptTools components.
793
794 %description -n QtScriptTools-devel -l pl.UTF-8
795 Pliki programistyczne komponentów QtScriptTools.
796
797 %package -n QtScriptTools-static
798 Summary:        QtScriptTools components - static library
799 Summary(pl.UTF-8):      Komponenty QtScriptTools - biblioteka statyczna
800 Group:          X11/Development/Libraries
801 Requires:       QtScriptTools-devel = %{version}-%{release}
802
803 %description -n QtScriptTools-static
804 Static version of QtScriptTools library, providing additional
805 components for applications that use QtScript.
806
807 %description -n QtScriptTools-static -l pl.UTF-8
808 Statyczna biblioteka QtScriptTools, dostarczająca dodatkowe komponenty
809 dla aplikacji wykorzystujących QtScript.
810
811 %package -n QtSql
812 Summary:        Qt classes for database integration using SQL
813 Summary(pl.UTF-8):      Klasy Qt do integracji z bazami danych przy użyciu SQL
814 Group:          X11/Libraries
815 Requires:       QtCore = %{version}-%{release}
816
817 %description -n QtSql
818 Qt classes for database integration using SQL.
819
820 %description -n QtSql -l pl.UTF-8
821 Klasy Qt do integracji z bazami danych przy użyciu SQL.
822
823 %package -n QtSql-devel
824 Summary:        Qt classes for database integration using SQL - development files
825 Summary(pl.UTF-8):      Klasy Qt do integracji z bazami danych przy użyciu SQL - pliki programistyczne
826 Group:          X11/Development/Libraries
827 Requires:       QtCore-devel = %{version}-%{release}
828 Requires:       QtSql = %{version}-%{release}
829
830 %description -n QtSql-devel
831 Qt classes for database integration using SQL - development files.
832
833 %description -n QtSql-devel -l pl.UTF-8
834 Klasy Qt do integracji z bazami danych przy użyciu SQL - pliki
835 programistyczne.
836
837 %package -n QtSql-static
838 Summary:        Qt classes for database integration using SQL - static libraries
839 Summary(pl.UTF-8):      Klasy Qt do integracji z bazami danych przy użyciu SQL - biblioteki statyczne
840 Group:          X11/Development/Libraries
841 Requires:       QtSql-devel = %{version}-%{release}
842
843 %description -n QtSql-static
844 Qt classes for database integration using SQL - static libraries.
845
846 %description -n QtSql-static -l pl.UTF-8
847 Klasy Qt do integracji z bazami danych przy użyciu SQL - biblioteki
848 statyczne. programistyczne.
849
850 %package -n QtSql-ibase
851 Summary:        Database plugin for InterBase/Firebird Qt support
852 Summary(pl.UTF-8):      Wtyczka InterBase/Firebird do Qt
853 Summary(pt_BR.UTF-8):   Plugin de suporte a InterBase/Firebird para Qt
854 Group:          X11/Libraries
855 Requires:       QtSql = %{version}-%{release}
856 Provides:       QtSql-backend = %{version}-%{release}
857
858 %description -n QtSql-ibase
859 This package contains a plugin for accessing Interbase/Firebird
860 database via the QSql classes.
861
862 %description -n QtSql-ibase -l pl.UTF-8
863 Ten pakiet zawiera wtyczki do Qt umożliwiające korzystanie z baz
864 danych Interbase/Firebird poprzez klasy QSql.
865
866 %description -n QtSql-ibase -l pt_BR.UTF-8
867 Plugin de suporte a InterBase/Firebird para Qt.
868
869 %package -n QtSql-mysql
870 Summary:        Database plugin for MySQL Qt support
871 Summary(pl.UTF-8):      Wtyczka MySQL do Qt
872 Summary(pt_BR.UTF-8):   Plugin de suporte a MySQL para Qt
873 Group:          X11/Libraries
874 Requires:       QtSql = %{version}-%{release}
875 Provides:       QtSql-backend = %{version}-%{release}
876
877 %description -n QtSql-mysql
878 This package contains a plugin for accessing MySQL database via the
879 QSql classes.
880
881 %description -n QtSql-mysql -l pl.UTF-8
882 Ten pakiet zawiera wtyczki do Qt umożliwiające korzystanie z baz
883 danych MySQL poprzez klasy QSql.
884
885 %description -n QtSql-mysql -l pt_BR.UTF-8
886 Plugin de suporte a MySQL para Qt.
887
888 %package -n QtSql-odbc
889 Summary:        Database plugin for ODBC Qt support
890 Summary(pl.UTF-8):      Wtyczka ODBC do Qt
891 Summary(pt_BR.UTF-8):   Plugin de suporte a ODBC para Qt
892 Group:          X11/Libraries
893 Requires:       QtSql = %{version}-%{release}
894 Provides:       QtSql-backend = %{version}-%{release}
895
896 %description -n QtSql-odbc
897 This package contains a plugin for accessing unixODBC services via the
898 QSql classes.
899
900 %description -n QtSql-odbc -l pl.UTF-8
901 Ten pakiet zawiera wtyczki do Qt umożliwiające korzystanie z usług
902 unixODBC poprzez klasy QSql.
903
904 %description -n QtSql-odbc -l pt_BR.UTF-8
905 Plugin de suporte a ODBC para Qt.
906
907 %package -n QtSql-pgsql
908 Summary:        Database plugin for PostgreSQL Qt support
909 Summary(pl.UTF-8):      Wtyczka PostgreSQL do Qt
910 Summary(pt_BR.UTF-8):   Plugin de suporte a PostgreSQL para Qt
911 Group:          X11/Libraries
912 Requires:       QtSql = %{version}-%{release}
913 Provides:       QtSql-backend = %{version}-%{release}
914
915 %description -n QtSql-pgsql
916 This package contains a plugin for accessing PostgreSQL database via
917 the QSql classes.
918
919 %description -n QtSql-pgsql -l pl.UTF-8
920 Ten pakiet zawiera wtyczki do Qt umożliwiające korzystanie z baz
921 danych PostgreSQL poprzez klasy QSql.
922
923 %description -n QtSql-pgsql -l es.UTF-8
924 Plugin de suporte a PostgreSQL para Qt.
925
926 %package -n QtSql-sqlite
927 Summary:        Database plugin for SQLite 2.x Qt support
928 Summary(pl.UTF-8):      Wtyczka SQLite 2.x do Qt
929 Summary(pt_BR.UTF-8):   Plugin de suporte a SQLite 2.x para Qt
930 Group:          X11/Libraries
931 Requires:       QtSql = %{version}-%{release}
932 Provides:       QtSql-backend = %{version}-%{release}
933
934 %description -n QtSql-sqlite
935 This package contains a plugin for using the SQLite 2.x library (which
936 allows to acces virtually any SQL database) via the QSql classes.
937
938 %description -n QtSql-sqlite -l pl.UTF-8
939 Ten pakiet zawiera wtyczki do Qt umożliwiające korzystanie z baz
940 danych SQLite 2.x poprzez klasy QSql.
941
942 %description -n QtSql-sqlite -l pt_BR.UTF-8
943 Plugin de suporte a SQLite 2.x para Qt.
944
945 %package -n QtSql-sqlite3
946 Summary:        Database plugin for SQLite3 Qt support
947 Summary(pl.UTF-8):      Wtyczka SQLite3 do Qt
948 Summary(pt_BR.UTF-8):   Plugin de suporte a SQLite3 para Qt
949 Group:          X11/Libraries
950 Requires:       QtSql = %{version}-%{release}
951 Provides:       QtSql-backend = %{version}-%{release}
952
953 %description -n QtSql-sqlite3
954 This package contains a plugin for using the SQLite3 library (which
955 allows to acces virtually any SQL database) via the QSql classes.
956
957 %description -n QtSql-sqlite3 -l pl.UTF-8
958 Ten pakiet zawiera wtyczki do Qt umożliwiające korzystanie z baz
959 danych SQLite3 poprzez klasy QSql.
960
961 %description -n QtSql-sqlite3 -l pt_BR.UTF-8
962 Plugin de suporte a SQLite3 para Qt.
963
964 %package -n QtSql-tds
965 Summary:        Database plugin for TDS Qt support
966 Summary(pl.UTF-8):      Wtyczka TDS do Qt
967 Summary(pt_BR.UTF-8):   Plugin de suporte a TDS para Qt
968 Group:          X11/Libraries
969 Requires:       QtSql = %{version}-%{release}
970 Provides:       QtSql-backend = %{version}-%{release}
971
972 %description -n QtSql-tds
973 This package contains a plugin for accessing TDS database via the QSql
974 classes.
975
976 %description -n QtSql-tds -l pl.UTF-8
977 Ten pakiet zawiera wtyczki do Qt umożliwiające korzystanie z baz
978 danych TDS poprzez klasy QSql.
979
980 %description -n QtSql-tds -l pt_BR.UTF-8
981 Plugin de suporte a TDS para Qt.
982
983 %package -n QtSvg
984 Summary:        Qt SVG support
985 Summary(pl.UTF-8):      Wsparcie Qt dla SVG
986 Group:          X11/Libraries
987 Requires:       QtCore = %{version}-%{release}
988 Requires:       QtGui = %{version}-%{release}
989 # for svg plugins
990 Requires:       QtXml = %{version}-%{release}
991
992 %description -n QtSvg
993 Qt SVG support.
994
995 %description -n QtSvg -l pl.UTF-8
996 Wsparcie Qt dla SVG.
997
998 %package -n QtSvg-devel
999 Summary:        Qt SVG support - development files
1000 Summary(pl.UTF-8):      Wsparcie Qt dla SVG - pliki programistyczne
1001 Group:          X11/Development/Libraries
1002 Requires:       QtGui-devel = %{version}-%{release}
1003 Requires:       QtSvg = %{version}-%{release}
1004
1005 %description -n QtSvg-devel
1006 Qt SVG support - development files.
1007
1008 %description -n QtSvg-devel -l pl.UTF-8
1009 Wsparcie Qt dla SVG - pliki programistyczne.
1010
1011 %package -n QtSvg-static
1012 Summary:        Qt SVG support - static libraries
1013 Summary(pl.UTF-8):      Wsparcie Qt dla SVG - biblioteki statyczne
1014 Group:          X11/Development/Libraries
1015 Requires:       QtSvg-devel = %{version}-%{release}
1016
1017 %description -n QtSvg-static
1018 Qt SVG support - static libraries.
1019
1020 %description -n QtSvg-static -l pl.UTF-8
1021 Wsparcie Qt dla SVG - biblioteki statyczne.
1022
1023 %package -n QtTest
1024 Summary:        Qt test framework
1025 Summary(pl.UTF-8):      Szkielet testów Qt
1026 Group:          X11/Libraries
1027 Requires:       QtCore = %{version}-%{release}
1028
1029 %description -n QtTest
1030 Qt test framework.
1031
1032 %description -n QtTest -l pl.UTF-8
1033 Szkielet testów Qt.
1034
1035 %package -n QtTest-devel
1036 Summary:        Qt test framework - development files
1037 Summary(pl.UTF-8):      Szkielet testów Qt - pliki programistyczne
1038 Group:          X11/Development/Libraries
1039 Requires:       QtCore-devel = %{version}-%{release}
1040 Requires:       QtTest = %{version}-%{release}
1041
1042 %description -n QtTest-devel
1043 Qt test framework - development files.
1044
1045 %description -n QtTest-devel -l pl.UTF-8
1046 Szkielet testów Qt - pliki programistyczne.
1047
1048 %package -n QtTest-static
1049 Summary:        Qt test framework - static libraries
1050 Summary(pl.UTF-8):      Szkielet testów Qt - biblioteki statyczne
1051 Group:          X11/Development/Libraries
1052 Requires:       QtTest-devel = %{version}-%{release}
1053
1054 %description -n QtTest-static
1055 Qt test framework - static libraries.
1056
1057 %description -n QtTest-static -l pl.UTF-8
1058 Szkielet testów Qt - biblioteki statyczne.
1059
1060 %package -n QtUiTools
1061 Summary:        Classes for handling Qt Designer forms in applications
1062 Summary(pl.UTF-8):      Klasy do obsługi formularzy Qt Designera w aplikacjach
1063 Group:          X11/Libraries
1064 Requires:       QtGui = %{version}-%{release}
1065 Requires:       QtXml = %{version}-%{release}
1066
1067 %description -n QtUiTools
1068 The QtUiTools module provides classes to handle forms created with Qt
1069 Designer.
1070
1071 %description -n QtUiTools -l pl.UTF-8
1072 Moduł QtUiTools udostępnia klasy do obsługi formularzy tworzonych przy
1073 użyciu Qt Designera.
1074
1075 %package -n QtUiTools-devel
1076 Summary:        Classes for handling Qt Designer forms in applications - development files
1077 Summary(pl.UTF-8):      Klasy do obsługi formularzy Qt Designera w aplikacjach - pliki programistyczne
1078 Group:          X11/Development/Libraries
1079 Requires:       QtGui-devel = %{version}-%{release}
1080 Requires:       QtUiTools = %{version}-%{release}
1081 Requires:       QtXml-devel = %{version}-%{release}
1082
1083 %description -n QtUiTools-devel
1084 Classes for handling Qt Designer forms in applications - development
1085 files.
1086
1087 %description -n QtUiTools-devel -l pl.UTF-8
1088 Klasy do obsługi formularzy Qt Designera w aplikacjach - pliki
1089 programistyczne.
1090
1091 %package -n QtUiTools-static
1092 Summary:        Classes for handling Qt Designer forms in applications - static library
1093 Summary(pl.UTF-8):      Klasy do obsługi formularzy Qt Designera w aplikacjach - biblioteka statyczna
1094 Group:          X11/Development/Libraries
1095 Requires:       QtUiTools-devel = %{version}-%{release}
1096
1097 %description -n QtUiTools-static
1098 Classes for handling Qt Designer forms in applications - static
1099 library.
1100
1101 %description -n QtUiTools-static -l pl.UTF-8
1102 Klasy do obsługi formularzy Qt Designera w aplikacjach - biblioteka
1103 statyczna.
1104
1105 %package -n QtWebKit
1106 Summary:        Qt classes for rendering HTML, XHTML and SVG documents
1107 Summary(pl.UTF-8):      Klasy Qt do renderowania dokumentów HTML, XHTML i SVG
1108 Group:          X11/Libraries
1109 Requires:       QtDBus = %{version}-%{release}
1110 Requires:       QtGui = %{version}-%{release}
1111 Requires:       QtNetwork = %{version}-%{release}
1112 Requires:       QtXml = %{version}-%{release}
1113
1114 %description -n QtWebKit
1115 QtWebKit provides a Web browser engine that makes it easy to embed
1116 content from the World Wide Web into your Qt application. At the same
1117 time Web content can be enhanced with native controls. QtWebKit
1118 provides facilities for rendering of HyperText Markup Language (HTML),
1119 Extensible HyperText Markup Language (XHTML) and Scalable Vector
1120 Graphics (SVG) documents, styled using Cascading Style Sheets (CSS)
1121 and scripted with JavaScript.
1122
1123 %description -n QtWebKit -l pl.UTF-8
1124 QtWebKit udostępnia silnik przeglądarki WWW ułatwiający osadzanie
1125 treści ze stron WWW w aplikacjach Qt. Jednocześnie treść WWW może być
1126 rozszerzana o natywne kontrolki. QtWebKit zapewnia renderowanie
1127 dokumentów w językach HTML (HyperText Markup Language), XHTML
1128 (Extensible HyperText Markup Language) i SVG (Scalable Vector
1129 Graphics) z obsługą styli CSS (Cascading Style Sheets) i skryptów w
1130 języku JavaScript.
1131
1132 %package -n QtWebKit-devel
1133 Summary:        Qt classes for rendering HTML, XHTML and SVG documents - development files
1134 Summary(pl.UTF-8):      Klasy Qt do renderowania dokumentów HTML, XHTML i SVG - pliki programistyczne
1135 Group:          X11/Development/Libraries
1136 Requires:       QtGui-devel = %{version}-%{release}
1137 Requires:       QtNetwork-devel = %{version}-%{release}
1138 Requires:       QtScript-devel = %{version}-%{release}
1139 Requires:       QtWebKit = %{version}-%{release}
1140 %if %{with system_phonon}
1141 Requires:       phonon-devel
1142 %else
1143 Requires:       qt4-phonon-devel = %{version}-%{release}
1144 %endif
1145
1146 %description -n QtWebKit-devel
1147 Qt classes for rendering HTML, XHTML and SVG documents - development
1148 files.
1149
1150 %description -n QtWebKit-devel -l pl.UTF-8
1151 Klasy Qt do renderowania dokumentów HTML, XHTML i SVG - pliki
1152 programistyczne.
1153
1154 %package -n QtWebKit-static
1155 Summary:        Qt classes for rendering HTML, XHTML and SVG documents - static library
1156 Summary(pl.UTF-8):      Klasy Qt do renderowania dokumentów HTML, XHTML i SVG - biblioteka statyczna
1157 Group:          X11/Development/Libraries
1158 Requires:       QtWebKit-devel = %{version}-%{release}
1159
1160 %description -n QtWebKit-static
1161 Qt classes for rendering HTML, XHTML and SVG documents - static
1162 library.
1163
1164 %description -n QtWebKit-static -l pl.UTF-8
1165 Klasy Qt do renderowania dokumentów HTML, XHTML i SVG - biblioteka
1166 statyczna.
1167
1168 %package -n QtXml
1169 Summary:        Qt classes for handling XML
1170 Summary(pl.UTF-8):      Klasy Qt do obsługi XML-a
1171 Group:          X11/Libraries
1172 Requires:       QtCore = %{version}-%{release}
1173
1174 %description -n QtXml
1175 Qt classes for handling XML.
1176
1177 %description -n QtXml -l pl.UTF-8
1178 Klasy Qt do obsługi XML-a.
1179
1180 %package -n QtXml-devel
1181 Summary:        Qt classes for handling XML - development files
1182 Summary(pl.UTF-8):      Klasy Qt do obsługi XML-a - pliki programistyczne
1183 Group:          X11/Development/Libraries
1184 Requires:       QtCore-devel = %{version}-%{release}
1185 Requires:       QtXml = %{version}-%{release}
1186
1187 %description -n QtXml-devel
1188 Qt classes for handling XML - development files.
1189
1190 %description -n QtXml-devel -l pl.UTF-8
1191 Klasy Qt do obsługi XML-a - pliki programistyczne.
1192
1193 %package -n QtXml-static
1194 Summary:        Qt classes for handling XML - static libraries
1195 Summary(pl.UTF-8):      Klasy Qt do obsługi XML-a - biblioteki statyczne
1196 Group:          X11/Development/Libraries
1197 Requires:       QtXml-devel = %{version}-%{release}
1198
1199 %description -n QtXml-static
1200 Qt classes for handling XML - static libraries.
1201
1202 %description -n QtXml-static -l pl.UTF-8
1203 Klasy Qt do obsługi XML-a - biblioteki statyczne.
1204
1205 %package -n QtXmlPatterns
1206 Summary:        QtXmlPatterns XQuery engine
1207 Summary(pl.UTF-8):      Silnik zapytań XQuery QtXmlPatterns
1208 Group:          X11/Libraries
1209 Requires:       QtCore = %{version}-%{release}
1210 Requires:       QtNetwork = %{version}-%{release}
1211
1212 %description -n QtXmlPatterns
1213 QtXmlPatterns XQuery engine.
1214
1215 %description -n QtXmlPatterns -l pl.UTF-8
1216 Silnik zapytań XQuery QtXmlPatterns.
1217
1218 %package -n QtXmlPatterns-devel
1219 Summary:        QtXmlPatterns XQuery engine - development files
1220 Summary(pl.UTF-8):      Silnik zapytań XQuery QtXmlPatterns - pliki programistyczne
1221 Group:          X11/Development/Libraries
1222 Requires:       QtNetwork-devel = %{version}-%{release}
1223 Requires:       QtXmlPatterns = %{version}-%{release}
1224
1225 %description -n QtXmlPatterns-devel
1226 QtXmlPatterns XQuery engine - development files.
1227
1228 %description -n QtXmlPatterns-devel -l pl.UTF-8
1229 Silnik zapytań XQuery QtXmlPatterns - pliki programistyczne.
1230
1231 %package -n QtXmlPatterns-static
1232 Summary:        QtXmlPatterns XQuery engine - static library
1233 Summary(pl.UTF-8):      Silnik zapytań XQuery QtXmlPatterns - biblioteka statyczna
1234 Group:          X11/Development/Libraries
1235 Requires:       QtXmlPatterns-devel = %{version}-%{release}
1236
1237 %description -n QtXmlPatterns-static
1238 QtXmlPatterns XQuery engine - static library.
1239
1240 %description -n QtXmlPatterns-static -l pl.UTF-8
1241 Silnik zapytań XQuery QtXmlPatterns - biblioteka statyczna.
1242
1243 %package assistant
1244 Summary:        Qt documentation browser
1245 Summary(pl.UTF-8):      Przeglądarka dokumentacji Qt
1246 Group:          X11/Development/Tools
1247 Requires:       QtGui = %{version}-%{release}
1248 Requires:       QtHelp = %{version}-%{release}
1249 Requires:       QtNetwork = %{version}-%{release}
1250 Requires:       QtSql = %{version}-%{release}
1251 Requires:       QtSql-sqlite3 = %{version}-%{release}
1252 Requires:       QtWebKit = %{version}-%{release}
1253 Requires:       QtXml = %{version}-%{release}
1254 Requires:       hicolor-icon-theme
1255
1256 %description assistant
1257 Qt Assistant is a tool for browsing on-line documentation with
1258 indexing, bookmarks and full-text search.
1259
1260 %description assistant -l pl.UTF-8
1261 Qt Assistant to narzędzie do przeglądania dokumentacji z możliwością
1262 indeksowania, dodawania zakładek i pełnotekstowego wyszukiwania.
1263
1264 %package build
1265 Summary:        Build tools for Qt4
1266 Summary(pl.UTF-8):      Narzędzia do budowania dla Qt4
1267 Group:          X11/Development/Tools
1268 Requires:       QtCore = %{version}-%{release}
1269 Requires:       QtGui = %{version}-%{release}
1270 Requires:       QtXml = %{version}-%{release}
1271
1272 %description build
1273 This package includes the Qt resource compiler (rcc), meta objects
1274 compiler (moc), user interface compiler (uic) and qt3to4 include names
1275 converter.
1276
1277 %description build -l pl.UTF-8
1278 Ten pakiet zawiera kompilator zasobów Qt (rcc), kompilator
1279 metaobiektów (moc), kompilator interfejsów użytkownika (uic) oraz
1280 konwerter nazw plików nagłówkowych qt3to4.
1281
1282 %package designer
1283 Summary:        IDE used for GUI designing with Qt library
1284 Summary(pl.UTF-8):      IDE służące do projektowania GUI za pomocą biblioteki Qt
1285 Group:          X11/Applications
1286 Requires:       QtDesigner = %{version}-%{release}
1287
1288 %description designer
1289 An advanced tool used for GUI designing with Qt library.
1290
1291 %description designer -l pl.UTF-8
1292 Zaawansowane narzędzie służące do projektowania interfejsu graficznego
1293 za pomocą biblioteki Qt.
1294
1295 %package linguist
1296 Summary:        Translation helper for Qt
1297 Summary(pl.UTF-8):      Aplikacja ułatwiająca tłumaczenie aplikacji opartych o Qt
1298 Group:          X11/Development/Tools
1299 Requires:       QtUiTools = %{version}-%{release}
1300 Requires:       hicolor-icon-theme
1301
1302 %description linguist
1303 This program provides an interface that shortens and helps systematize
1304 the process of translating GUIs. Qt Linguist takes all of the text of
1305 a UI that will be shown to the user, and presents it to a human
1306 translator in a simple window. When one UI text is translated, the
1307 program automatically progresses to the next, until they are all
1308 completed.
1309
1310 %description linguist -l pl.UTF-8
1311 Ten program oferuje interfejs znacznie przyśpieszający proces
1312 tłumaczenia interfejsu użytkownika. Zbiera wszystkie teksty
1313 przeznaczone do tłumaczenia i przedstawia w łatwym w obsłudze oknie.
1314 Gdy jeden z nich jest już przetłumaczony, automatycznie przechodzi do
1315 następnego, aż wszystkie będą przetłumaczone.
1316
1317 %package phonon
1318 Summary:        Cross-platform multimedia framework
1319 Summary(pl.UTF-8):      Wieloplatformowy szkielet multimedialny
1320 Group:          X11/Development/Tools
1321 Obsoletes:      phonon
1322
1323 %description phonon
1324 Phonon is a cross-platform multimedia framework that enables the use
1325 of audio and video content in Qt applications.
1326
1327 %description phonon -l pl.UTF-8
1328 Phonon to wieloplatformowy szkielet multimedialny pozwalający na
1329 wykorzystywanie treści dźwiękowych i filmowych w aplikacjach Qt.
1330
1331 %package phonon-devel
1332 Summary:        Cross-platform multimedia framework - development files
1333 Summary(pl.UTF-8):      Wieloplatformowy szkielet multimedialny - pliki programistyczne
1334 Group:          X11/Development/Libraries
1335 Requires:       QtCore-devel = %{version}-%{release}
1336 Requires:       QtDBus-devel = %{version}-%{release}
1337 Requires:       QtGui-devel = %{version}-%{release}
1338 Requires:       qt4-phonon = %{version}-%{release}
1339 Obsoletes:      phonon-devel
1340
1341 %description phonon-devel
1342 Cross-platform multimedia framework - development files.
1343
1344 %description phonon-devel -l pl.UTF-8
1345 Wieloplatformowy szkielet multimedialny - pliki programistyczne.
1346
1347 %package qmake
1348 Summary:        Qt makefile generator
1349 Summary(pl.UTF-8):      Generator plików makefile dla aplikacji Qt
1350 Group:          X11/Development/Tools
1351
1352 %description qmake
1353 A powerful makefile generator. It can create makefiles on any platform
1354 from a simple .pro definitions file.
1355
1356 %description qmake -l pl.UTF-8
1357 Rozbudowany generator plików makefile. Potrafi tworzyć pliki makefile
1358 na każdej platformi na podstawie łatwego w przygotowaniu pliku .pro.
1359
1360 %package qtconfig
1361 Summary:        Qt widgets configuration tool
1362 Summary(pl.UTF-8):      Narzędzie do konfigurowania widgetów Qt
1363 Group:          X11/Applications
1364 Requires:       Qt3Support = %{version}-%{release}
1365 Requires:       QtDBus = %{version}-%{release}
1366 Requires:       QtGui = %{version}-%{release}
1367 Requires:       QtNetwork = %{version}-%{release}
1368 Requires:       QtSql = %{version}-%{release}
1369 Requires:       QtXml = %{version}-%{release}
1370 Requires:       desktop-file-utils
1371
1372 %description qtconfig
1373 A tool for configuring look and behavior of Qt widgets.
1374
1375 %description qtconfig -l pl.UTF-8
1376 Narzędie do konfiguracji wyglądu i zachowania widgetów Qt.
1377
1378 %package -n qvfb
1379 Summary:        Qt Virtual framebuffer
1380 Summary(pl.UTF-8):      Wirtualny framebuffer dla Qt
1381 Group:          X11/Development/Libraries
1382 Requires:       QtGui = %{version}-%{release}
1383 Requires:       QtOpenGL = %{version}-%{release}
1384
1385 %description -n qvfb
1386 Qt Virtual framebuffer allows you to run Qt/Embedded applications in X
1387 window.
1388
1389 %description -n qvfb -l pl.UTF-8
1390 Qt Virtual framebuffer pozwala na uruchamianie aplikacji Qt/Embedded w
1391 okienku X.
1392
1393 %package demos
1394 Summary:        Demos of new Qt4 features
1395 Summary(pl.UTF-8):      Programy demonstrujące nowe możliwości Qt4
1396 Group:          X11/Development/Libraries
1397 Requires:       QtDeclarative = %{version}-%{release}
1398 Requires:       QtGui = %{version}-%{release}
1399 Requires:       QtHelp = %{version}-%{release}
1400 Requires:       QtNetwork = %{version}-%{release}
1401 Requires:       QtOpenGL = %{version}-%{release}
1402 Requires:       QtScript = %{version}-%{release}
1403 Requires:       QtSql = %{version}-%{release}
1404 Requires:       QtSvg = %{version}-%{release}
1405 Requires:       QtXml = %{version}-%{release}
1406 Requires:       QtXmlPatterns = %{version}-%{release}
1407
1408 %description demos
1409 Demos are spiders that fly.
1410
1411 %description demos -l pl.UTF-8
1412 Dema to latające pająki.
1413
1414 %package doc
1415 Summary:        Qt Documentation in HTML format
1416 Summary(pl.UTF-8):      Dokumentacja Qt w formacie HTML
1417 Group:          X11/Development/Libraries
1418 Suggests:       %{name}-assistant = %{version}-%{release}
1419
1420 %description doc
1421 Qt documentation in HTML format.
1422
1423 %description doc -l pl.UTF-8
1424 Dokumentacja qt w formacie HTML.
1425
1426 %package examples
1427 Summary:        Example programs bundled with Qt
1428 Summary(pl.UTF-8):      Ćwiczenia i przykłady do Qt
1429 Summary(pt_BR.UTF-8):   Programas exemplo desenvolvidos com o Qt
1430 Group:          X11/Development/Libraries
1431 # no *-devel deps, allow to look at the examples without compiling
1432
1433 %description examples
1434 Example programs bundled with Qt version.
1435
1436 %description examples -l pl.UTF-8
1437 Ćwiczenia/przykłady dołączone do Qt.
1438
1439 %description examples -l pt_BR.UTF-8
1440 Programas exemplo para o Qt versão.
1441
1442 %prep
1443 %setup -q -n qt-everywhere-opensource-src-%{version}
1444
1445 %patch100 -p1
1446
1447 %patch0 -p1
1448 %patch1 -p0
1449 %patch2 -p1
1450 %patch3 -p1
1451 %patch5 -p1
1452 %patch6 -p1
1453 %patch7 -p1
1454 %patch8 -p1
1455 %patch9 -p1
1456 %patch10 -p1
1457 %patch11 -p1
1458 %patch12 -p1
1459 %patch13 -p1
1460 %patch14 -p1
1461 %patch15 -p1
1462 %patch16 -p1
1463
1464 %{__sed} -i -e 's,usr/X11R6/,usr/g,' mkspecs/linux-g++-64/qmake.conf \
1465         mkspecs/common/linux.conf
1466
1467 # change QMAKE FLAGS to build
1468 %{__sed} -i -e '
1469         s|QMAKE_CC.*=.*gcc|QMAKE_CC\t\t= %{__cc}|;
1470         s|QMAKE_CXX.*=.*g++|QMAKE_CXX\t\t= %{__cxx}|;
1471         s|QMAKE_LINK.*=.*g++|QMAKE_LINK\t\t= %{__cxx}|;
1472         s|QMAKE_LINK_SHLIB.*=.*g++|QMAKE_LINK_SHLIB\t= %{__cxx}|;
1473         s|QMAKE_CFLAGS_RELEASE.*|QMAKE_CFLAGS_RELEASE\t+= %{rpmcppflags} %{rpmcflags}|;
1474         s|QMAKE_CXXFLAGS_RELEASE.*|QMAKE_CXXFLAGS_RELEASE\t+= %{rpmcppflags} %{rpmcxxflags}|;
1475         s|QMAKE_CFLAGS_DEBUG.*|QMAKE_CFLAGS_DEBUG\t+= %{debugcflags}|;
1476         s|QMAKE_CXXFLAGS_DEBUG.*|QMAKE_CXXFLAGS_DEBUG\t+= %{debugcflags}|;
1477         ' mkspecs/common/g++-base.conf
1478
1479 %{__sed} -i -e '
1480         s|QMAKE_INCDIR_QT.*|QMAKE_INCDIR_QT       = %{_includedir}/qt4|;
1481         ' mkspecs/common/linux.conf
1482
1483 # No -L/usr/lib.
1484 %{__sed} -i -e '
1485         s|^QMAKE_LIBDIR_QT.*=.*|QMAKE_LIBDIR_QT       =|;
1486         ' mkspecs/common/linux.conf
1487
1488 # undefine QMAKE_STRIP, so we get useful -debuginfo pkgs
1489 %{__sed} -i -e '
1490         s|^QMAKE_STRIP.*=.*|QMAKE_STRIP             =|;
1491         ' mkspecs/common/linux.conf
1492
1493 # disable webkit tests, broken build
1494 rm -r src/3rdparty/webkit/Source/WebKit/qt/tests
1495
1496 %build
1497 # pass OPTFLAGS to build qmake itself with optimization
1498 export OPTFLAGS="%{rpmcflags}"
1499 export PATH=$PWD/bin:$PATH
1500
1501 ##################################
1502 # DEFAULT OPTIONS FOR ALL BUILDS #
1503 ##################################
1504
1505 COMMONOPT=" \
1506         -confirm-license \
1507         -opensource \
1508         -buildkey pld \
1509         -verbose \
1510         -prefix %{_qtdir} \
1511         -bindir %{_qtdir}/bin \
1512         -docdir %{_docdir}/%{name}-doc \
1513         -headerdir %{_includedir}/qt4 \
1514         -libdir %{_libdir} \
1515         -plugindir %{_qtdir}/plugins \
1516         -datadir %{_datadir}/qt4 \
1517         -translationdir %{_localedir}/ \
1518         -sysconfdir %{_sysconfdir}/qt4 \
1519         -examplesdir %{_examplesdir}/qt4 \
1520         -demosdir %{_examplesdir}/qt4-demos \
1521         -optimized-qmake \
1522         -fast \
1523         -glib \
1524         %{!?with_gtk:-no-gtkstyle} \
1525         -%{!?with_pch:no-}pch \
1526         -no-rpath \
1527         %{!?with_mmx:-no-mmx} \
1528         %{!?with_3dnow:-no-3dnow} \
1529         %{!?with_sse:-no-sse} \
1530         %{!?with_sse2:-no-sse2} \
1531         %{!?with_sse3:-no-sse3} \
1532         %{!?with_ssse3:-no-ssse3} \
1533         %{!?with_sse41:-no-sse4.1} \
1534         %{!?with_sse42:-no-sse4.2} \
1535         %{!?with_avx:-no-avx} \
1536         -qdbus \
1537         -dbus-linked \
1538         -reduce-relocations \
1539         -system-libjpeg \
1540         -system-libmng \
1541         -system-libpng \
1542         -system-libtiff \
1543         -system-zlib \
1544         -openssl-linked \
1545         -exceptions \
1546         -largefile \
1547         -I/usr/include/postgresql/server \
1548         -I/usr/include/mysql \
1549         %{?with_cups:-cups} \
1550         %{?with_nas:-system-nas-sound} \
1551         %{?debug:-debug} \
1552         %{!?debug:-release} \
1553         -qt3support \
1554         -fontconfig \
1555         -largefile \
1556         -iconv \
1557         -icu \
1558         -no-separate-debug-info \
1559         -xfixes \
1560         -nis \
1561         -sm \
1562         -stl \
1563         -xcursor \
1564         -xinput \
1565         -xinerama \
1566         -xrandr \
1567         -xkb \
1568         -xrender \
1569         -xshape \
1570         -xmlpatterns \
1571         -continue"
1572
1573 ##################################
1574 #       STATIC MULTI-THREAD      #
1575 ##################################
1576
1577 %if %{with static_libs}
1578 OPT=" \
1579         -%{!?with_mysql:no}%{?with_mysql:qt}-sql-mysql \
1580         -%{!?with_odbc:no}%{?with_odbc:qt}-sql-odbc \
1581         -%{!?with_pgsql:no}%{?with_pgsql:qt}-sql-psql \
1582         -%{!?with_sqlite3:no}%{?with_sqlite3:qt}-sql-sqlite \
1583         -%{!?with_sqlite:no}%{?with_sqlite:qt}-sql-sqlite2 \
1584         -%{!?with_ibase:no}%{?with_ibase:qt}-sql-ibase \
1585         -static"
1586
1587 ./configure $COMMONOPT $OPT
1588
1589 %{__make} -C src
1590 %{__make} -C tools/assistant/lib
1591 %{__make} -C tools/designer
1592 if [ ! -d staticlib ]; then
1593         mkdir staticlib
1594         cp -a lib/*.a staticlib
1595 fi
1596 %{__make} distclean
1597 %endif
1598
1599 ##################################
1600 #       SHARED MULTI-THREAD      #
1601 ##################################
1602
1603 OPT=" \
1604         -%{!?with_mysql:no}%{?with_mysql:plugin}-sql-mysql \
1605         -%{!?with_odbc:no}%{?with_odbc:plugin}-sql-odbc \
1606         -%{!?with_pgsql:no}%{?with_pgsql:plugin}-sql-psql \
1607         -%{!?with_sqlite3:no}%{?with_sqlite3:plugin}-sql-sqlite \
1608         -%{!?with_sqlite:no}%{?with_sqlite:plugin}-sql-sqlite2 \
1609         -%{!?with_ibase:no}%{?with_ibase:plugin}-sql-ibase \
1610         -shared"
1611
1612 ./configure $COMMONOPT $OPT
1613
1614 %{__make}
1615 %{__make} \
1616         sub-tools-all-ordered \
1617         sub-demos-all-ordered \
1618         sub-examples-all-ordered
1619
1620 %install
1621 rm -rf $RPM_BUILD_ROOT
1622 install -d $RPM_BUILD_ROOT{/etc/env.d,%{_bindir},%{_desktopdir},%{_pixmapsdir},%{_pkgconfigdir}}
1623 install -d $RPM_BUILD_ROOT%{_qtdir}/plugins/{crypto,network}
1624
1625 echo '#QT_GRAPHICSSYSTEM=raster' > $RPM_BUILD_ROOT/etc/env.d/QT_GRAPHICSSYSTEM
1626
1627 %{__make} install \
1628         INSTALL_ROOT=$RPM_BUILD_ROOT
1629
1630 # for qt-creator sth is messed up in the Makefile, nothing for make install
1631 install bin/qdoc3 $RPM_BUILD_ROOT%{_qtdir}/bin/qdoc3
1632
1633 # kill -L/inside/builddir from *.la and *.pc (bug #77152)
1634 %{__sed} -i -e "s,-L$PWD/lib,,g" $RPM_BUILD_ROOT%{_libdir}/*.{la,prl}
1635 %{__sed} -i -e "s,-L$PWD/lib,,g" $RPM_BUILD_ROOT%{_pkgconfigdir}/*.pc
1636 %{__sed} -i -e '
1637         s|moc_location=.*|moc_location=%{_bindir}/moc-qt4|;
1638         s|uic_location=.*|uic_location=%{_bindir}/uic-qt4|;
1639         ' $RPM_BUILD_ROOT%{_pkgconfigdir}/*.pc
1640
1641 # libQtWebKit.la contains '-ljscore' and '-lwebcore', they come
1642 # from src/3rdparty/webkit/{JavaScriptCore,WebCore}} but those libs aren't installed
1643 %{__sed} -i -e "s,-lwebcore,,g;s,-ljscore,,g;" $RPM_BUILD_ROOT%{_libdir}/libQtWebKit.la
1644
1645 # install tools
1646 install bin/findtr      $RPM_BUILD_ROOT%{_qtdir}/bin
1647
1648 cd $RPM_BUILD_ROOT%{_bindir}
1649 ln -sf ../%{_lib}/qt4/bin/assistant assistant-qt4
1650 ln -sf ../%{_lib}/qt4/bin/designer designer-qt4
1651 ln -sf ../%{_lib}/qt4/bin/findtr findtr-qt4
1652 ln -sf ../%{_lib}/qt4/bin/linguist linguist-qt4
1653 ln -sf ../%{_lib}/qt4/bin/lrelease lrelease-qt4
1654 ln -sf ../%{_lib}/qt4/bin/lupdate lupdate-qt4
1655 ln -sf ../%{_lib}/qt4/bin/moc moc-qt4
1656 ln -sf ../%{_lib}/qt4/bin/qmake qmake-qt4
1657 ln -sf ../%{_lib}/qt4/bin/qtconfig qtconfig-qt4
1658 ln -sf ../%{_lib}/qt4/bin/uic uic-qt4
1659 ln -sf ../%{_lib}/qt4/bin/qdoc3 .
1660 ln -sf ../%{_lib}/qt4/bin/qt3to4 .
1661 ln -sf ../%{_lib}/qt4/bin/rcc .
1662 ln -sf ../%{_lib}/qt4/bin/uic3 .
1663 ln -sf ../%{_lib}/qt4/bin/pixeltool .
1664 ln -sf ../%{_lib}/qt4/bin/qcollectiongenerator .
1665 ln -sf ../%{_lib}/qt4/bin/qdbuscpp2xml .
1666 ln -sf ../%{_lib}/qt4/bin/qdbusxml2cpp .
1667 ln -sf ../%{_lib}/qt4/bin/qhelpconverter .
1668 ln -sf ../%{_lib}/qt4/bin/qhelpgenerator .
1669 ln -sf ../%{_lib}/qt4/bin/qmlviewer .
1670 ln -sf ../%{_lib}/qt4/bin/qmlplugindump .
1671 ln -sf ../%{_lib}/qt4/bin/qttracereplay .
1672 ln -sf ../%{_lib}/qt4/bin/qvfb .
1673 ln -sf ../%{_lib}/qt4/bin/xmlpatternsvalidator .
1674 cd -
1675
1676 # multilib
1677 mv $RPM_BUILD_ROOT%{_qtdir}/bin/{qdbus,qdbusviewer} $RPM_BUILD_ROOT%{_bindir}
1678 ln -sf %{_bindir}/qdbus $RPM_BUILD_ROOT%{_qtdir}/bin/qdbus
1679 ln -sf %{_bindir}/qdbusviewer $RPM_BUILD_ROOT%{_qtdir}/bin/qdbusviewer
1680
1681 install %{SOURCE2} $RPM_BUILD_ROOT%{_desktopdir}/qtconfig-qt4.desktop
1682 install tools/qtconfig/images/appicon.png \
1683         $RPM_BUILD_ROOT%{_pixmapsdir}/qtconfig-qt4.png
1684
1685 install %{SOURCE5} $RPM_BUILD_ROOT%{_desktopdir}/linguist-qt4.desktop
1686 for f in tools/linguist/linguist/images/icons/linguist-*-32.png; do
1687         size=$(echo $(basename ${f}) | cut -d- -f2)
1688         install -D $f $RPM_BUILD_ROOT%{_iconsdir}/hicolor/${size}x${size}/apps/linguist-qt4.png
1689 done
1690
1691 install %{SOURCE4} $RPM_BUILD_ROOT%{_desktopdir}/assistant-qt4.desktop
1692 install -D tools/assistant/tools/assistant/images/assistant.png \
1693         $RPM_BUILD_ROOT%{_iconsdir}/hicolor/32x32/apps/assistant-qt4.png
1694 install -D tools/assistant/tools/assistant/images/assistant-128.png \
1695         $RPM_BUILD_ROOT%{_iconsdir}/hicolor/128x128/apps/assistant-qt4.png
1696
1697 install %{SOURCE3} $RPM_BUILD_ROOT%{_desktopdir}/designer-qt4.desktop
1698 install tools/designer/src/designer/images/designer.png \
1699         $RPM_BUILD_ROOT%{_pixmapsdir}/designer-qt4.png
1700
1701 %if %{with static_libs}
1702 install staticlib/*.a $RPM_BUILD_ROOT%{_libdir}
1703 %endif
1704
1705 #
1706 # Locale
1707 #
1708 for f in translations/*.ts ; do
1709         LD_LIBRARY_PATH=lib bin/lrelease $f -qm translations/$(basename $f .ts).qm
1710 done
1711
1712 %{__rm} $RPM_BUILD_ROOT%{_localedir}/*.qm
1713 for file in translations/*.qm tools/assistant/*.qm tools/designer/designer/*.qm tools/linguist/linguist/*.qm; do
1714         [ ! -f $file ] && continue
1715         case "$file" in
1716                 *untranslated*)
1717                         continue;
1718                         ;;
1719         esac
1720         eval "`echo $file | sed -r 's:.*/([a-zA-Z]+(_[a-zA-Z]{3,}){0,1})_(((ja)_jp)|([a-z]{2}_[A-Z]{2,})|([a-z]{2}))\.qm$:MOD=\1 ; lang=\5\6\7:'`"
1721         [ "$lang" == "iw" ] && lang=he
1722         MOD=qt4-$MOD
1723         [ "$MOD" == "qt4-qt" ] && MOD=qt4
1724         install -d $RPM_BUILD_ROOT%{_localedir}/$lang/LC_MESSAGES
1725         cp $file $RPM_BUILD_ROOT%{_localedir}/$lang/LC_MESSAGES/$MOD.qm
1726 done
1727
1728 cd $RPM_BUILD_ROOT%{_includedir}/qt4/Qt
1729 # QtCore must be the last
1730 for f in ../Qt{3Support,DBus,Declarative,Designer,Gui,Help,Network,OpenGL,Script,Sql,Svg,Test,UiTools,WebKit,Xml,XmlPatterns,Core}/*; do
1731         if [ ! -d $f ]; then
1732                 ln -sf $f `basename $f`
1733         fi
1734 done
1735 cd -
1736
1737 # Ship doc & qmake stuff
1738 ln -s %{_docdir}/%{name}-doc $RPM_BUILD_ROOT%{_qtdir}/doc
1739 ln -s %{_datadir}/qt4/mkspecs $RPM_BUILD_ROOT%{_qtdir}/mkspecs
1740
1741 for f in $RPM_BUILD_ROOT%{_pkgconfigdir}/*.pc; do
1742         HAVEDEBUG=`echo $f | grep _debug | wc -l`
1743         MODULE=`echo $f | basename $f | cut -d. -f1 | cut -d_ -f1`
1744         MODULE2=`echo $MODULE | tr a-z A-Z | sed s:QT::`
1745         DEFS="-D_REENTRANT"
1746
1747         if [ "$MODULE2" == "3SUPPORT" ]; then
1748                 DEFS="$DEFS -DQT3_SUPPORT -DQT_QT3SUPPORT_LIB"
1749         else
1750                 DEFS="$DEFS -DQT_"$MODULE2"_LIB"
1751         fi
1752         [ "$HAVEDEBUG" -eq 0 ] && DEFS="$DEFS -DQT_NO_DEBUG"
1753
1754         sed -i -e "s:-DQT_SHARED:-DQT_SHARED $DEFS:" $f
1755 done
1756
1757 # Prepare some files list
1758 ifecho() {
1759         RESULT=`echo $RPM_BUILD_ROOT$2 2>/dev/null`
1760         [ "$RESULT" == "" ] && return # XXX this is never true due $RPM_BUILD_ROOT being set
1761         r=`echo $RESULT | awk '{ print $1 }'`
1762
1763         if [ -d "$r" ]; then
1764                 echo "%%dir $2" >> $1.files
1765         elif [ -x "$r" ] ; then
1766                 echo "%%attr(755,root,root) $2" >> $1.files
1767         elif [ -f "$r" ]; then
1768                 echo "$2" >> $1.files
1769         else
1770                 echo "Error generation $1 files list!"
1771                 echo "$r: no such file or direcotry!"
1772                 return 1
1773         fi
1774 }
1775
1776 mkdevfl() {
1777         set -x
1778         MODULE=$1; shift
1779         echo "%%defattr(644,root,root,755)" > $MODULE-devel.files
1780         ifecho $MODULE-devel "%{_libdir}/lib$MODULE*.so"
1781         ifecho $MODULE-devel "%{_libdir}/lib$MODULE*.la"
1782         ifecho $MODULE-devel "%{_libdir}/lib$MODULE*.prl"
1783         ifecho $MODULE-devel "%{_pkgconfigdir}/$MODULE*.pc"
1784         if [ -d "$RPM_BUILD_ROOT%{_includedir}/qt4/$MODULE" ]; then
1785                 ifecho $MODULE-devel %{_includedir}/qt4/$MODULE
1786         fi
1787         for f in `find $RPM_BUILD_ROOT%{_includedir}/qt4/$MODULE -printf "%%P "`; do
1788                 ifecho $MODULE-devel %{_includedir}/qt4/$MODULE/$f
1789                 if [ -a "$RPM_BUILD_ROOT%{_includedir}/qt4/Qt/$f" ]; then
1790                         ifecho $MODULE-devel %{_includedir}/qt4/Qt/$f
1791                 fi
1792         done
1793         for f in $@; do ifecho $MODULE-devel $f; done
1794 }
1795
1796 mkdevfl QtCore %{_includedir}/qt4 %{_includedir}/qt4/Qt
1797 mkdevfl QtDBus %{_qtdir}/bin/qdbuscpp2xml %{_qtdir}/bin/qdbusxml2cpp %{_bindir}/qdbuscpp2xml %{_bindir}/qdbusxml2cpp
1798 mkdevfl QtDeclarative
1799 mkdevfl QtGui
1800 mkdevfl QtMultimedia
1801 mkdevfl QtNetwork
1802 mkdevfl QtOpenGL
1803 mkdevfl QtOpenVG
1804 mkdevfl QtScript
1805 mkdevfl QtScriptTools
1806 mkdevfl QtSql
1807 mkdevfl QtSvg
1808 mkdevfl QtTest
1809 mkdevfl QtHelp
1810 mkdevfl QtWebKit
1811 mkdevfl QtCLucene
1812 mkdevfl QtXml
1813 mkdevfl QtXmlPatterns
1814 mkdevfl Qt3Support
1815 mkdevfl phonon
1816
1817 # without *.la *.pc etc.
1818 mkdevfl QtDesigner || /bin/true
1819 mkdevfl QtUiTools || /bin/true
1820
1821 # without glob (exclude QtScriptTools* QtXmlPatterns*)
1822 %{__sed} -i 's,QtScript\*,QtScript,g' QtScript-devel.files
1823 %{__sed} -i 's,QtXml\*,QtXml,g' QtXml-devel.files
1824 # no duplication between QtCore-devel and QtXml-devel
1825 %{__sed} -i 's,%{_includedir}/qt4/Qt/QXmlStream.*,,g' QtCore-devel.files
1826 %{__sed} -i 's,%{_includedir}/qt4/Qt/qxmlstream\.h,,g' QtCore-devel.files
1827
1828 echo "%defattr(644,root,root,755)" > examples.files
1829 ifecho examples %{_examplesdir}/qt4
1830 for f in `find $RPM_BUILD_ROOT%{_examplesdir}/qt4 -printf "%%P "`; do
1831         ifecho examples %{_examplesdir}/qt4/$f
1832 done
1833
1834 echo "%defattr(644,root,root,755)" > demos.files
1835 ifecho demos "%{_examplesdir}/qt4-demos"
1836 ifecho demos "%{_qtdir}/bin/qtdemo"
1837 for f in `find $RPM_BUILD_ROOT%{_examplesdir}/qt4-demos -printf "%%P "`; do
1838         ifecho demos %{_examplesdir}/qt4-demos/$f
1839 done
1840
1841 %if %{with system_phonon}
1842 %{__rm} $RPM_BUILD_ROOT%{_libdir}/libphonon.so* \
1843         $RPM_BUILD_ROOT%{_libdir}/libphonon.{la,prl} \
1844         $RPM_BUILD_ROOT%{_libdir}/qt4/plugins/phonon_backend/libphonon_gstreamer.so \
1845         $RPM_BUILD_ROOT%{_pkgconfigdir}/phonon.pc
1846 %{__rm} -r $RPM_BUILD_ROOT%{_includedir}/qt4/phonon
1847 %if %{with static_libs}
1848 %{__rm} $RPM_BUILD_ROOT%{_libdir}/libphonon.a
1849 %endif
1850 %endif
1851
1852 %clean
1853 rm -rf $RPM_BUILD_ROOT
1854
1855 %post   -n Qt3Support   -p /sbin/ldconfig
1856 %postun -n Qt3Support   -p /sbin/ldconfig
1857
1858 %post   -n QtCLucene    -p /sbin/ldconfig
1859 %postun -n QtCLucene    -p /sbin/ldconfig
1860
1861 %post   -n QtCore       -p /sbin/ldconfig
1862 %postun -n QtCore       -p /sbin/ldconfig
1863
1864 %post   -n QtDBus       -p /sbin/ldconfig
1865 %postun -n QtDBus       -p /sbin/ldconfig
1866
1867 %post   -n QtDeclarative        -p /sbin/ldconfig
1868 %postun -n QtDeclarative        -p /sbin/ldconfig
1869
1870 %post   -n QtDesigner   -p /sbin/ldconfig
1871 %postun -n QtDesigner   -p /sbin/ldconfig
1872
1873 %post   -n QtGui        -p /sbin/ldconfig
1874 %postun -n QtGui        -p /sbin/ldconfig
1875
1876 %post   -n QtHelp       -p /sbin/ldconfig
1877 %postun -n QtHelp       -p /sbin/ldconfig
1878
1879 %post   -n QtMultimedia -p /sbin/ldconfig
1880 %postun -n QtMultimedia -p /sbin/ldconfig
1881
1882 %post   -n QtNetwork    -p /sbin/ldconfig
1883 %postun -n QtNetwork    -p /sbin/ldconfig
1884
1885 %post   -n QtOpenGL     -p /sbin/ldconfig
1886 %postun -n QtOpenGL     -p /sbin/ldconfig
1887
1888 %post   -n QtOpenVG     -p /sbin/ldconfig
1889 %postun -n QtOpenVG     -p /sbin/ldconfig
1890
1891 %post   -n QtScript     -p /sbin/ldconfig
1892 %postun -n QtScript     -p /sbin/ldconfig
1893
1894 %post   -n QtScriptTools        -p /sbin/ldconfig
1895 %postun -n QtScriptTools        -p /sbin/ldconfig
1896
1897 %post   -n QtSql        -p /sbin/ldconfig
1898 %postun -n QtSql        -p /sbin/ldconfig
1899
1900 %post   -n QtSvg        -p /sbin/ldconfig
1901 %postun -n QtSvg        -p /sbin/ldconfig
1902
1903 %post   -n QtTest       -p /sbin/ldconfig
1904 %postun -n QtTest       -p /sbin/ldconfig
1905
1906 %post   -n QtUiTools    -p /sbin/ldconfig
1907 %postun -n QtUiTools    -p /sbin/ldconfig
1908
1909 %post   -n QtWebKit     -p /sbin/ldconfig
1910 %postun -n QtWebKit     -p /sbin/ldconfig
1911
1912 %post   -n QtXml        -p /sbin/ldconfig
1913 %postun -n QtXml        -p /sbin/ldconfig
1914
1915 %post   -n QtXmlPatterns        -p /sbin/ldconfig
1916 %postun -n QtXmlPatterns        -p /sbin/ldconfig
1917
1918 %post assistant
1919 %update_icon_cache hicolor
1920
1921 %postun assistant
1922 %update_icon_cache hicolor
1923
1924 %post linguist
1925 %update_icon_cache hicolor
1926
1927 %postun linguist
1928 %update_icon_cache hicolor
1929
1930 %post   phonon          -p /sbin/ldconfig
1931 %postun phonon          -p /sbin/ldconfig
1932
1933 %post qtconfig
1934 %update_desktop_database
1935
1936 %files -n Qt3Support
1937 %defattr(644,root,root,755)
1938 %attr(755,root,root) %{_libdir}/libQt3Support.so.*.*
1939 %attr(755,root,root) %ghost %{_libdir}/libQt3Support.so.4
1940 %attr(755,root,root) %{_qtdir}/plugins/accessible/libqtaccessiblecompatwidgets.so
1941
1942 %files -n QtCLucene
1943 %defattr(644,root,root,755)
1944 %attr(755,root,root) %{_libdir}/libQtCLucene.so.*.*
1945 %attr(755,root,root) %ghost %{_libdir}/libQtCLucene.so.4
1946
1947 %files -n QtCore
1948 %defattr(644,root,root,755)
1949 %attr(755,root,root) %{_libdir}/libQtCore.so.*.*
1950 %attr(755,root,root) %ghost %{_libdir}/libQtCore.so.4
1951 %dir %{_qtdir}
1952 %dir %{_qtdir}/bin
1953 %dir %{_qtdir}/plugins
1954 %dir %{_qtdir}/plugins/codecs
1955 %attr(755,root,root) %{_qtdir}/plugins/codecs/*.so
1956 # two following are used only by foreign packages, not QtCore
1957 %dir %{_qtdir}/plugins/crypto
1958 %dir %{_qtdir}/plugins/network
1959 %dir %{_datadir}/qt4
1960 %lang(ar) %{_localedir}/ar/LC_MESSAGES/qt4.qm
1961 %lang(cs) %{_localedir}/cs/LC_MESSAGES/qt4.qm
1962 %lang(da) %{_localedir}/da/LC_MESSAGES/qt4.qm
1963 %lang(de) %{_localedir}/de/LC_MESSAGES/qt4.qm
1964 %lang(es) %{_localedir}/es/LC_MESSAGES/qt4.qm
1965 %lang(fa) %{_localedir}/fa/LC_MESSAGES/qt4.qm
1966 %lang(fr) %{_localedir}/fr/LC_MESSAGES/qt4.qm
1967 %lang(gl) %{_localedir}/gl/LC_MESSAGES/qt4.qm
1968 %lang(he) %{_localedir}/he/LC_MESSAGES/qt4.qm
1969 %lang(hu) %{_localedir}/hu/LC_MESSAGES/qt4.qm
1970 %lang(ja) %{_localedir}/ja/LC_MESSAGES/qt4.qm
1971 %lang(ko) %{_localedir}/ko/LC_MESSAGES/qt4.qm
1972 %lang(lt) %{_localedir}/lt/LC_MESSAGES/qt4.qm
1973 %lang(pl) %{_localedir}/pl/LC_MESSAGES/qt4.qm
1974 %lang(pt) %{_localedir}/pt/LC_MESSAGES/qt4.qm
1975 %lang(ru) %{_localedir}/ru/LC_MESSAGES/qt4.qm
1976 %lang(sk) %{_localedir}/sk/LC_MESSAGES/qt4.qm
1977 %lang(sl) %{_localedir}/sl/LC_MESSAGES/qt4.qm
1978 %lang(sv) %{_localedir}/sv/LC_MESSAGES/qt4.qm
1979 %lang(uk) %{_localedir}/uk/LC_MESSAGES/qt4.qm
1980 %lang(zh_CN) %{_localedir}/zh_CN/LC_MESSAGES/qt4.qm
1981 %lang(zh_TW) %{_localedir}/zh_TW/LC_MESSAGES/qt4.qm
1982
1983 %files -n QtDBus
1984 %defattr(644,root,root,755)
1985 %attr(755,root,root) %{_bindir}/qdbus
1986 %attr(755,root,root) %{_bindir}/qdbusviewer
1987 %attr(755,root,root) %{_libdir}/libQtDBus.so.*.*
1988 %attr(755,root,root) %ghost %{_libdir}/libQtDBus.so.4
1989 %attr(755,root,root) %{_qtdir}/bin/qdbus
1990 %attr(755,root,root) %{_qtdir}/bin/qdbusviewer
1991 # ?? is this the proper place?
1992 %attr(755,root,root) %{_qtdir}/plugins/script/libqtscriptdbus.so
1993
1994 %files -n QtDeclarative
1995 %defattr(644,root,root,755)
1996 %attr(755,root,root) %{_bindir}/qmlviewer
1997 %attr(755,root,root) %{_bindir}/qmlplugindump
1998 %attr(755,root,root) %{_qtdir}/bin/qmlviewer
1999 %attr(755,root,root) %{_qtdir}/bin/qmlplugindump
2000 %attr(755,root,root) %{_libdir}/libQtDeclarative.so.*.*
2001 %attr(755,root,root) %ghost %{_libdir}/libQtDeclarative.so.4
2002 %dir %{_qtdir}/imports
2003 %dir %{_qtdir}/imports/Qt
2004 %dir %{_qtdir}/imports/Qt/labs
2005 %dir %{_qtdir}/imports/Qt/labs/folderlistmodel
2006 %dir %{_qtdir}/imports/Qt/labs/gestures
2007 %dir %{_qtdir}/imports/Qt/labs/particles
2008 %dir %{_qtdir}/imports/Qt/labs/shaders
2009 %attr(755,root,root) %{_qtdir}/imports/Qt/labs/*/*.so
2010 %{_qtdir}/imports/Qt/labs/*/qmldir
2011 %dir %{_qtdir}/imports/QtWebKit
2012 %attr(755,root,root) %{_qtdir}/imports/QtWebKit/*.so
2013 %{_qtdir}/imports/QtWebKit/qmldir
2014 %dir %{_qtdir}/plugins/qmltooling
2015 %attr(755,root,root) %{_qtdir}/plugins/qmltooling/libqmldbg_tcp.so
2016 %attr(755,root,root) %{_qtdir}/plugins/qmltooling/libqmldbg_inspector.so
2017
2018 %files -n QtDesigner
2019 %defattr(644,root,root,755)
2020 %attr(755,root,root) %{_libdir}/libQtDesigner.so.*.*
2021 %attr(755,root,root) %ghost %{_libdir}/libQtDesigner.so.4
2022 %attr(755,root,root) %{_libdir}/libQtDesignerComponents.so.*.*
2023 %attr(755,root,root) %ghost %{_libdir}/libQtDesignerComponents.so.4
2024 %dir %{_qtdir}/plugins/designer
2025 %attr(755,root,root) %{_qtdir}/plugins/designer/*.so
2026
2027 %files -n QtGui
2028 %defattr(644,root,root,755)
2029 %config(noreplace,missingok) %verify(not md5 mtime size) /etc/env.d/QT_GRAPHICSSYSTEM
2030 %attr(755,root,root) %{_libdir}/libQtGui.so.*.*
2031 %attr(755,root,root) %ghost %{_libdir}/libQtGui.so.4
2032 %dir %{_qtdir}/plugins/accessible
2033 %attr(755,root,root) %{_qtdir}/plugins/accessible/libqtaccessiblewidgets.so
2034 %dir %{_qtdir}/plugins/graphicssystems
2035 %attr(755,root,root) %{_qtdir}/plugins/graphicssystems/libqtracegraphicssystem.so
2036 %dir %{_qtdir}/plugins/iconengines
2037 %dir %{_qtdir}/plugins/imageformats
2038 %attr(755,root,root) %{_qtdir}/plugins/imageformats/libqgif.so
2039 %attr(755,root,root) %{_qtdir}/plugins/imageformats/libqico.so
2040 %attr(755,root,root) %{_qtdir}/plugins/imageformats/libqjpeg.so
2041 %attr(755,root,root) %{_qtdir}/plugins/imageformats/libqmng.so
2042 %attr(755,root,root) %{_qtdir}/plugins/imageformats/libqtga.so
2043 %attr(755,root,root) %{_qtdir}/plugins/imageformats/libqtiff.so
2044 %dir %{_qtdir}/plugins/inputmethods
2045 %attr(755,root,root) %{_qtdir}/plugins/inputmethods/*.so
2046
2047 %files -n QtHelp
2048 %defattr(644,root,root,755)
2049 %attr(755,root,root) %{_bindir}/qhelpconverter
2050 %attr(755,root,root) %{_bindir}/qhelpgenerator
2051 %attr(755,root,root) %{_libdir}/libQtHelp.so.*.*
2052 %attr(755,root,root) %ghost %{_libdir}/libQtHelp.so.4
2053 %attr(755,root,root) %{_qtdir}/bin/qhelpconverter
2054 %attr(755,root,root) %{_qtdir}/bin/qhelpgenerator
2055 %lang(cs) %{_localedir}/cs/LC_MESSAGES/qt4-qt_help.qm
2056 %lang(da) %{_localedir}/da/LC_MESSAGES/qt4-qt_help.qm
2057 %lang(de) %{_localedir}/de/LC_MESSAGES/qt4-qt_help.qm
2058 %lang(fr) %{_localedir}/fr/LC_MESSAGES/qt4-qt_help.qm
2059 %lang(gl) %{_localedir}/gl/LC_MESSAGES/qt4-qt_help.qm
2060 %lang(hu) %{_localedir}/hu/LC_MESSAGES/qt4-qt_help.qm
2061 %lang(ja) %{_localedir}/ja/LC_MESSAGES/qt4-qt_help.qm
2062 %lang(ko) %{_localedir}/ko/LC_MESSAGES/qt4-qt_help.qm
2063 %lang(pl) %{_localedir}/pl/LC_MESSAGES/qt4-qt_help.qm
2064 %lang(ru) %{_localedir}/ru/LC_MESSAGES/qt4-qt_help.qm
2065 %lang(sl) %{_localedir}/sl/LC_MESSAGES/qt4-qt_help.qm
2066 %lang(uk) %{_localedir}/uk/LC_MESSAGES/qt4-qt_help.qm
2067 %lang(zh_CN) %{_localedir}/zh_CN/LC_MESSAGES/qt4-qt_help.qm
2068 %lang(zh_TW) %{_localedir}/zh_TW/LC_MESSAGES/qt4-qt_help.qm
2069
2070 %files -n QtMultimedia
2071 %defattr(644,root,root,755)
2072 %attr(755,root,root) %{_libdir}/libQtMultimedia.so.*.*
2073 %attr(755,root,root) %ghost %{_libdir}/libQtMultimedia.so.4
2074
2075 %files -n QtNetwork
2076 %defattr(644,root,root,755)
2077 %attr(755,root,root) %{_libdir}/libQtNetwork.so.*.*
2078 %attr(755,root,root) %ghost %{_libdir}/libQtNetwork.so.4
2079 %dir %{_qtdir}/plugins/bearer
2080 %attr(755,root,root) %{_qtdir}/plugins/bearer/*.so
2081
2082 %files -n QtOpenGL
2083 %defattr(644,root,root,755)
2084 %attr(755,root,root) %{_libdir}/libQtOpenGL.so.*.*
2085 %attr(755,root,root) %ghost %{_libdir}/libQtOpenGL.so.4
2086 %attr(755,root,root) %{_qtdir}/plugins/graphicssystems/libqglgraphicssystem.so
2087
2088 %files -n QtOpenVG
2089 %defattr(644,root,root,755)
2090 %attr(755,root,root) %{_libdir}/libQtOpenVG.so.*.*
2091 %attr(755,root,root) %ghost %{_libdir}/libQtOpenVG.so.4
2092
2093 %files -n QtScript
2094 %defattr(644,root,root,755)
2095 %attr(755,root,root) %{_libdir}/libQtScript.so.*.*
2096 %attr(755,root,root) %ghost %{_libdir}/libQtScript.so.4
2097 %dir %{_qtdir}/plugins/script
2098
2099 %files -n QtScriptTools
2100 %defattr(644,root,root,755)
2101 %attr(755,root,root) %{_libdir}/libQtScriptTools.so.*.*
2102 %attr(755,root,root) %ghost %{_libdir}/libQtScriptTools.so.4
2103
2104 %files -n QtSql
2105 %defattr(644,root,root,755)
2106 %attr(755,root,root) %{_libdir}/libQtSql.so.*.*
2107 %attr(755,root,root) %ghost %{_libdir}/libQtSql.so.4
2108 %dir %{_qtdir}/plugins/sqldrivers
2109
2110 %if %{with mysql}
2111 %files -n QtSql-mysql
2112 %defattr(644,root,root,755)
2113 %attr(755,root,root) %{_qtdir}/plugins/sqldrivers/libqsqlmysql.so
2114 %endif
2115
2116 %if %{with pgsql}
2117 %files -n QtSql-pgsql
2118 %defattr(644,root,root,755)
2119 %attr(755,root,root) %{_qtdir}/plugins/sqldrivers/libqsqlpsql.so
2120 %endif
2121
2122 %if %{with sqlite}
2123 %files -n QtSql-sqlite
2124 %defattr(644,root,root,755)
2125 %attr(755,root,root) %{_qtdir}/plugins/sqldrivers/libqsqlite2.so
2126 %endif
2127
2128 %if %{with sqlite3}
2129 %files -n QtSql-sqlite3
2130 %defattr(644,root,root,755)
2131 %attr(755,root,root) %{_qtdir}/plugins/sqldrivers/libqsqlite.so
2132 %endif
2133
2134 %if %{with ibase}
2135 %files -n QtSql-ibase
2136 %defattr(644,root,root,755)
2137 %attr(755,root,root) %{_qtdir}/plugins/sqldrivers/libqsqlibase.so
2138 %endif
2139
2140 %if %{with odbc}
2141 %files -n QtSql-odbc
2142 %defattr(644,root,root,755)
2143 %attr(755,root,root) %{_qtdir}/plugins/sqldrivers/libqsqlodbc.so
2144 %endif
2145
2146 %files -n QtSql-tds
2147 %defattr(644,root,root,755)
2148 %attr(755,root,root) %{_qtdir}/plugins/sqldrivers/libqsqltds.so
2149
2150 %files -n QtSvg
2151 %defattr(644,root,root,755)
2152 %attr(755,root,root) %{_libdir}/libQtSvg.so.*.*
2153 %attr(755,root,root) %ghost %{_libdir}/libQtSvg.so.4
2154 %attr(755,root,root) %{_qtdir}/plugins/iconengines/libqsvgicon.so
2155 %attr(755,root,root) %{_qtdir}/plugins/imageformats/libqsvg.so
2156
2157 %files -n QtTest
2158 %defattr(644,root,root,755)
2159 %attr(755,root,root) %{_libdir}/libQtTest.so.*.*
2160 %attr(755,root,root) %ghost %{_libdir}/libQtTest.so.4
2161
2162 %files -n QtUiTools
2163 %defattr(644,root,root,755)
2164 %attr(755,root,root) %{_libdir}/libQtUiTools.so.*.*
2165 %attr(755,root,root) %ghost %{_libdir}/libQtUiTools.so.4
2166
2167 %files -n QtWebKit
2168 %defattr(644,root,root,755)
2169 %attr(755,root,root) %{_libdir}/libQtWebKit.so.*.*
2170 %attr(755,root,root) %ghost %{_libdir}/libQtWebKit.so.4
2171
2172 %files -n QtXml
2173 %defattr(644,root,root,755)
2174 %attr(755,root,root) %{_libdir}/libQtXml.so.*.*
2175 %attr(755,root,root) %ghost %{_libdir}/libQtXml.so.4
2176
2177 %files -n QtXmlPatterns
2178 %defattr(644,root,root,755)
2179 %attr(755,root,root) %{_qtdir}/bin/xmlpatterns
2180 %attr(755,root,root) %{_qtdir}/bin/xmlpatternsvalidator
2181 %attr(755,root,root) %{_bindir}/xmlpatternsvalidator
2182 %attr(755,root,root) %{_libdir}/libQtXmlPatterns.so.*.*
2183 %attr(755,root,root) %ghost %{_libdir}/libQtXmlPatterns.so.4
2184
2185 %files assistant
2186 %defattr(644,root,root,755)
2187 %attr(755,root,root) %{_bindir}/assistant-qt4
2188 %attr(755,root,root) %{_bindir}/pixeltool
2189 %attr(755,root,root) %{_bindir}/qcollectiongenerator
2190 %attr(755,root,root) %{_qtdir}/bin/assistant
2191 %attr(755,root,root) %{_qtdir}/bin/pixeltool
2192 %attr(755,root,root) %{_qtdir}/bin/qcollectiongenerator
2193 %lang(cs) %{_localedir}/cs/LC_MESSAGES/qt4-assistant.qm
2194 %lang(da) %{_localedir}/da/LC_MESSAGES/qt4-assistant.qm
2195 %lang(de) %{_localedir}/de/LC_MESSAGES/qt4-assistant.qm
2196 %lang(fr) %{_localedir}/fr/LC_MESSAGES/qt4-assistant.qm
2197 %lang(hu) %{_localedir}/hu/LC_MESSAGES/qt4-assistant.qm
2198 %lang(ja) %{_localedir}/ja/LC_MESSAGES/qt4-assistant.qm
2199 %lang(ko) %{_localedir}/ko/LC_MESSAGES/qt4-assistant.qm
2200 %lang(pl) %{_localedir}/pl/LC_MESSAGES/qt4-assistant.qm
2201 %lang(ru) %{_localedir}/ru/LC_MESSAGES/qt4-assistant.qm
2202 %lang(sl) %{_localedir}/sl/LC_MESSAGES/qt4-assistant.qm
2203 %lang(uk) %{_localedir}/uk/LC_MESSAGES/qt4-assistant.qm
2204 %lang(zh_CN) %{_localedir}/zh_CN/LC_MESSAGES/qt4-assistant.qm
2205 %lang(zh_TW) %{_localedir}/zh_TW/LC_MESSAGES/qt4-assistant.qm
2206 %{_desktopdir}/assistant-qt4.desktop
2207 %{_iconsdir}/hicolor/*/apps/assistant-qt4.png
2208
2209 %files build
2210 %defattr(644,root,root,755)
2211 %attr(755,root,root) %{_bindir}/moc-qt4
2212 %attr(755,root,root) %{_bindir}/qdoc3
2213 %attr(755,root,root) %{_bindir}/qt3to4
2214 %attr(755,root,root) %{_bindir}/rcc
2215 %attr(755,root,root) %{_bindir}/uic-qt4
2216 %attr(755,root,root) %{_qtdir}/bin/moc
2217 %attr(755,root,root) %{_qtdir}/bin/qdoc3
2218 %attr(755,root,root) %{_qtdir}/bin/qt3to4
2219 %attr(755,root,root) %{_qtdir}/bin/rcc
2220 %attr(755,root,root) %{_qtdir}/bin/uic
2221 #find better place?
2222 %attr(755,root,root) %{_bindir}/qttracereplay
2223 %attr(755,root,root) %{_qtdir}/bin/qttracereplay
2224 %{_datadir}/qt4/q3porting.xml
2225
2226 %files designer
2227 %defattr(644,root,root,755)
2228 %attr(755,root,root) %{_bindir}/designer-qt4
2229 %attr(755,root,root) %{_qtdir}/bin/designer
2230 %lang(cs) %{_localedir}/cs/LC_MESSAGES/qt4-designer.qm
2231 %lang(de) %{_localedir}/de/LC_MESSAGES/qt4-designer.qm
2232 %lang(fr) %{_localedir}/fr/LC_MESSAGES/qt4-designer.qm
2233 %lang(hu) %{_localedir}/hu/LC_MESSAGES/qt4-designer.qm
2234 %lang(ja) %{_localedir}/ja/LC_MESSAGES/qt4-designer.qm
2235 %lang(ko) %{_localedir}/ko/LC_MESSAGES/qt4-designer.qm
2236 %lang(pl) %{_localedir}/pl/LC_MESSAGES/qt4-designer.qm
2237 %lang(ru) %{_localedir}/ru/LC_MESSAGES/qt4-designer.qm
2238 %lang(sl) %{_localedir}/sl/LC_MESSAGES/qt4-designer.qm
2239 %lang(uk) %{_localedir}/uk/LC_MESSAGES/qt4-designer.qm
2240 %lang(zh_CN) %{_localedir}/zh_CN/LC_MESSAGES/qt4-designer.qm
2241 %lang(zh_TW) %{_localedir}/zh_TW/LC_MESSAGES/qt4-designer.qm
2242 %{_desktopdir}/designer-qt4.desktop
2243 %{_pixmapsdir}/designer-qt4.png
2244
2245 %files linguist
2246 %defattr(644,root,root,755)
2247 %attr(755,root,root) %{_bindir}/findtr-qt4
2248 %attr(755,root,root) %{_bindir}/linguist-qt4
2249 %attr(755,root,root) %{_bindir}/lrelease-qt4
2250 %attr(755,root,root) %{_bindir}/lupdate-qt4
2251 %attr(755,root,root) %{_qtdir}/bin/findtr
2252 %attr(755,root,root) %{_qtdir}/bin/linguist
2253 %attr(755,root,root) %{_qtdir}/bin/lconvert
2254 %attr(755,root,root) %{_qtdir}/bin/lrelease
2255 %attr(755,root,root) %{_qtdir}/bin/lupdate
2256 %lang(cs) %{_localedir}/cs/LC_MESSAGES/qt4-linguist.qm
2257 %lang(de) %{_localedir}/de/LC_MESSAGES/qt4-linguist.qm
2258 %lang(fr) %{_localedir}/fr/LC_MESSAGES/qt4-linguist.qm
2259 %lang(hu) %{_localedir}/hu/LC_MESSAGES/qt4-linguist.qm
2260 %lang(ja) %{_localedir}/ja/LC_MESSAGES/qt4-linguist.qm
2261 %lang(ko) %{_localedir}/ko/LC_MESSAGES/qt4-linguist.qm
2262 %lang(pl) %{_localedir}/pl/LC_MESSAGES/qt4-linguist.qm
2263 %lang(ru) %{_localedir}/ru/LC_MESSAGES/qt4-linguist.qm
2264 %lang(sl) %{_localedir}/sl/LC_MESSAGES/qt4-linguist.qm
2265 %lang(uk) %{_localedir}/uk/LC_MESSAGES/qt4-linguist.qm
2266 %lang(zh_CN) %{_localedir}/zh_CN/LC_MESSAGES/qt4-linguist.qm
2267 %lang(zh_TW) %{_localedir}/zh_TW/LC_MESSAGES/qt4-linguist.qm
2268 %{_datadir}/qt4/phrasebooks
2269 %{_desktopdir}/linguist-qt4.desktop
2270 %{_iconsdir}/hicolor/*/apps/linguist-qt4.png
2271
2272 %if %{without system_phonon}
2273 %files phonon
2274 %defattr(644,root,root,755)
2275 %attr(755,root,root) %{_libdir}/libphonon.so.*.*
2276 %attr(755,root,root) %ghost %{_libdir}/libphonon.so.4
2277 %dir %{_qtdir}/plugins/phonon_backend
2278 %attr(755,root,root) %{_qtdir}/plugins/phonon_backend/libphonon_gstreamer.so
2279 %endif
2280
2281 %files qmake
2282 %defattr(644,root,root,755)
2283 %attr(755,root,root) %{_bindir}/qmake-qt4
2284 %attr(755,root,root) %{_qtdir}/bin/qmake
2285 %{_datadir}/qt4/mkspecs
2286 %{_qtdir}/mkspecs
2287
2288 %files qtconfig
2289 %defattr(644,root,root,755)
2290 %attr(755,root,root) %{_bindir}/qtconfig-qt4
2291 %attr(755,root,root) %{_qtdir}/bin/qtconfig
2292 %lang(hu) %{_localedir}/hu/LC_MESSAGES/qt4-qtconfig.qm
2293 %lang(ja) %{_localedir}/ja/LC_MESSAGES/qt4-qtconfig.qm
2294 %lang(ko) %{_localedir}/ko/LC_MESSAGES/qt4-qtconfig.qm
2295 %lang(pl) %{_localedir}/pl/LC_MESSAGES/qt4-qtconfig.qm
2296 %lang(ru) %{_localedir}/ru/LC_MESSAGES/qt4-qtconfig.qm
2297 %lang(sl) %{_localedir}/sl/LC_MESSAGES/qt4-qtconfig.qm
2298 %lang(uk) %{_localedir}/uk/LC_MESSAGES/qt4-qtconfig.qm
2299 %lang(zh_CN) %{_localedir}/zh_CN/LC_MESSAGES/qt4-qtconfig.qm
2300 %lang(zh_TW) %{_localedir}/zh_TW/LC_MESSAGES/qt4-qtconfig.qm
2301 %{_desktopdir}/qtconfig-qt4.desktop
2302 %{_pixmapsdir}/qtconfig-qt4.png
2303
2304 %files -n qvfb
2305 %defattr(644,root,root,755)
2306 %attr(755,root,root) %{_bindir}/qvfb
2307 %attr(755,root,root) %{_qtdir}/bin/qvfb
2308 %lang(hu) %{_localedir}/hu/LC_MESSAGES/qt4-qvfb.qm
2309 %lang(ja) %{_localedir}/ja/LC_MESSAGES/qt4-qvfb.qm
2310 %lang(ko) %{_localedir}/ko/LC_MESSAGES/qt4-qvfb.qm
2311 %lang(pl) %{_localedir}/pl/LC_MESSAGES/qt4-qvfb.qm
2312 %lang(ru) %{_localedir}/ru/LC_MESSAGES/qt4-qvfb.qm
2313 %lang(sl) %{_localedir}/sl/LC_MESSAGES/qt4-qvfb.qm
2314 %lang(uk) %{_localedir}/uk/LC_MESSAGES/qt4-qvfb.qm
2315 %lang(zh_CN) %{_localedir}/zh_CN/LC_MESSAGES/qt4-qvfb.qm
2316 %lang(zh_TW) %{_localedir}/zh_TW/LC_MESSAGES/qt4-qvfb.qm
2317
2318 %files doc
2319 %defattr(644,root,root,755)
2320 %{_docdir}/%{name}-doc
2321 %{_qtdir}/doc
2322
2323 %files -n QtCLucene-devel -f QtCLucene-devel.files
2324 %defattr(644,root,root,755)
2325
2326 %files -n Qt3Support-devel -f Qt3Support-devel.files
2327 %defattr(644,root,root,755)
2328 %attr(755,root,root) %{_bindir}/uic3
2329 %attr(755,root,root) %{_qtdir}/bin/uic3
2330
2331 %files -n QtCore-devel -f QtCore-devel.files
2332 %defattr(644,root,root,755)
2333
2334 %files -n QtDBus-devel -f QtDBus-devel.files
2335 %defattr(644,root,root,755)
2336
2337 %files -n QtDeclarative-devel -f QtDeclarative-devel.files
2338 %defattr(644,root,root,755)
2339
2340 %files -n QtDesigner-devel -f QtDesigner-devel.files
2341 %defattr(644,root,root,755)
2342
2343 %files -n QtGui-devel -f QtGui-devel.files
2344 %defattr(644,root,root,755)
2345
2346 %files -n QtHelp-devel -f QtHelp-devel.files
2347 %defattr(644,root,root,755)
2348
2349 %files -n QtMultimedia-devel -f QtMultimedia-devel.files
2350 %defattr(644,root,root,755)
2351
2352 %files -n QtNetwork-devel -f QtNetwork-devel.files
2353 %defattr(644,root,root,755)
2354
2355 %files -n QtOpenGL-devel -f QtOpenGL-devel.files
2356 %defattr(644,root,root,755)
2357
2358 %files -n QtOpenVG-devel -f QtOpenVG-devel.files
2359 %defattr(644,root,root,755)
2360
2361 %files -n QtScript-devel -f QtScript-devel.files
2362 %defattr(644,root,root,755)
2363
2364 %files -n QtScriptTools-devel -f QtScriptTools-devel.files
2365 %defattr(644,root,root,755)
2366
2367 %files -n QtSql-devel -f QtSql-devel.files
2368 %defattr(644,root,root,755)
2369
2370 %files -n QtSvg-devel -f QtSvg-devel.files
2371 %defattr(644,root,root,755)
2372
2373 %files -n QtTest-devel -f QtTest-devel.files
2374 %defattr(644,root,root,755)
2375
2376 %files -n QtUiTools-devel -f QtUiTools-devel.files
2377 %defattr(644,root,root,755)
2378
2379 %files -n QtWebKit-devel -f QtWebKit-devel.files
2380 %defattr(644,root,root,755)
2381
2382 %files -n QtXml-devel -f QtXml-devel.files
2383 %defattr(644,root,root,755)
2384
2385 %files -n QtXmlPatterns-devel -f QtXmlPatterns-devel.files
2386 %defattr(644,root,root,755)
2387
2388 %if %{without system_phonon}
2389 %files phonon-devel -f phonon-devel.files
2390 %defattr(644,root,root,755)
2391 %endif
2392
2393 %if %{with static_libs}
2394 %files -n Qt3Support-static
2395 %defattr(644,root,root,755)
2396 %{_libdir}/libQt3Support.a
2397
2398 #%files -n QtCLucene-static
2399 #%defattr(644,root,root,755)
2400 #%{_libdir}/libQtCLucene.a
2401
2402 %files -n QtCore-static
2403 %defattr(644,root,root,755)
2404 %{_libdir}/libQtCore.a
2405
2406 %files -n QtDBus-static
2407 %defattr(644,root,root,755)
2408 %{_libdir}/libQtDBus.a
2409
2410 %files -n QtDesigner-static
2411 %defattr(644,root,root,755)
2412 %{_libdir}/libQtDesigner.a
2413 %{_libdir}/libQtDesignerComponents.a
2414
2415 %files -n QtGui-static
2416 %defattr(644,root,root,755)
2417 %{_libdir}/libQtGui.a
2418
2419 %files -n QtHelp-static
2420 %defattr(644,root,root,755)
2421 %{_libdir}/libQtHelp.a
2422
2423 %files -n QtMultimedia-static
2424 %defattr(644,root,root,755)
2425 %{_libdir}/libQtMultimedia.a
2426
2427 %files -n QtNetwork-static
2428 %defattr(644,root,root,755)
2429 %{_libdir}/libQtNetwork.a
2430
2431 %files -n QtOpenGL-static
2432 %defattr(644,root,root,755)
2433 %{_libdir}/libQtOpenGL.a
2434
2435 %files -n QtOpenVG-static
2436 %defattr(644,root,root,755)
2437 %{_libdir}/libQtOpenVG.a
2438
2439 %files -n QtScript-static
2440 %defattr(644,root,root,755)
2441 %{_libdir}/libQtScript.a
2442
2443 %files -n QtScriptTools-static
2444 %defattr(644,root,root,755)
2445 %{_libdir}/libQtScriptTools.a
2446
2447 %files -n QtSql-static
2448 %defattr(644,root,root,755)
2449 %{_libdir}/libQtSql.a
2450
2451 %files -n QtSvg-static
2452 %defattr(644,root,root,755)
2453 %{_libdir}/libQtSvg.a
2454
2455 %files -n QtTest-static
2456 %defattr(644,root,root,755)
2457 %{_libdir}/libQtTest.a
2458
2459 %files -n QtUiTools-static
2460 %defattr(644,root,root,755)
2461 %{_libdir}/libQtUiTools.a
2462
2463 %files -n QtWebKit-static
2464 %defattr(644,root,root,755)
2465 %{_libdir}/libQtWebKit.a
2466
2467 %files -n QtDeclarative-static
2468 %defattr(644,root,root,755)
2469 %{_libdir}/libQtDeclarative.a
2470
2471 %files -n QtXml-static
2472 %defattr(644,root,root,755)
2473 %{_libdir}/libQtXml.a
2474
2475 %files -n QtXmlPatterns-static
2476 %defattr(644,root,root,755)
2477 %{_libdir}/libQtXmlPatterns.a
2478 %endif
2479
2480 %files demos -f demos.files
2481 %defattr(644,root,root,755)
2482
2483 %files examples -f examples.files
2484 %defattr(644,root,root,755)
This page took 0.218442 seconds and 4 git commands to generate.