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