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