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