From 7522890ca5e15bc3481eb97399fec41503166997 Mon Sep 17 00:00:00 2001 From: Automatic Build System Date: Sat, 6 Jan 2024 05:31:08 +0100 Subject: [PATCH] automatic version update by autodist [release 4.8.6-1mamba;Mon Apr 28 2014] --- README.md | 3 + libqt4-4.5.1-rendering-regression.patch | 26 + libqt4-4.8.1-fix_qvfb_link.patch | 11 + libqt4-4.8.1-webkit-glib-2.32.patch | 11 + libqt4-4.8.2-gcc-4.7-webkit-no_Werror.patch | 12 + libqt4-4.8.2-ld-gold.patch | 22 + ...after-converto32-in-eglcreatesurface.patch | 629 +++++++ libqt4-assistant-icon32x32.png | Bin 0 -> 2510 bytes libqt4-assistant.desktop | 136 ++ libqt4-designer-icon128x128.png | Bin 0 -> 14743 bytes libqt4-designer.desktop | 133 ++ libqt4-development-qt4.directory | 5 + libqt4-development-qt4.menu | 10 + libqt4-linguist-icon32x32.png | Bin 0 -> 2322 bytes libqt4-linguist.desktop | 128 ++ libqt4-profile.csh | 10 + libqt4-profile.sh | 13 + libqt4-qt4logo-icon64x64.png | Bin 0 -> 4915 bytes libqt4-qvfb.desktop | 12 + libqt4.spec | 1440 +++++++++++++++++ 20 files changed, 2601 insertions(+) create mode 100644 libqt4-4.5.1-rendering-regression.patch create mode 100644 libqt4-4.8.1-fix_qvfb_link.patch create mode 100644 libqt4-4.8.1-webkit-glib-2.32.patch create mode 100644 libqt4-4.8.2-gcc-4.7-webkit-no_Werror.patch create mode 100644 libqt4-4.8.2-ld-gold.patch create mode 100644 libqt4-4.8.4-set-alpha-flags-after-converto32-in-eglcreatesurface.patch create mode 100644 libqt4-assistant-icon32x32.png create mode 100644 libqt4-assistant.desktop create mode 100644 libqt4-designer-icon128x128.png create mode 100644 libqt4-designer.desktop create mode 100644 libqt4-development-qt4.directory create mode 100644 libqt4-development-qt4.menu create mode 100644 libqt4-linguist-icon32x32.png create mode 100644 libqt4-linguist.desktop create mode 100644 libqt4-profile.csh create mode 100644 libqt4-profile.sh create mode 100644 libqt4-qt4logo-icon64x64.png create mode 100644 libqt4-qvfb.desktop create mode 100644 libqt4.spec diff --git a/README.md b/README.md index 693bc44..0ab4dd1 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # libqt4 +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + diff --git a/libqt4-4.5.1-rendering-regression.patch b/libqt4-4.5.1-rendering-regression.patch new file mode 100644 index 0000000..5517a19 --- /dev/null +++ b/libqt4-4.5.1-rendering-regression.patch @@ -0,0 +1,26 @@ +qt-bugs@ issue : none (not yet) +Qt Software task ID : none (not yet) +bugs.kde.org number : 190485 (at least) +applied: yes +author: Alexis Menard + +This patch fix the regression introduced in 4.5.1 with SVG rendering. +The problem appear when a gradient reference an another gradient which is after +in the svg. + +Please clear your plasma cache as well. + +This patch is already in 4.5 branch so it will be in 4.5.2. + +Index: src/svg/qsvgstyle.cpp +=================================================================== +--- src/svg/qsvgstyle.cpp (revision 958572) ++++ src/svg/qsvgstyle.cpp (working copy) +@@ -808,6 +808,7 @@ + static_cast(prop); + st->resolveStops(); + m_gradient->setStops(st->qgradient()->stops()); ++ m_gradientStopsSet = st->gradientStopsSet(); + } + } + m_link = QString(); diff --git a/libqt4-4.8.1-fix_qvfb_link.patch b/libqt4-4.8.1-fix_qvfb_link.patch new file mode 100644 index 0000000..b7de5e7 --- /dev/null +++ b/libqt4-4.8.1-fix_qvfb_link.patch @@ -0,0 +1,11 @@ +--- qt-everywhere-opensource-src-4.8.1/tools/qvfb/qvfb.pro.orig 2012-04-04 17:49:48.200034366 +0200 ++++ qt-everywhere-opensource-src-4.8.1/tools/qvfb/qvfb.pro 2012-04-04 17:49:52.759986236 +0200 +@@ -38,8 +38,6 @@ + + !embedded { + DEFINES += QT_NO_QWS_SIGNALHANDLER +- HEADERS += ../../src/gui/embedded/qlock_p.h +- SOURCES += ../../src/gui/embedded/qlock.cpp + } + + include(../shared/deviceskin/deviceskin.pri) diff --git a/libqt4-4.8.1-webkit-glib-2.32.patch b/libqt4-4.8.1-webkit-glib-2.32.patch new file mode 100644 index 0000000..8f108a6 --- /dev/null +++ b/libqt4-4.8.1-webkit-glib-2.32.patch @@ -0,0 +1,11 @@ +--- webkit-1.6.1/Source/JavaScriptCore/wtf/gobject/GTypedefs.h~ 2011-09-26 14:54:57.000000000 -0600 ++++ webkit-1.6.1/Source/JavaScriptCore/wtf/gobject/GTypedefs.h 2011-11-20 06:30:29.608190397 -0700 +@@ -52,7 +52,7 @@ + typedef struct _GHashTable GHashTable; + typedef struct _GInputStream GInputStream; + typedef struct _GList GList; +-typedef struct _GMutex GMutex; ++typedef union _GMutex GMutex; + typedef struct _GPatternSpec GPatternSpec; + typedef struct _GPollableOutputStream GPollableOutputStream; + typedef struct _GSocketClient GSocketClient; diff --git a/libqt4-4.8.2-gcc-4.7-webkit-no_Werror.patch b/libqt4-4.8.2-gcc-4.7-webkit-no_Werror.patch new file mode 100644 index 0000000..ef5d55d --- /dev/null +++ b/libqt4-4.8.2-gcc-4.7-webkit-no_Werror.patch @@ -0,0 +1,12 @@ +diff -up qt-everywhere-opensource-src-4.8.1/src/3rdparty/webkit/Source/WebKit.pri.no_Werror qt-everywhere-opensource-src-4.8.1/src/3rdparty/webkit/Source/WebKit.pri +--- qt-everywhere-opensource-src-4.8.1/src/3rdparty/webkit/Source/WebKit.pri.no_Werror 2012-03-14 15:01:29.000000000 +0100 ++++ qt-everywhere-opensource-src-4.8.1/src/3rdparty/webkit/Source/WebKit.pri 2012-03-28 17:12:33.391294004 +0200 +@@ -102,8 +102,6 @@ CONFIG -= warn_on + + # Treat warnings as errors on x86/Linux/GCC + linux-g++* { +- !CONFIG(standalone_package):isEqual(QT_ARCH,x86_64)|isEqual(QT_ARCH,i386): QMAKE_CXXFLAGS += -Werror +- + greaterThan(QT_GCC_MAJOR_VERSION, 3):greaterThan(QT_GCC_MINOR_VERSION, 5) { + if (!contains(QMAKE_CXXFLAGS, -std=c++0x) && !contains(QMAKE_CXXFLAGS, -std=gnu++0x)) { + # We need to deactivate those warnings because some names conflicts with upcoming c++0x types (e.g.nullptr). diff --git a/libqt4-4.8.2-ld-gold.patch b/libqt4-4.8.2-ld-gold.patch new file mode 100644 index 0000000..0e3897e --- /dev/null +++ b/libqt4-4.8.2-ld-gold.patch @@ -0,0 +1,22 @@ +diff -up qt-everywhere-opensource-src-4.8.0/src/3rdparty/webkit/Source/common.pri.me qt-everywhere-opensource-src-4.8.0/src/3rdparty/webkit/Source/common.pri +--- qt-everywhere-opensource-src-4.8.0/src/3rdparty/webkit/Source/common.pri.me 2012-01-24 13:05:50.460890750 +0100 ++++ qt-everywhere-opensource-src-4.8.0/src/3rdparty/webkit/Source/common.pri 2012-01-24 13:19:08.836799974 +0100 +@@ -3,12 +3,12 @@ + contains(JAVASCRIPTCORE_JIT,yes): DEFINES+=ENABLE_JIT=1 + contains(JAVASCRIPTCORE_JIT,no): DEFINES+=ENABLE_JIT=0 + +-linux-g++ { +-isEmpty($$(SBOX_DPKG_INST_ARCH)):exists(/usr/bin/ld.gold) { +- message(Using gold linker) +- QMAKE_LFLAGS+=-fuse-ld=gold +-} +-} ++#linux-g++ { ++#isEmpty($$(SBOX_DPKG_INST_ARCH)):exists(/usr/bin/ld.gold) { ++# message(Using gold linker) ++# QMAKE_LFLAGS+=-fuse-ld=gold ++#} ++#} + + # We use this flag on production branches + # See https://bugs.webkit.org/show_bug.cgi?id=60824 diff --git a/libqt4-4.8.4-set-alpha-flags-after-converto32-in-eglcreatesurface.patch b/libqt4-4.8.4-set-alpha-flags-after-converto32-in-eglcreatesurface.patch new file mode 100644 index 0000000..bb76f92 --- /dev/null +++ b/libqt4-4.8.4-set-alpha-flags-after-converto32-in-eglcreatesurface.patch @@ -0,0 +1,629 @@ + + + + + + + + + + Sources of qt (Project Project:KDE:Mer_Extras) - MeeGo Community Open Build Service + + + + + + + + + + + + + + + + + + + +
+
+ Home_greyMeeGo Community Open Build Service + > + Projects + > + + Project:KDE:Mer_Extras + > + qt + > + Sources +
+ +
+ Register | + Login +
+

+ + + +

+

+ + +

+

+ +
+
+ +
+ + +
+
+ + + +
+

+ + Files could not be expanded: conflict in file qt.spec +

+
+ + +
+
+ + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + +

Source Files + + (show merged sources derived from linked package) + +

+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FilenameSizeChangedActions
+ Makefile + 154 Bytes10 months agoDownload +
+ _link + 139 Bytes6 months agoDownload +
+ assistant.desktop + 3.3 KB19 months agoDownload +
+ assistant.png + 2 KB19 months agoDownload +
+ designer.desktop + 3.6 KB19 months agoDownload +
+ designer.png + 1.4 KB19 months agoDownload +
+ linguist.desktop + 3.2 KB19 months agoDownload +
+ linguist.png + 1.3 KB19 months agoDownload +
+ macros.qmake + 891 Bytes19 months agoDownload +
+ qt-4.8.0-Adapted-XInput2.0-code-to-support-multiple-connected.patch + 43.4 KB6 months agoDownload +
+ qt-4.8.0-Avoid-symbol-stripping-by-default.patch + 859 Bytes6 months agoDownload +
+ qt-4.8.0-BMC-15323-add-support-for-QT_USE_DRAG_DISTANCE-envir.patch + 1007 Bytes6 months agoDownload +
+ qt-4.8.0-Description-Avoid-.pc-directories-created-by-quilt.-.patch + 879 Bytes6 months agoDownload +
+ qt-4.8.0-Description-Fix-sqlite-config.test.patch + 674 Bytes6 months agoDownload +
+ qt-4.8.0-Description-MISSING-BMC-3183-QTBUG-11158-QTBUG-11462.patch + 897 Bytes6 months agoDownload +
+ qt-4.8.0-Description-Make-it-so-that-the-QIcon-loader-honors-.patch + 1.9 KB6 months agoDownload +
+ qt-4.8.0-Description-rewrite-INV_PREMUL-to-fix-a-glass-jaw-on.patch + 1.6 KB6 months agoDownload +
+ qt-4.8.0-Description-send-Q_ASSERT-qDebug-qWarning-and-qFatal.patch + 2.6 KB6 months agoDownload +
+ qt-4.8.0-Description-translations-fails-to-build-under-autobu.patch + 12.4 KB6 months agoDownload +
+ qt-4.8.0-Hardcode-TMPDIR-to-var-tmp-BMC-13603.patch + 1.2 KB6 months agoDownload +
+ qt-4.8.0-add-bounds-checking-in-soft-scale.patch + 985 Bytes6 months agoDownload +
+ qt-4.8.0-add-scaling-based-on-screen-size.patch + 2.1 KB6 months agoDownload +
+ qt-4.8.0-disable-subpixel-support-to-force-alpha-only-texture.patch + 1.8 KB6 months agoDownload +
+ qt-4.8.0-modify-alpha-checking-for-GlSurfaceCreateWithAlpha.patch + 2.4 KB6 months agoDownload +
+ qt-4.8.0-set-alpha-flags-after-converto32-in-eglcreatesurface.patch + 1.8 KB6 months agoDownload +
+ qt-4.8.0-xinput2-support.patch + 103.4 KB6 months agoDownload +
+ qt-everywhere-opensource-src-4.8.0.tar.gz + 227.5 MB6 months ago +
+ qt-rpmlintrc + 197 Bytes10 months agoDownload +
+ qt.changes + 17 KB6 months agoDownload +
+ qt.spec + 62.3 KB6 months agoDownload +
+ qt.yaml + 66.6 KB6 months agoDownload +
+ qtdemo.desktop + 162 Bytes19 months agoDownload +
+ qtdemo.png + 1.4 KB19 months agoDownload +
+ + +

Latest Revision

+

+ + Mdfe?size=20 + mdfe (mdfe) + committed + 6 months ago (revision 11)
+ osc copypac from project:home:w00t:branches:Mer:fake:Core:i586 package:qt revision:11
+ Brick + Show diff + +

+ +
+ + + +
+
+ + + +
+ + + + + + + +From e0893c1eb7b1081f4a83fa097ca53dd3aebee502 Mon Sep 17 00:00:00 2001 +From: Robin Burchell +Date: Sun, 13 Nov 2011 12:50:43 +0100 +Subject: [PATCH] set alpha flags after converto32 in eglcreatesurface + +TODO: this patch is probably wrong +--- + src/gui/egl/qegl_x11.cpp | 1 + + src/gui/image/qpixmap_x11.cpp | 4 ++++ + src/gui/image/qpixmap_x11_p.h | 2 ++ + 3 files changed, 7 insertions(+), 0 deletions(-) + +diff --git a/src/gui/egl/qegl_x11.cpp b/src/gui/egl/qegl_x11.cpp +index c0f8a24..0b601d1 100644 +--- a/src/gui/egl/qegl_x11.cpp ++++ b/src/gui/egl/qegl_x11.cpp +@@ -440,6 +440,7 @@ EGLSurface QEgl::createSurface(QPaintDevice *device, EGLConfig config, const QEg + qWarning("Warning: EGLConfig's depth (32) != pixmap's depth (%d), converting to ARGB32", + x11PixmapData->depth()); + x11PixmapData->convertToARGB32(true); ++ x11PixmapData->setFlagsWithAlpha(); + } else + #endif + { +diff --git a/src/gui/image/qpixmap_x11.cpp b/src/gui/image/qpixmap_x11.cpp +index 0e1401c..4b6afeb 100644 +--- a/src/gui/image/qpixmap_x11.cpp ++++ b/src/gui/image/qpixmap_x11.cpp +@@ -2423,5 +2423,9 @@ QPixmap QPixmap::fromX11Pixmap(Qt::HANDLE pixmap, QPixmap::ShareMode mode) + return QPixmap(data); + } + ++void QX11PixmapData::setFlagsWithAlpha(){ ++ flags |= QX11PixmapData::GlSurfaceCreatedWithAlpha; ++} ++ + + QT_END_NAMESPACE +diff --git a/src/gui/image/qpixmap_x11_p.h b/src/gui/image/qpixmap_x11_p.h +index 7cd80e6..2665932 100644 +--- a/src/gui/image/qpixmap_x11_p.h ++++ b/src/gui/image/qpixmap_x11_p.h +@@ -101,6 +101,8 @@ public: + #ifndef QT_NO_XRENDER + void convertToARGB32(bool preserveContents = true); + #endif ++ void setFlagsWithAlpha(); ++ + + protected: + int metric(QPaintDevice::PaintDeviceMetric metric) const; +-- +1.7.7.4 + diff --git a/libqt4-assistant-icon32x32.png b/libqt4-assistant-icon32x32.png new file mode 100644 index 0000000000000000000000000000000000000000..f05d91680bb0663fb4b82085abbec32bc35f38ff GIT binary patch literal 2510 zcmV;<2{HDGP))QAVAmb#O1-QXs`Gkwdj%|CxXgVw03yneNc5IC zq&o8SpPZ9Ih#K%>(^7e3O!ZX>WIE+$JI>lVAcO{!qP!Hx4dX~5v8)7^Y@sis>2KEv zA`}Y8cN5iydvT%WUVOzif9qR5p2n%F>g-W9oI4$5r(RHVLWsMJF;lNdKx^ZHFxnV_ z086BabONm-j4(v{tW{kBsidSWY13j!Iuj9tZ3=gJ9WMy*LyslbZ!ccv?l@C&7(eD7 z`_Uf%IbiD5L}&nGFhXE3Q34gjh*TV;K?p(Ik}T^=VQInaY=cVK18L~#Nw8vN25o!z zex1%V4E9*8>2(-8b|eDyYkdU(NC{yi&`J;*iBOVM++v`og~>6OhaW0YUW&j#WE9eJ z=pTr2-L5V=`{LvlUHrfzGB!jq0;1PUKmr1YB2XbH1997;uQ$c;vo3%8lTUX~KP`dA zpok}-(Fn;NkGOlnH6g@?3lccX*TN57TosT^D{|8=<=GW< zw)GHC&$DHBozdwsxy34}jK|&IZ?N~f9@o9A!iqjk@x(f6<$zH5j6B@vmeRWMO;=yP zYW2YSp4I*9y05wFtt){~2_bH}fC~fy@B)V*lq542#|{c2Kf&x&o(*q1L!sePUWynR zO7Y}9in)=^WV0nU-*AjewxxLH?kyCu@c0u)S;_T15B=twt70-HbY$=wKJU8uwhi-> zYT&O=?;R3C^aA&srvXdaxX}_?gN(KZ^^z+#Lv&5b4eE993Ph0UA0Llw60VEUfj-5MOj-P)1n*L=Qd&cIU zyGfoaKq(|%RKp31__{)2vBbjsBDsYeN*3u~)gb$PnZ2J$vTQ{wvvZTAdnf6pisR=v zbz+iAxr{PCiFAh0Rn%)P!iu9pP2dICEeW(XtnAuw*{0PyHoas40|+c49nuJW6dIW_ z%*@QAMFZi66lQ!rxzljz+B8Q-4*h~eR5*Dcw*Lf1FZrL+Gczri`F4R z8njm80tCPa!Qz5q(={n%q5v}Bk9#!g$|BC)4`QD zRJrJN7MtFZ;@S_{)AcC-i?%NNc+75*z84bsnx{q{C!J2w2pqRuUnpH5TnU5_)Rsc* zj)>hKhtm`D#7!I551m09!MDCNh>Oit9bMe|F-fJofE!c^b&V*LSW?i^Ar-Lp_IH16 zbERA(lk8+<_*o`qj+0Den93hMcKXaSr|g%*OU|Yy6=}xCJZ}ABE05frMqVOd zjCj>bRy04+TH|?|hOd!YAcRDFlKF9^D>)Ut_;=SGeax#y$~b`gQ)8@ac^wCB3l)V#k&2q{_q=*w!maBwvheZFQycA-30i^2$HMJS~(#^8odAzzso0rm?aq%lTgjG@_4 zwE}Mf)&dz|RdYW8bO9|u43Pi&=anXK`}XyFM!xaxL+0wsZY{^`^wYqPft#9Gv9tQV zKszUd5KY|)K>s&ApAaGme7Xr30;hok&E|HtX-y^mi?d%V0SjmcmH~0VX@WL@@Lz8G YCp+Q>6Rny8!~g&Q07*qoM6N<$f?cMzZ2$lO literal 0 HcmV?d00001 diff --git a/libqt4-assistant.desktop b/libqt4-assistant.desktop new file mode 100644 index 0000000..c0165f6 --- /dev/null +++ b/libqt4-assistant.desktop @@ -0,0 +1,136 @@ +[Desktop Entry] +Encoding=UTF-8 +Exec=assistant-qt4 +Name=Qt Assistant +Name[af]=Qt Assistent +Name[ar]=معاون Qt +Name[az]=Qt Yardımçısı +Name[bn]=কিউ-টি সহায়ক +Name[br]=Skoazeller Qt +Name[bs]=Qt Asistent +Name[ca]=Assistent Qt +Name[cs]=Qt asistent +Name[cy]=Cymhorthwr Qt +Name[de]=Qt-Assistent +Name[el]=Βοηθός Qt +Name[eo]=Qt-Asistilo +Name[es]=Asistente Qt +Name[eu]=Qt laguntzailea +Name[fa]=دستیار Qt +Name[fo]=Qt-hjálpari +Name[fy]=Qt-assistent +Name[hi]=क्यूटी सहायक +Name[hr]=Qt Asistent +Name[hsb]=Qt Asistent +Name[ja]=Qt アシスタント +Name[km]=អ្នក​ជំនួយការ Qt +Name[ko]=Qt 도우미 +Name[lo]=ຄຳແນະນຳການໃ້ຊ້Qt +Name[lv]=Qt Asistents +Name[mk]=Qt-Асистент +Name[mn]=Qt-туслагч +Name[ms]=Pembantu Qt +Name[nds]=Qt-Hölper +Name[nl]=Qt Assistent +Name[nso]=Mothusi wa Qt +Name[pa]=Qt ਸਹਾਇਕ +Name[pt]=Assistente do Qt +Name[pt_BR]=Assistente Qt +Name[ro]=Asistent Qt +Name[ru]=Помощник Qt +Name[rw]=Umufasha Qt +Name[sl]=Pomočnik za Qt +Name[ss]=Lisekela leQt +Name[ta]=Qt துணைவன் +Name[tg]=Дастёри Qt +Name[th]=คำแนะนำการใช้ Qt +Name[tr]=Qt Asistanı +Name[uk]=Qt-асистент +Name[uz]=Qt3 ёрдамчи +Name[ven]=Qt Muthusi +Name[vi]=Trợ giúp Qt +Name[wa]=Macrea Qt +Name[xh]=Qt Umncedi +Name[zh_CN]=Qt 助手 +Name[zh_TW]=Qt 助理 +Name[zu]=Umsizi we-Qt +GenericName=Document Browser +GenericName[af]=Dokument Blaaier +GenericName[ar]=متصفح المستندات +GenericName[az]=Sənəd Səyyahı +GenericName[bg]=Преглед на документи +GenericName[bn]=নথী ব্রাউজার +GenericName[br]=Furcher Teulioù +GenericName[bs]=Preglednik QT dokumenata +GenericName[ca]=Navegador de documents +GenericName[cs]=Prohlížeč dokumentace +GenericName[cy]=Porydd Dogfen +GenericName[da]=Dokumentfremviser +GenericName[de]=Dokumentbrowser +GenericName[el]=Προβολέας εγγράφων +GenericName[eo]=Dokumentorigardilo +GenericName[es]=Navegador de documentos +GenericName[et]=Dokumentatsiooni brauser +GenericName[eu]=Dokumentu arakatzailea +GenericName[fa]=مرورگر سند +GenericName[fi]=Asiakirjaselain +GenericName[fo]=Skjalakagari +GenericName[fr]=Explorateur de documentation Qt +GenericName[fy]=Dokumintblêder +GenericName[ga]=Brabhsálaí Cáipéise +GenericName[gl]=Navegador de Documentos +GenericName[he]=דפדפן מסמכים +GenericName[hi]=दस्तावेज़ ब्राउज़रज़र +GenericName[hr]=Preglednik dokumenata +GenericName[hu]=Dokumentumböngésző +GenericName[id]=Peselancar Document +GenericName[is]=Skjalavafri +GenericName[it]=Visualizzatore di documenti +GenericName[ja]=ドキュメントブラウザ +GenericName[km]=កម្មវិធី​រុករក​ឯកសារ +GenericName[ko]=문서 탐색기 +GenericName[lo]=ເຄື່ອງມືເລືອກເບິ່ງແຟ້ມເອກະສານ +GenericName[lt]=Dokumentų naršyklė +GenericName[lv]=Dokumentu Pārlūks +GenericName[mk]=Прелистувач на документи +GenericName[mn]=Баримтын хөтөч +GenericName[ms]=Pelungsur Dokumen +GenericName[mt]=Browser ta' Dokumenti +GenericName[nb]=Dokumentleser +GenericName[nds]=Dokmentkieker +GenericName[nl]=Documentbrowser +GenericName[nn]=Dokumentlesar +GenericName[nso]=Seinyakisi sa Tokomane +GenericName[pa]=ਦਸਤਾਵੇਜ਼ ਝਲਕਾਰਾ +GenericName[pl]=Przeglądarka dokumentów +GenericName[pt]=Navegador de Documentos +GenericName[pt_BR]=Navegador de Documentos +GenericName[ro]=Navigator de documente +GenericName[ru]=Программа просмотра документов +GenericName[rw]=Mucukumbuzi w'Inyandiko +GenericName[se]=Dokumeantalogan +GenericName[sk]=Prehliadač dokumentácie +GenericName[sl]=Pregledovalnik dokumentov +GenericName[sr]=Прегледач докумената +GenericName[sr@Latn]=Pregledač dokumenata +GenericName[ss]=Ibrawuza yelidokhumente +GenericName[sv]=Dokumentbläddrare +GenericName[ta]=ஆவண உலாவி +GenericName[tg]=Тафсири ҳуҷҷат +GenericName[th]=เครื่องมือเลือกดูแฟ้มเอกสาร +GenericName[tr]=Belge Tarayıcısı +GenericName[tt]=İstälek Küzätüçe +GenericName[uk]=Навігатор документів +GenericName[uz]=Ҳужжат браузери +GenericName[ven]=Buronza ya manwalwa +GenericName[vi]=Trình duyệt tài liệu +GenericName[wa]=Foyteu di documints +GenericName[xh]=Umkhangeli Wencwadi Zoxwebhu +GenericName[zh_CN]=文档浏览器 +GenericName[zh_TW]=文件閱讀器 +GenericName[zu]=Umcingi Woshicilelo +X-KDE-StartupNotify=true +Icon=assistant-qt4 +Terminal=false +Type=Application +Categories=Qt;X-Development-Qt4; diff --git a/libqt4-designer-icon128x128.png b/libqt4-designer-icon128x128.png new file mode 100644 index 0000000000000000000000000000000000000000..8d703640c148325689273ef031d36ced02369ff9 GIT binary patch literal 14743 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 literal 0 HcmV?d00001 diff --git a/libqt4-designer.desktop b/libqt4-designer.desktop new file mode 100644 index 0000000..c6350e2 --- /dev/null +++ b/libqt4-designer.desktop @@ -0,0 +1,133 @@ +[Desktop Entry] +Encoding=UTF-8 +Exec=designer-qt4 +Name=Qt Designer +Name[af]=Qt Ontwerper +Name[ar]=مصمم Qt +Name[bn]=কিউ-টি ডিসাইনার +Name[br]=Ergrafer Qt +Name[ca]=Dissenyador Qt +Name[cs]=Qt designer +Name[cy]=Dylunydd Qt +Name[de]=Qt-Designer +Name[eo]=Qt-Desegnilo +Name[es]=Diseñador Qt +Name[eu]=Qt diseinatzailea +Name[fa]=Qt طراح +Name[gl]=Deseñador de Qt +Name[hi]=क्यूटी डिज़ाइनर +Name[hr]=Qt Dizajner +Name[hsb]=Qt designer +Name[is]=Qt hönnuðurinn +Name[it]=Designer Qt +Name[ja]=Qt デザイナー +Name[km]=កម្មវិធី​រចនា Qt +Name[ko]=Qt 디자이너 +Name[lo]=ອອກແບບສ່ວນຕິດຕໍ່ຜູ້ໃຊ້ສຳຫັລບ Qt +Name[lv]=Qt Dizainers +Name[mk]=Qt-Дизајнер +Name[mn]=Qt-Дизайнер +Name[ms]=Pembantu Qt +Name[mt]=Diżinjatur Qt +Name[nds]=Qt-Designer +Name[nso]=Mohlami wa Qt +Name[oc]=Dessinador Qt +Name[pa]=Qt ਡਿਜ਼ਾਈਨਰ +Name[rw]=Umuhanzi Qt +Name[sl]=Snovalnik Qt +Name[ss]=Umhleli weQt +Name[sv]=Qt designer +Name[ta]=Qt வடிவமைப்பாளர் +Name[tg]=Тароҳи Qt +Name[th]=ออกแบบส่วนติดต่อผู้ใช้สำหรับ Qt +Name[tr]=Qt Tasarımcı +Name[tt]=Qt Tözüçe +Name[uk]=Дизайнер Qt +Name[uz]=Qt3 дизайнер +Name[ven]=Qt Mufhati +Name[vi]=Trình thiết kế Qt +Name[xh]=Umyili we Qt +Name[zh_CN]=Qt 设计器 +Name[zh_TW]=Qt 設計師 +Name[zu]=Umakhi we-Qt +GenericName=Interface Designer +GenericName[af]=Koppelvlak Ontwerper +GenericName[ar]=مصمم واجهات إستخدام +GenericName[az]=Ara Üz Tərtibçisi +GenericName[bn]=ইন্টারফেস পরিকল্পনা +GenericName[br]=Ergrafer etrefas +GenericName[bs]=Qt alat za dizajniranje interfejsa +GenericName[ca]=Dissenyador d'interfícies +GenericName[cs]=Návrhář rozhraní +GenericName[cy]=Dylunydd Rhyngwyneb +GenericName[da]=Grænsefladedesigner +GenericName[de]=Schnittstellendesigner +GenericName[el]=Σχεδιαστής διασυνδέσεων +GenericName[eo]=Interfacdesegnilo +GenericName[es]=Diseñador de interfaces +GenericName[et]=Kasutajaliidese disainer +GenericName[eu]=Interfaze diseinatzailea +GenericName[fa]=طراح واسط +GenericName[fi]=Käyttöliittymäsuunnittelija +GenericName[fo]=Nýtaramótssniðari +GenericName[fr]=Concepteur d'interface +GenericName[fy]=Ynterface-ûntwerper +GenericName[ga]=Dearthóir Comhéadain +GenericName[gl]=Deseñador de Interfaces +GenericName[he]=מעצב ממשקים +GenericName[hi]=इंटरफेस डिज़ाइनर +GenericName[hr]=Dizajner sučelja +GenericName[hu]=Felülettervező +GenericName[id]=Perancang Antarmuka +GenericName[is]=Viðmótshönnun +GenericName[it]=Disegnatore di interfacce +GenericName[ja]=インターフェースデザイナー +GenericName[km]=កម្មវិធី​រចនា​ចំណុច​ប្រទាក់ +GenericName[ko]=인터페이스 디자이너 +GenericName[lo]=ເຄື່ອງມືອອກແບບສ່ວນຕິດຕໍ່ຜູ້ໃຊ້ +GenericName[lt]=Sąsajos kūrimo programa +GenericName[lv]=Saskarnes Dizainers +GenericName[mk]=Дизајнер на интерфејси +GenericName[mn]=Гадаргуун дизайнер +GenericName[ms]=Pereka Antaramuka +GenericName[mt]=Diżinjatur tal-interfaċċji +GenericName[nb]=Utforming av grensesnitt +GenericName[nds]=Koppelsteed-Maker +GenericName[nl]=Interface-ontwerper +GenericName[nn]=Utforming av grensesnitt +GenericName[nso]=Mohlami wa Interface +GenericName[pa]=ਇੰਟਰਫੇਸ਼ ਡਿਜ਼ਾਈਨਰ +GenericName[pl]=Projektant interfejsu +GenericName[pt]=Editor de Interfaces +GenericName[pt_BR]=Interface do Designer +GenericName[ro]=Dezvoltator de interfeţe +GenericName[ru]=Редактор интерфейса приложений Qt +GenericName[rw]=Umuhanzi w'Imigaragarire +GenericName[se]=Laktahábmejeaddji +GenericName[sk]=Návrh rozhrania +GenericName[sl]=Snovalnik vmesnikov +GenericName[sr]=Дизајнер интерфејса +GenericName[sr@Latn]=Dizajner interfejsa +GenericName[ss]=Umhleli wesichumanisi +GenericName[sv]=Gränssnittseditor +GenericName[ta]=முகப்புப் வடிவமைப்பாளர் +GenericName[tg]=Тароҳи робита +GenericName[th]=เครื่องมือออกแบบส่วนติดต่อผู้ใช้ +GenericName[tr]=Arayüz tasarım programı +GenericName[tt]=Yözara Tözegeç +GenericName[uk]=Дизайн інтерфейсу +GenericName[uz]=Интерфейс дизайнери +GenericName[ven]=Muvhati wa nga Phanda +GenericName[vi]=Trình thiết kế giao diện +GenericName[wa]=Dessineu d' eterfaces +GenericName[xh]=Umyili Wezojongongano +GenericName[zh_CN]=界面设计器 +GenericName[zh_TW]=界面設計師 +GenericName[zu]=Umakhi Womxhumanisi +X-KDE-StartupNotify=true +MimeType=application/x-designer; +Icon=designer-qt4 +Terminal=false +Type=Application +Categories=Qt;X-Development-Qt4; + diff --git a/libqt4-development-qt4.directory b/libqt4-development-qt4.directory new file mode 100644 index 0000000..8c7d044 --- /dev/null +++ b/libqt4-development-qt4.directory @@ -0,0 +1,5 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=Qt4 +Icon=qt4-logo +SortOrder= diff --git a/libqt4-development-qt4.menu b/libqt4-development-qt4.menu new file mode 100644 index 0000000..a23d8c1 --- /dev/null +++ b/libqt4-development-qt4.menu @@ -0,0 +1,10 @@ + +

Applications + Development + Qt4 + development-qt4.directory + X-Development-Qt4 + + + diff --git a/libqt4-linguist-icon32x32.png b/libqt4-linguist-icon32x32.png new file mode 100644 index 0000000000000000000000000000000000000000..f32a57e82b08739ab9a650acb6639cc11d35374a GIT binary patch literal 2322 zcmV+t3GMcYP)kV09vBvRLE%RI69I<=~$zgPS&JjqUEC* z!zLXYpfn`Yk}1bmB~GKMIE*L_DLxS7A<9c(fqmY+d+$B3|E~peVi@pQpO2_2|8F8< zKpx4Y@=ep4E*q9>aLdoVb=M9>FLL=9G6)zAOasON!+U*=f(u z<@|=`W1CNH$v67F&u?11GqIs@ISLUm!0}?ZIX~Xi*H3qbr$^G5DVUt&9nz#^f(O?HY2vOGT|J${=+)jEKx@nCx6O^6TE@$Ze%F~v=Dm7AQIe%#r#j~~UthkwMSXWd4wF3*Qt{%hX& zIjO5AUgS?Zb=)w9*ZYK#B{Yh`;UH0rg_IBVS@`2^WnOu#%s_ucI%^p7r7Se|bGn!9w?>ymZ|FoIoo4rwm zI%-LRVUU0U!~hmNS7>a21s8U*@zn}ps6awuEs3?XPslRkJeOA<8$!<>mn-Jn$lMDq zVaJ}G*f^%Cu^GYW8=GI;z5eYrovsW*xM9-V)TFjzo!62tP>n2LP{06*0h54QC=L^r z{-lpxTO1k+4K%e{CZ6GAV`alL6}D{*So3&{o35e0f)`SAcGFn&5rj+p!tcLdBN)g~98=-y`|=pyA?HKS z?trD&R(NYoh&Qy0=20HGRFRg(k-YHtGHp#0xM$&F!YHVHb?(@w1}gpcxQmM9B>r`!L_xt@x5-YI6w6wb;TW5H~(_#PzRR?eY2gLvetRU7P zDs=5KsC8**PN*-Y5aaUh+JILcN)eO_?AVepWtNA=b(DHs8j2a_TsM|Nt3~sB?TXcZ zEv@|LlkdfGq=0pE1(VAcOgd$R$VP|?sDJ<}9Ha(|q6iv8k|=&Xrd$46Y|i_eU!U>B0IpoU9fd+h?hzTg9sH+3s#jvbDHC3 zWf-(gRi9B+%OKO+k(9f(M?o3~OO;ww!V!l9L@WY`5nKaFB8;49P^ZGKtudv&5krcK z-_*_2bGzu?AMn(om<`X?a5D+H0@&Ch7%Fj@>Ods|${fP&=}2~(b&*!~>$pOzp%QiC zyFQ*tqgXzmfD%+-^hA%A_I|d!tgKuXbLr3Osm8*niD|HXtXyW;8>g5$E2g1Ys0=7p zLrUR3_HGLI0&j8%Q|Yr;?cEk{UjIzBoJqN)jHMEGU~L5lFeDff3>F*5s3Xk&j*m%~ zd2xA-Wed9K+F4`EntoD#Kp2W zvY>GCu_ya(P)abyA?+4OIXOfHivkL&6dE1YKHbCpH+8XpzmiTRq*72SD=n=l43_3G z4p%Q3MLFpu2nTrS&y_d-wy1Z3sy@siL{&LJL@q9laj*LB9ZfUZCZ*F+kbr=TkLTnu z;vonsAgT;02=8quv;2Wh-hQo06e=T+b-D1$BH22ZYLL))OhTm=@Ybqu`;u$+-3dIP zs#Ojls>+8%25jbCg;s#9Bz_U91RE z6cQ&@f*@k!zoPelH-G=D<-X(^ReguUh^lfZ5jn-rnd`rK-OveNJS*Ft$r}%p1C$RK zaR5Qo!#F8i7Z8Y}gd~Zu8iFWqtg3Y^xqjcPm9m|$s_QudQB@8nB8|ZLlV)TtpZ$%x z_Gzc*hYo3S992aX)LLu|MpA$Q6i}1|OM(C^A208@|Mt!|gQ~q&RX1=HqN*HDL>!v&J5jqq_1j4>SW?&dJM>&87>)~~Jp23V@9mQTp#=whG>bOT$X zs+OWai&IYboqS!2B(XS-u<9QJ<-2a$vvJ>^=nhqVj8DnsD0GmBgg_tgP84Xb;}V}Z zA?vsTwTkMpd%8Lwyt{K#80rnGx|+|xeLR?cy_X`53AiiAaxHs>N2X=PwWTb}hcWV`r&1`7Q9Is@C`%L{<4DM5Gls s3kZN`flgJmd`_aOd>S%H2k}4hZ=cN}@7ew`$p8QV07*qoM6N<$f)P?ce*gdg literal 0 HcmV?d00001 diff --git a/libqt4-linguist.desktop b/libqt4-linguist.desktop new file mode 100644 index 0000000..2babc67 --- /dev/null +++ b/libqt4-linguist.desktop @@ -0,0 +1,128 @@ +[Desktop Entry] +Encoding=UTF-8 +Exec=linguist-qt4 +Name=Qt Linguist +Name[ar]=لغوي Qt +Name[bn]=কিউ-টি লিঙ্গুইস্ট +Name[ca]=Lingüista Qt +Name[cy]=Ieithydd Qt +Name[de]=Qt-Linguist +Name[eo]=Qt-Lingvisto +Name[es]=Lingüista Qt +Name[fa]=Qt زبان‌شناس +Name[fi]=Qt Linquist +Name[fy]=Qt Linquist +Name[gl]=Lingüista Qt +Name[hi]=क्यूटी लिंग्विस्ट +Name[hr]=Qt Lingvist +Name[km]=ភាសាវិទូ Qt +Name[ko]=Qt 언어학자 +Name[lo]=ແປພາສາຂອງ Qt +Name[lv]=Qt Lingvists +Name[mk]=Qt-Јазичар +Name[mn]=Qt-Хэл зүй +Name[ms]=Jurubahasa Qt +Name[mt]=Lingwist Qt +Name[nb]=Qt-Linguist +Name[nds]=Qt-Linguist +Name[nl]=Qt Linquist +Name[nso]=Sekaleleme sa Qt +Name[pa]=Qt ਲੈਂਗੂਇਸਟ +Name[pl]=Lingwista Qt +Name[ru]=Qt Лингвист +Name[rw]=Byindimi Qt +Name[sl]=Jezikoslovec Qt +Name[sv]=Qt linguist +Name[ta]=Qt மொழியறிஞர் +Name[tg]=Забони Qt +Name[th]=แปลภาษาของ Qt +Name[tr]=Qt Dilci +Name[tt]=Qt Telbelgeç +Name[uk]=Qt-лінгвіст +Name[uz]=Qt лингвист +Name[ven]=Qt Radzinyambo +Name[vi]=Ngôn ngữ Qt +Name[xh]=Usolwimi we Qt +Name[zh_CN]=Qt 语言家 +Name[zh_TW]=Qt 語言學家 +Name[zu]=Owozolimi we-Qt +GenericName=Translation Tool +GenericName[af]=Vertaling Program +GenericName[ar]=أداة للترجمة +GenericName[az]=Tərcümə Vasitəsi +GenericName[bn]=অনুবাদ টুল +GenericName[br]=Ostilh troidigezh +GenericName[bs]=Alat za prevođenje +GenericName[ca]=Eina de traducció +GenericName[cs]=Překladatelský nástroj +GenericName[cy]=Erfyn Cyfieithu +GenericName[da]=Oversættelsesværktøj +GenericName[de]=Übersetzungsprogramm +GenericName[el]=Εργαλείο μεταφράσεων +GenericName[eo]=Tradukilo por Qt-programoj +GenericName[es]=Herramienta de traducción +GenericName[et]=Tõlkimise rakendus +GenericName[eu]=Itzulpenerako tresnak +GenericName[fa]=ابزار ترجمه +GenericName[fi]=Käännöstyökalu +GenericName[fo]=Umsetingaramboð +GenericName[fr]=Outil de traduction +GenericName[fy]=Fertaalprogramma +GenericName[ga]=Uirlis Aistriúcháin +GenericName[gl]=Ferramenta de Tradución +GenericName[he]=כלי תרגום +GenericName[hi]=अनुवाद औज़ार +GenericName[hr]=Alat za prevođenje +GenericName[hsb]=Grat za přełožowanje +GenericName[hu]=Fordítássegítő +GenericName[id]=Kakas Penerjemah +GenericName[is]=Þýðingartól +GenericName[it]=Strumento per le traduzioni +GenericName[ja]=翻訳ツール +GenericName[km]=កម្មវិធី​បកប្រែ +GenericName[ko]=번역 도구 +GenericName[lo]=ເຄື່ອງມືແປພາສາ +GenericName[lt]=Vertimo įrankis +GenericName[lv]=Tulkošanas Rīks +GenericName[mk]=Алатка за преведување +GenericName[mn]=Орчуулгын програм +GenericName[ms]=Perkakasan Penterjemahan +GenericName[mt]=Għodda tat-traduzzjoni +GenericName[nb]=Oversettelsesverktøy +GenericName[nds]=Warktüüch för't Översetten +GenericName[nl]=Vertaalprogramma +GenericName[nn]=Omsetjingsverktøy +GenericName[nso]=Sebereka sa Thlathollo +GenericName[pa]=ਅਨੁਵਾਦ ਸੰਦ +GenericName[pl]=Narzędzie dla tłumaczy +GenericName[pt]=Ferramenta de Tradução +GenericName[pt_BR]=Ferramenta de Tradução +GenericName[ro]=Utilitar de traducere +GenericName[ru]=Переводчик для Qt +GenericName[se]=Jorgalanreaidu +GenericName[sk]=Prekladací nástroj +GenericName[sl]=Orodje za prevajanje +GenericName[sr]=Алат за превођење +GenericName[sr@Latn]=Alat za prevođenje +GenericName[ss]=Lithulusi lekuhumusha +GenericName[sv]=Översättningsverktyg +GenericName[ta]=மொழிபெயர்ப்புக் கருவி +GenericName[tg]=Тарҷумагар барои QT +GenericName[th]=เครื่องมือแปลภาษา +GenericName[tr]=Çeviri Aracı +GenericName[tt]=Tärcemäläw Qoralı +GenericName[uk]=Засіб для перекладів +GenericName[uz]=Таржима қилиш воситаси +GenericName[ven]=Zwishumiswa zwau Dologa +GenericName[vi]=Công cụ dịch +GenericName[wa]=Usteye di ratournaedje +GenericName[xh]=Isixhobo Soguqulelo lomsebenzi kolunye ulwimi +GenericName[zh_CN]=翻译工具 +GenericName[zh_TW]=翻譯工具 +GenericName[zu]=Ithuluzi Lokuguqulela +X-KDE-StartupNotify=true +MimeType=application/x-linguist; +Terminal=false +Type=Application +Icon=linguist-qt4 +Categories=Qt;X-Development-Qt4; diff --git a/libqt4-profile.csh b/libqt4-profile.csh new file mode 100644 index 0000000..bd15656 --- /dev/null +++ b/libqt4-profile.csh @@ -0,0 +1,10 @@ +# Qt4 environment definitions + +set qt4_prefix=/usr/lib/qt4 + +if ( "$QTDIR" == '' ) then + setenv QTDIR $qt4_prefix +endif + +setenv QT4DIR $qt4_prefix +setenv QMAKESPEC linux-g++ diff --git a/libqt4-profile.sh b/libqt4-profile.sh new file mode 100644 index 0000000..fff82ec --- /dev/null +++ b/libqt4-profile.sh @@ -0,0 +1,13 @@ +# Qt4 environment definitions + +qt4_prefix=/usr/lib/qt4 + +if [ -z "$QTDIR" ]; then + QTDIR="$qt4_prefix" + export QTDIR +fi + +QT4DIR="$qt4_prefix" +QMAKESPEC=linux-g++ + +export QMAKESPEC QT4DIR diff --git a/libqt4-qt4logo-icon64x64.png b/libqt4-qt4logo-icon64x64.png new file mode 100644 index 0000000000000000000000000000000000000000..e5446edca4ceff0f0186cb794a45f1cf42563090 GIT binary patch literal 4915 zcmV-36U^+1P)Px#1ZP1_K>z@;j|==^1poj5AY({UO#lFTCIA3{ga82g0001h=l}q9FaQARU;qF* zm;eA5aGbhPJOBUy2XskIMF-Ug2oD=J7BgKe0000TbVXQnLvL+uWo~o;Lvm$dbY)~9 zcWHEJAXI2&AV*0}Q14_VZU6uP7<5HgbW?9;ba!ELWdKlNX>N2bPDNB8b}}wDG4e>{ zrT_pEQAtEWRCwCmn|Y8N)qTf5@4cSsnb}?KO0zl;I?%Bak_g z5gQzvm`aKi_(;l*V~Ax76DQ@AV~kJi*eQzGfRmC9j*X-}w2}ZJOB@2BYb7mOX_2(Y z+}-`&%O5?{GqbzG3t9>6SM{p9XQq$ex4*ypjp9^e5pTP5Z+yqqUv%EO;B9JV%N+b= zm)nC(Tdq z__50f07i}yu+1pbvGGf0laY4o#x-W(_Zxs#TvoChm^%&tMveg3sio;?Ut=~QZTI>$ zrvLW~fK_~sG;0AW00>})ii3cH(d4Ybw{|?&x4WJX+tZGHV*-$7 zDy!H7G}i)<5Q^1_G+@dy8A?`@v6`IGWQ=CmXo}X1N3wlD$NH}X-9XpAZoRLk{q-}f z^#J@S_X4+64l4k(sw5Z3r(!V?2)1r(uvh{@K!%MbYc)egQ!u|1lwK^IdUMddv0Zfa zbO*ckx1-NK0E<}0BDMqZkpRqgT38mFHbUTf0LBKz5LiRT24qYKNXBT2udF^V1Dg(X z>rMMN+OB<_dPmPD{4)iBQ?vj6TH$L)j5vY>U=d{%u;pzPjIlwH!jKk*DYE*VZw-Sc zAY((eWQ?x0DN}*#=B-xO&07su;0y!Z`#a6!2fECLl(bK-TVsl6f&q83h&yV(tT5oh z_&jE-siWTX$o;Xv7`b2jS>?9|L(Xc3O~8-|7&4mtsa2-{Yz+ai8>P@&e)DCUIimn9 zk1t}5no$FQJq7J;-EYL0;MAX61x!cB7L8A+GDF5^$Y_SOL5~ed3D|z1%dG$2HU2-H zjtZP|q-a8xRiK{!^9i5dXxDOgZ1v?vQLBB3k$ z_1Ca9Z{I}Qpl;t{kQgRQLyI)bDT6j_d`=pl-oV4NrdH^-88bfgF{#w$z*}a`n&qrq zxw1~CuFmhKdwRB>92WqR7!tQe@K6w2vt^W^Re{Bb&qk_6Wg0ZP%m6b2h+3d3Dl=Jz zpg@-Wezqcfa^|@o`5CZ0JWg`aMHii(3JBszl4DT5cE3V#kY(c%?pHsvTH)m;Q5c?% z)iFfb0tw~eHoru?;V4D~Wf+1o7$ZS2HEI}s-Y7y40A|nr@Lk%3!UJ4#$tAe1I}rdR z>KITD0(EaW6j~t5f(HecBl{L`^2j`_aS=iwr9=o(HyyV?W9vR9&)tUO4iga608z0I zBh}6j69E9TW_|QZZRD+$=bkrj9y4alIDI4N))+xM!nlbM0E9vdBm!Y!|IS(T9hi+E zhLj+LH>U7H2z=k6kX_8l-UUpa{Vc5uoo7%z|%&4{uM5F;$RsH1yTcrPc}(KVCdlg%h)kun%1I4}wX06Zw{UdmAaH0J-& zR$}o2q6|P)9jZ3OA)xz9*ECmh7$F2JR;<8roQVNI;6^r}{_R(cWR>y?!SHcO_pj3E zAc0b0SZ}RGYh4v`4B_iQ00xdt;_1gOW7*q&OS~}~F~OEiWJL|1d~iBF>#I~>v}h4i zr%nyA^h)&g^)h$vg3|!N#t_6p!3A{yNJO-i2#Q(gd?b!nl*D2-65JSrwc&APzZL{3 zW!7wo0^(fx^!uD+`jQq&Y3y;^cWy< zt8sv>1whnMUl{24rB5#75RZofRD?Cg5Cj2Q2Q;UP%wC{LPdB7e3a=!2`Dnn=LrDf+ zP7sU5aU2IJB>+PwT%PWn!^KzjAtHNV2m;I3KAobF3-2YRWaY}0D5U^6cyJ#(c06(V z02FP3CNaIn-Hp`!@a;dhJahr~**Y`M(u*|x zFJ*bMQ;^G~a9tOr6xLe$dXn_*ZDHoZBA^jy{_~rbJb_qvZ0X1mk2ORT)>`BHK7~SoDbt5}_xolNPsk_;4jEm}ss=(8 z28cS>hqi3na-3AM8KqS8_DiJ_z8>J(>z1KZ3R8An;uLN)H|(+D(F45a`Zk1=yz9^A zbN}~yC>9+Oi3Cb1cJK7DQn9&nds*)l=P$XCrlzLod0Qr@x#0sJr;yKKf!5Y(qhwmW z`V;M!U3T-aSD6bi$_7XTFYZ2u?}5|gL;hI0D~ZjATg#IJh$^$B#FD~XK@fP&2;%ep?=79`mHd|zbki^U?j zT#kW(0hTSFg`-ks;oVW-sq*&W`*+ZLFc;BW3dv8t|2P9De6TJTym=;rgM$P?fKrO1 zM{-ChPFMCp;P^OgK&;LNh#DK{ELyy}EPOR*s8=Du zuYdUj+n+qllqpkCO5yuH#bS}c!3={ZeOl8g&R;s8haT8YDwRSALGvWZ3kPp!*K;rP z{H}g_`wPUE|1$6Gxb}gAhYsk2J$r5rf`CkR7=Y!=S8(2WZFTqG)b*XV?(TcX2SCOi zjckC31PJ$z9_b?pg2>kkA;{%&1VMrM^A{qJsB#)b&A9^DvS|nZ^UzkNO`C>N3avGT zLV>}-0j|6LGTPeO%F$hlxGNYQ9>#TDa=8MNCpB}`)zi81YReI`lLx( zI~b4{qnawPMo}u2D3wYmr7*^j&*y1rNg+v&Dq{-Z=+S=u`HSBqm1@Ls9DLu8K%6|K zkx$(GQ6x^p8UYw17#bQ1ThzH6UP+(`0S;_kV`&I@23Rs4`Njpn3A+b~AyA{*Nk%L3 z`8C=9hbVVb6uoHVwE87QS0b`6j>zvH#G)C;AT^eyacQ;it0W z1|Vnq*%aKxba4T$Xd*@eDFjWNOJ4Vp%jL*svr)E}&*zCJBnA3wbYDOKxBl&&9PR5T zolc{*CZDe^F9_LF1}q9e?}?|$(R0&*!69!1Fww*|mem z3aimhSi*=Q_}S-TJpase(&=uRRVJ+3~Ke>Q6q`f(&hd@B8?^A7+6ihhuvnCIoQ=>+gYW z>l%s2!|q$DR3ekf(BI$B(PKwAdGch$hEyuWp>0#y@SQk~GDeVv6NeI!ngpgmL#wGP z$DUCmXv-lhb^RWT28euG zF<5+H&YOynP`>YDjKOgnHb1OzkSHYY{{mccZ9cLWgM)*prhabxmm*8wA$iYj$2ord zIK#ukc%FyjI5agjbKe&lSohsH$z(DzurrtC@iAdd$etbtUbPBXTkYy;YYD93;%md4 zzgR3rDxj1id#r&iKi4=yB823oyA9`GI?T|}5G6gxP5+Tcv;<^Lz~wh8{`h^z85lTO z4x|ENu^1_L3YjA_iO1vkzE3WfW7(A+feqUv_B7Q%zFOU{6<%Wru*_RwnKUhQg{4v{ z%HLhr<$=2;*#V0Z0vx#M>zZ>GXSjZCo^+d~V0Ac6zztuJw5>YH(9jUYVi98uu~-b( zbtC$_%~|GMVj|(sN;1T#dTrb1%Wt&AlA#)So<|S_QTn?7iAKJDONnAOESo#A+MEJvD&Zs>B>!-)Ld&5D zfJ&rUDwSxN>4$oFHq+rzOt96CzK_Mj;IzPXpZ4llP*H_=JkE0)Q+)o~JTE?}i3>$s zNL&=IP$Y10MOb({@S@LMw`VB~%jnHlfCz$s?|oKtXqVwsOB~OL8?1l-WmjkoS||c* z@DY^IT>2qJ*H7~tdJbIIjXEl60S>H%3;dx#ZU0Q3yth1o_?kxpw?|2;ms5OTMQ8t3$V<=gHGLl>Fg}eVE$H|v8 z@pwEcR90+)5Q3g90eiawv?;f{O}RPhByp6&aU8VP(X8z)_`c62@0Al|0$-~NR6wwy zHTG?&21PXPbjxi&w8WD6C`qc&x03WIrHI91#A9*dj!QfqkHD$C=}KiO*^=jys|)0E zISPdWvo8#|>Q;%i)x|kyodLB#=*l7pYr;Z@fJyTepLcWZEY$Qrz*Y z7!Ta(@#qh{uy<6`{2WW@Dj3D zAXqHg0>a=U!D=YS32|5P!LP=7=S_x3zU9&W-vOl}r(}YPS>FC3muo(m;M@xZB?5d? z4ti3s@Lhs})p!_;ofs?NobClorQB5p!6Gr%V1y;GmH^4*#gZGpk>CS&TJ~JEXq7@WSV|Z&WkCa5T@7F>z2TZL_;m%Knj==#!A2lhoN}b-V^Bz( z$$~{!NzT7YAw*c~t6e4Np~J|Ka5Z`@&29PmwJU^pBQRi05YQMQF+gB7J_3b7RhG^G z!ipM~N;SDEgQja}Zb!J_iCk;%OvFWOT_-tQCuGY@=Y^1=r?8^jMz4mzwnmMrYraDF zT1mNUuYM-}WZ+EX#VTy5*aeF~*syYgsPqFw6vW!P@Y>eZ8eWBmx4>?US@*gFz!-Fm z8X>kedN`Fw8JFM|*eRrKe{7BJ#)>WL*9I?51Ox1u0)n~<|0`7+PO&}%o|M9D{LPn5 zhmv;Nuh*Cp6R!e-p95cfZH3bDf-x?Pi@+8~+V=ljV>g@-*Ui)(R@dL1%r)lFy zz+Z88M~3hpBJKOzZO4Hw`^^5%v-e-bdK<8X&$EgffQB=8&wil0XH(F=uS0b7blT_l zb!m^+Y19L7f@7TEYoxhz0`Ji)tnJ#fS+^hDNc+Lfdhg!$H_qR0M|*)6`8QVa*TBrz za6Jti0MWIt+iyS6E;=@RB{;|%c#H<%1X+&rd0P3=IL`Nh-A0;D+hyC^H?nE{+Mti$ zqcL_Iu$%uP&27M&M|@KPp0d(z-LOWt8)G+byldiI(i;bW0W^E~jDY_I9#2ZM^%rYw lyOnzDhBar-CA}Ww{{fGe5Y8m2DQo}$002ovPDHLkV1g{FBpd($ literal 0 HcmV?d00001 diff --git a/libqt4-qvfb.desktop b/libqt4-qvfb.desktop new file mode 100644 index 0000000..f087d0c --- /dev/null +++ b/libqt4-qvfb.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Encoding=UTF-8 +Exec=qvfb-qt4 +Name=QT4 vfb +GenericName=QT4 Virtual Framebuffer +GenericName[it]=Framebuffer Virtuale QT4 +X-KDE-StartupNotify=true +MimeType=application/x-designer; +Icon=qvfb-qt4 +Terminal=false +Type=Application +Categories=Categories=Qt;X-Development-Qt4; diff --git a/libqt4.spec b/libqt4.spec new file mode 100644 index 0000000..4db3c52 --- /dev/null +++ b/libqt4.spec @@ -0,0 +1,1440 @@ +%define majver %(echo %version | cut -d. -f1-2) +%define _qt4_prefix %{_libdir}/qt4 +%define _qt4_bindir %{_qt4_prefix}/bin +%define _qt4_datadir %{_datadir}/qt4 +#define _qt4_demosdir %{_qt4_datadir}/demos +%define _qt4_demosdir %{_qt4_prefix}/demos +%define _qt4_docdir %{_qt4_datadir}/doc +#define _qt4_examplesdir %{_qt4_datadir}/examples +%define _qt4_examplesdir %{_qt4_prefix}/examples +%define _qt4_headerdir %{_includedir}/qt4 +%define _qt4_libdir %{_libdir} +%define _qt4_plugindir %{_qt4_prefix}/plugins +%define _qt4_sysconfdir %{_sysconfdir}/xdg +%define _qt4_translationdir %{_qt4_datadir}/translations + +%define USE_DISTCC 0 +%define build_phonon 1 +%define build_openvg 1 + +%if "%{USE_DISTCC}" == "1" +%define DISTCC CC="ccache distcc" CXX="ccache distcc" -j 12 +%endif + +Name: libqt4 +Version: 4.8.6 +Release: 1mamba +Summary: A multiplatform, C++ GUI application development framework +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://qt.nokia.com +Source0: http://download.qt-project.org/official_releases/qt/%{majver}/%{version}/qt-everywhere-opensource-src-%{version}.tar.gz +Source1: libqt4-profile.sh +Source2: libqt4-profile.csh +Source10: libqt4-qt4logo-icon64x64.png +Source11: libqt4-development-qt4.menu +Source12: libqt4-development-qt4.directory +Source13: libqt4-designer.desktop +Source14: libqt4-designer-icon128x128.png +Source15: libqt4-assistant.desktop +Source16: libqt4-assistant-icon32x32.png +Source17: libqt4-linguist.desktop +Source18: libqt4-linguist-icon32x32.png +Source19: libqt4-qvfb.desktop +Patch0: libqt4-4.5.1-rendering-regression.patch +Patch1: libqt4-4.8.1-webkit-glib-2.32.patch +Patch2: libqt4-4.8.1-fix_qvfb_link.patch +Patch3: libqt4-4.8.2-gcc-4.7-webkit-no_Werror.patch +Patch4: libqt4-4.8.2-ld-gold.patch +Patch5: libqt4-4.8.4-set-alpha-flags-after-converto32-in-eglcreatesurface.patch +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: ldconfig +BuildRequires: libdbus-devel +BuildRequires: libexpat-devel +BuildRequires: libfontconfig-devel +BuildRequires: libfreetds-devel +BuildRequires: libfreetype-devel +BuildRequires: libgcc +BuildRequires: libGL-devel +BuildRequires: libglib-devel +BuildRequires: libGLU-devel +BuildRequires: libICE-devel +BuildRequires: libjpeg-devel +BuildRequires: libmng-devel +BuildRequires: libmysql5-devel +BuildRequires: libodbc-devel +BuildRequires: libopenssl-devel +BuildRequires: libpng-devel +BuildRequires: libpostgresql-devel +BuildRequires: libSM-devel +%if "%{stage1}" != "1" +BuildRequires: libsqlite2-devel +%endif +BuildRequires: libsqlite-devel +BuildRequires: libstdc++6-devel +BuildRequires: libtiff-devel +BuildRequires: libX11-devel +BuildRequires: libXcursor-devel +BuildRequires: libXext-devel +BuildRequires: libXfixes-devel +BuildRequires: libXinerama-devel +BuildRequires: libxml2-devel +BuildRequires: libXrandr-devel +BuildRequires: libXrender-devel +BuildRequires: libXtst-devel +BuildRequires: libz-devel +## AUTOBUILDREQ-END +BuildRequires: libicu-devel +BuildRequires: libXi-devel +BuildRequires: libcups-devel +BuildRequires: xorg-proto-devel +BuildRequires: libOpenVG-devel +BuildRequires: libGL-devel >= 8.0.4-2mamba +%if "%{USE_DISTCC}" == "1" +BuildRequires: distcc +BuildRequires: ccache >= 2.3 +%endif +%{?build_phonon:BuildRequires: libgstreamer-devel, libgst-plugins-base-devel} +%{?build_openvg:BuildRequires: libOpenVG-devel} +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +# FIXME: +# NAS sound support ... no + +%description +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +%package -n libQtCore +Group: System/Libraries +Summary: Qt4 core library +%if "%{_qt4_libdir}" != "%{_libdir}" +Prereq: /etc/ld.so.conf.d +%endif +Provides: libqt = %{version} +Provides: libqt4 = %{version} +Provides: qt = %{version} +Provides: qt4 = %{version} +Provides: qt4-x11 = %{version} +Provides: libqt4 +Obsoletes: libqt4 +Requires: libicu + +%description -n libQtCore +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the core library. + +%package -n libQtDBus +Group: System/Libraries +Summary: Qt4 DBus library +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description -n libQtDBus +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the DBus library. + +%package -n libQtDeclarative +Group: System/Libraries +Summary: Qt4 declarative library +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description -n libQtDeclarative +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the declarative library. + +%package -n libQt3Support +Group: System/Libraries +Summary: Qt4 Support library for Qt3 +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description -n libQt3Support +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the Qt3Support library. + +%package -n libQtCLucene +Group: System/Libraries +Summary: Qt4 C-Lucene library +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description -n libQtCLucene +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the C-Lucene library. + +%package -n libQtDesigner +Group: System/Libraries +Summary: Qt4 designer library +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description -n libQtDesigner +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the designer library. + +%package -n libQtDesignerComponents +Group: System/Libraries +Summary: Qt4 designer components library +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description -n libQtDesignerComponents +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the designer components library. + +%package -n libQtGui +Group: System/Libraries +Summary: Qt4 GUI library +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description -n libQtGui +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the Gui library. + +%package -n libQtHelp +Group: System/Libraries +Summary: Qt4 help library +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description -n libQtHelp +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the help library. + +%package -n libQtMeeGoGraphicsSystemHelper +Group: System/Libraries +Summary: Qt4 MeeGo library +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description -n libQtMeeGoGraphicsSystemHelper +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the MeeGo library. + +%package -n libQtMultimedia +Group: System/Libraries +Summary: Qt4 multimedia library +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description -n libQtMultimedia +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the multimedia library. + +%package -n libQtNetwork +Group: System/Libraries +Summary: Qt4 network library +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description -n libQtNetwork +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the network library. + +%package -n libQtOpenGL +Group: System/Libraries +Summary: Qt4 OpenGL library +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description -n libQtOpenGL +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the OpenGL library. + +%package -n libQtOpenVG +Group: System/Libraries +Summary: Qt4 OpenVG library +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description -n libQtOpenVG +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the OpenVG library. + +%package -n libQtScript +Group: System/Libraries +Summary: Qt4 scripting library +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description -n libQtScript +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the scripting library. + +%package -n libQtScriptTools +Group: System/Libraries +Summary: Qt4 scripting tools library +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description -n libQtScriptTools +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the scripting tools library. + +%package -n libQtSql +Group: System/Libraries +Summary: Qt4 SQL library +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description -n libQtSql +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the SQL library. + +%package -n libQtSvg +Group: System/Libraries +Summary: Qt4 SVG library +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description -n libQtSvg +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the Svg library. + +%package -n libQtTest +Group: System/Libraries +Summary: Qt4 test library +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description -n libQtTest +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the test library. + +%package -n libQtWebKit +Group: System/Libraries +Summary: Qt4 WebKit library +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description -n libQtWebKit +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the WebKit library. + +%package -n libQtXml +Group: System/Libraries +Summary: Qt4 Xml library +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description -n libQtXml +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the Xml library. + +%package -n libQtXmlPatterns +Group: System/Libraries +Summary: Qt4 Xml patterns library +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description -n libQtXmlPatterns +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the Xml patterns library. + +%package devel +Group: Development/Libraries +Summary: Devel files for QT libraries +Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release} +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} +Requires: libQtDBus = %{?epoch:%epoch:}%{version}-%{release} +Requires: libQtDeclarative = %{?epoch:%epoch:}%{version}-%{release} +Requires: libQt3Support = %{?epoch:%epoch:}%{version}-%{release} +Requires: libQtCLucene = %{?epoch:%epoch:}%{version}-%{release} +Requires: libQtDesigner = %{?epoch:%epoch:}%{version}-%{release} +Requires: libQtDesignerComponents = %{?epoch:%epoch:}%{version}-%{release} +Requires: libQtGui = %{?epoch:%epoch:}%{version}-%{release} +Requires: libQtHelp = %{?epoch:%epoch:}%{version}-%{release} +Requires: libQtMultimedia = %{?epoch:%epoch:}%{version}-%{release} +Requires: libQtNetwork = %{?epoch:%epoch:}%{version}-%{release} +Requires: libQtOpenGL = %{?epoch:%epoch:}%{version}-%{release} +%if "%{?build_openvg}" +Requires: libQtOpenVG = %{?epoch:%epoch:}%{version}-%{release} +%endif +Requires: libQtScript = %{?epoch:%epoch:}%{version}-%{release} +Requires: libQtScriptTools = %{?epoch:%epoch:}%{version}-%{release} +Requires: libQtSql = %{?epoch:%epoch:}%{version}-%{release} +Requires: libQtSvg = %{?epoch:%epoch:}%{version}-%{release} +Requires: libQtTest = %{?epoch:%epoch:}%{version}-%{release} +Requires: libQtWebKit = %{?epoch:%epoch:}%{version}-%{release} +Requires: libQtXml = %{?epoch:%epoch:}%{version}-%{release} +Requires: libQtXmlPatterns = %{?epoch:%epoch:}%{version}-%{release} + +%description devel +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the development files. + +%package apidocs +Group: Documentation +Summary: API documentation for the QT libraries +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description apidocs +API documentation for the QT libraries. + +%package accessible +Group: System/Libraries +Summary: Accessibility plugin for QT +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} + +%description accessible +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the Accessibility plugin. + +%package demos +Group: Documentation +Summary: Qt4 demos +Requires: libQtCore = %{?epoch:%epoch:}%{version}-%{release} +#Requires: %{name}-devel = %{?epoch:%epoch:}%{version}-%{release} + +%description demos +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains demonstrative code for Qt. + +%package designer +Group: Development/Libraries +Summary: Development tool for QT +Requires: libQtDesigner = %{?epoch:%epoch:}%{version}-%{release} + +%description designer +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. +This package contains a GUI development tool. + +%package postgresql +Group: System/Libraries +Summary: PostgreSQL plugin for QT libraries +Requires: libQtSql = %{?epoch:%epoch:}%{version}-%{release} + +%description postgresql +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the PostgreSQL plugin. + +%package mysql +Group: System/Libraries +Summary: MySQL plugin for QT libraries +Requires: libQtSql = %{?epoch:%epoch:}%{version}-%{release} + +%description mysql +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the MySQL plugin. + +%package odbc +Group: System/Libraries +Summary: ODBC plugin for QT libraries +Requires: libQtSql = %{?epoch:%epoch:}%{version}-%{release} + +%description odbc +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the ODBC plugin. + +%package sqlite +Group: System/Libraries +Summary: SQLite plugin for QT libraries +Requires: libQtSql = %{?epoch:%epoch:}%{version}-%{release} +Provides: %{name}-sqlite3 + +%description sqlite +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the SQLite plugin. + +%package sqlite2 +Group: System/Libraries +Summary: SQLite version 2 plugin for QT libraries +Requires: libQtSql = %{?epoch:%epoch:}%{version}-%{release} + +%description sqlite2 +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the SQLite version 2 plugin. + +%package tds +Group: System/Libraries +Summary: Sybase and Microsoft SQL plugin for QT libraries +Requires: libQtSql = %{?epoch:%epoch:}%{version}-%{release} + +%description tds +Qt sets the standard for high-performance, cross-platform application development. +It includes a C++ class library and tools for cross-platform development and internationalization. + +This package contains the Sybase and Microsoft SQL plugin. + +%if %{build_phonon} +%package phonon +Group: System/Libraries +Summary: Multimedia API for %{name} and KDE4 +Provides: phonon_backend + +%description phonon +Multimedia API for %{name} and KDE4. + +%package phonon-devel +Group: Development/Libraries +Summary: Phonon development files for %{name} +Requires: %{name}-phonon = %{?epoch:%epoch:}%{version}-%{release} +Requires: %{name}-devel = %{?epoch:%epoch:}%{version}-%{release} + +%description phonon-devel +Phonon development files for %{name}. +%endif + +%debug_package + +%prep +%setup -q -n qt-everywhere-opensource-src-%{version} +#-D -T +#:<< _EOF +#cd src/3rdparty/webkit +#%patch1 -p1 +#cd ../../.. +#%patch2 -p1 +#%patch3 -p1 +#%patch4 -p1 +%patch5 -p1 +%if "%{_lib}" == "lib64" +%define platform linux-g++-64 +%else +%define platform linux-g++ +%endif + +sed -i -e "s|-O2|%{optflags}|g" mkspecs/%{platform}/qmake.conf + +%build +#:<< _EOF +export qtbuilddir=`pwd` +export PATH=$qtbuilddir/bin:$PATH +export MANPATH=$qtbuilddir/doc/man:$MANPATH +export LD_LIBRARY_PATH=$qtbuilddir/lib:$LD_LIBRARY_PATH + +./configure \ + -prefix %{_qt4_prefix} \ + -bindir %{_qt4_bindir} \ + -datadir %{_qt4_datadir} \ + -demosdir %{_qt4_demosdir} \ + -examplesdir %{_qt4_examplesdir} \ + -headerdir %{_qt4_headerdir} \ + -libdir %{_qt4_libdir} \ + -docdir %{_qt4_docdir} \ + -plugindir %{_qt4_plugindir} \ + -sysconfdir %{_qt4_sysconfdir} \ + -translationdir %{_qt4_translationdir} \ + -platform %{platform} \ + -system-libjpeg \ + -system-libmng \ + -system-libpng \ + -system-sqlite \ + -system-zlib \ +%ifarch arm + -egl \ +%endif + -release \ + -shared \ + -cups \ + -fontconfig \ + -largefile \ + -optimized-qmake \ + -xinerama \ + -xkb \ + -xfixes \ + -xrender \ + -xshape \ + -xmlpatterns \ + -opengl \ + -openssl \ + %{?build_phonon:-phonon -gstreamer} \ + %{!?build_phonon:-no-phonon -no-gstreamer} \ + %{!?build_openvg:-no-openvg} \ + -qdbus \ + -qvfb \ + -sm \ + -webkit \ + -no-nas-sound \ + -no-rpath \ + -no-separate-debug-info \ + -plugin-sql-mysql \ + -plugin-sql-psql \ + -plugin-sql-sqlite << EOF +o +yes +EOF +# -reduce-relocations +# -stl +# -tablet +# -plugin-sql-odbc +# fix xml libraries requirement + +%make SUBLIBS=-lexpat %{?DISTCC} +%make -C tools/qvfb + +%install +[ "%{buildroot}" != / ] && rm -rf %{buildroot} +make install INSTALL_ROOT=%{buildroot} + +# install private headers needed by qt-creator for QmlDesigner component +for d in QtDeclarative QtCore QtScript QtGui; do + install -d -m0755 %{buildroot}%{_includedir}/qt4/$d/private + for f in include/$d/private/*; do + h=`cat $f | sed "s|#include \"../../../\(src.*\)\"|\1|"` + cp $h %{buildroot}%{_includedir}/qt4/$d/private/ + done +done + +# install libwebcore.a and libjscore.a +install -m755 src/3rdparty/webkit/Source/WebCore/release/libwebcore.a %{buildroot}%{_libdir}/libwebcore.a +install -m644 src/3rdparty/webkit/Source/WebCore/release/libwebcore.prl %{buildroot}%{_libdir}/libwebcore.prl +install -m755 src/3rdparty/webkit/Source/JavaScriptCore/release/libjscore.a %{buildroot}%{_libdir}/libjscore.a +install -m644 src/3rdparty/webkit/Source/JavaScriptCore/release/libjscore.prl %{buildroot}%{_libdir}/libjscore.prl + +install -p -m644 LICENSE.GPL3 %{buildroot}%{_qt4_prefix}/ + +install -D -m755 %{S:1} \ + %{buildroot}%{_sysconfdir}/profile.d/%{name}.sh +install -D -m755 %{S:2} \ + %{buildroot}%{_sysconfdir}/profile.d/%{name}.csh + +install -D -m644 %{S:10} \ + %{buildroot}%{_datadir}/icons/hicolor/64x64/apps/qt4-logo.png +install -D -m644 %{S:11} \ + %{buildroot}%{_sysconfdir}/xdg/menus/applications-merged/development-qt4.menu +install -D -m644 %{S:12} \ + %{buildroot}%{_datadir}/desktop-directories/development-qt4.directory + +install -D -m644 %{S:13} \ + %{buildroot}%{_datadir}/applications/designer-qt4.desktop +install -D -m644 %{S:14} \ + %{buildroot}%{_datadir}/icons/hicolor/128x128/apps/designer-qt4.png + +install -D -m644 %{S:15} \ + %{buildroot}%{_datadir}/applications/assistant-qt4.desktop +install -D -m644 %{S:16} \ + %{buildroot}%{_datadir}/icons/hicolor/32x32/apps/assistant-qt4.png + +install -D -m644 %{S:17} \ + %{buildroot}%{_datadir}/applications/linguist-qt4.desktop +install -D -m644 %{S:18} \ + %{buildroot}%{_datadir}/icons/hicolor/32x32/apps/linguist-qt4.png + +install -D -m644 %{S:19} \ + %{buildroot}%{_datadir}/applications/qvfb-qt4.desktop +install -D -m644 %{S:14} \ + %{buildroot}%{_datadir}/icons/hicolor/128x128/apps/qvfb-qt4.png + +install -D -m755 bin/qvfb %{buildroot}%{_qt4_bindir}/qvfb + +# link binaries to bindir +%if "%{_qt4_bindir}" != "%{_bindir}" +install -d %{buildroot}%{_bindir} +pushd %{buildroot}%{_qt4_bindir} +for f in *; do + case "$f" in + assistant|designer|linguist|lrelease|lupdate|moc|\ + qmake|qtconfig|qtdemo|qvfb|uic) + ln -sf %{_qt4_bindir}/$f %{buildroot}%{_bindir}/${f}-qt4 + ;; + *) ;; + esac + ln -sf %{_qt4_bindir}/$f %{buildroot}%{_bindir}/${f} +done +%endif + +%if "%{_qt4_libdir}" != "%{_libdir}" +install -d %{buildroot}%{_sysconfdir}/ld.so.conf.d +echo "%{_qt4_libdir}" > %{buildroot}%{_sysconfdir}/ld.so.conf.d/%{name}.conf +%endif + +# install file with rpm macros +install -d %{buildroot}%{_sysconfdir}/rpm +echo "\ +%%_qt4_version %{version} +%%_qt4_prefix %%{_libdir}/qt4 +%%_qt4_bindir %%{_qt4_prefix}/bin +%%_qt4_datadir %%{_datadir}/qt4 +%%_qt4_demosdir %%{_qt4_prefix}/demos +%%_qt4_docdir %%{_qt4_datadir}/doc +%%_qt4_examplesdir %%{_qt4_prefix}/examples +%%_qt4_headerdir %%{_includedir}/qt4 +%%_qt4_libdir %%{_libdir} +%%_qt4_plugindir %%{_qt4_prefix}/plugins +%%_qt4_sysconfdir %%{_sysconfdir}/xdg +%%_qt4_translationdir %%{_qt4_datadir}/translations +%%_qt4_qmake %%{_qt4_bindir}/qmake" \ + > %{buildroot}%{_sysconfdir}/rpm/macros.qt4 + +%clean +[ "%{buildroot}" != / ] && rm -rf %{buildroot} + +%post -n libQtCore -p /sbin/ldconfig +%postun -n libQtCore -p /sbin/ldconfig + +%post -n libQtDBus -p /sbin/ldconfig +%postun -n libQtDBus -p /sbin/ldconfig + +%post -n libQtDeclarative -p /sbin/ldconfig +%postun -n libQtDeclarative -p /sbin/ldconfig + +%post -n libQt3Support -p /sbin/ldconfig +%postun -n libQt3Support -p /sbin/ldconfig + +%post -n libQtCLucene -p /sbin/ldconfig +%postun -n libQtCLucene -p /sbin/ldconfig + +%post -n libQtDesigner -p /sbin/ldconfig +%postun -n libQtDesigner -p /sbin/ldconfig + +%post -n libQtDesignerComponents -p /sbin/ldconfig +%postun -n libQtDesignerComponents -p /sbin/ldconfig + +%post -n libQtGui -p /sbin/ldconfig +%postun -n libQtGui -p /sbin/ldconfig + +%post -n libQtHelp -p /sbin/ldconfig +%postun -n libQtHelp -p /sbin/ldconfig + +%post -n libQtMeeGoGraphicsSystemHelper -p /sbin/ldconfig +%postun -n libQtMeeGoGraphicsSystemHelper -p /sbin/ldconfig + +%post -n libQtMultimedia -p /sbin/ldconfig +%postun -n libQtMultimedia -p /sbin/ldconfig + +%post -n libQtNetwork -p /sbin/ldconfig +%postun -n libQtNetwork -p /sbin/ldconfig + +%post -n libQtOpenGL -p /sbin/ldconfig +%postun -n libQtOpenGL -p /sbin/ldconfig + +%post -n libQtOpenVG -p /sbin/ldconfig +%postun -n libQtOpenVG -p /sbin/ldconfig + +%post -n libQtScript -p /sbin/ldconfig +%postun -n libQtScript -p /sbin/ldconfig + +%post -n libQtScriptTools -p /sbin/ldconfig +%postun -n libQtScriptTools -p /sbin/ldconfig + +%post -n libQtSql -p /sbin/ldconfig +%postun -n libQtSql -p /sbin/ldconfig + +%post -n libQtSvg -p /sbin/ldconfig +%postun -n libQtSvg -p /sbin/ldconfig + +%post -n libQtTest -p /sbin/ldconfig +%postun -n libQtTest -p /sbin/ldconfig + +%post -n libQtWebKit -p /sbin/ldconfig +%postun -n libQtWebKit -p /sbin/ldconfig + +%post -n libQtXml -p /sbin/ldconfig +%postun -n libQtXml -p /sbin/ldconfig + +%post -n libQtXmlPatterns -p /sbin/ldconfig +%postun -n libQtXmlPatterns -p /sbin/ldconfig + +%if %{build_phonon} +%post phonon -p /sbin/ldconfig +%postun phonon -p /sbin/ldconfig +%endif + +%files -n libQtCore +%defattr(-,root,root) +%{_qt4_libdir}/libQtCore.so.* +%{_sysconfdir}/xdg/menus/applications-merged/development-qt4.menu +%if "%{_qt4_libdir}" != "%{_libdir}" +%dir %{_qt4_libdir} +%{_sysconfdir}/ld.so.conf.d/%{name}.conf +%endif +%{_qt4_prefix}/imports/Qt/labs +%dir %{_qt4_plugindir} +# TODO: move plugins to more appropriate library packages +%{_qt4_plugindir}/bearer/* +%{_qt4_plugindir}/codecs/ +%{_qt4_plugindir}/graphicssystems/ +%{_qt4_plugindir}/iconengines/ +%{_qt4_plugindir}/imageformats/ +%{_qt4_plugindir}/inputmethods/ +%{_qt4_plugindir}/qmltooling/ +%{_qt4_datadir}/phrasebooks/ +%dir %{_qt4_translationdir} +%{_qt4_translationdir}/qt_*.qm +%{_qt4_translationdir}/qtconfig_*.qm +# +%{_datadir}/icons/hicolor/*/apps/qt4-logo.png +%{_datadir}/desktop-directories/development-qt4.directory +%{_qt4_prefix}/LICENSE.GPL3 +%doc LGPL_*.txt LICENSE.* README + +%files -n libQtDBus +%defattr(-,root,root) +%{_qt4_bindir}/qdbus +%{_qt4_bindir}/qdbuscpp2xml +%{_qt4_bindir}/qdbusxml2cpp +%{_qt4_bindir}/qdbusviewer +%{_qt4_libdir}/libQtDBus.so.* + +%files -n libQt3Support +%defattr(-,root,root) +%{_qt4_libdir}/libQt3Support.so.* + +%files -n libQtCLucene +%defattr(-,root,root) +%{_qt4_libdir}/libQtCLucene.so.* + +%files -n libQtDeclarative +%defattr(-,root,root) +%{_qt4_libdir}/libQtDeclarative.* + +%files -n libQtDesigner +%defattr(-,root,root) +%{_qt4_libdir}/libQtDesigner.so.* + +%files -n libQtDesignerComponents +%defattr(-,root,root) +%{_qt4_libdir}/libQtDesignerComponents.so.* + +%files -n libQtGui +%defattr(-,root,root) +%{_qt4_bindir}/qtconfig +%{_qt4_libdir}/libQtGui.so.* + +%files -n libQtHelp +%defattr(-,root,root) +%{_qt4_libdir}/libQtHelp.so.* + +#%ifarch arm +#%files -n libQtMeeGoGraphicsSystemHelper +#%defattr(-,root,root) +#%{_qt4_libdir}/libQtMeeGoGraphicsSystemHelper.so.* +#%endif + +%files -n libQtMultimedia +%defattr(-,root,root) +%{_qt4_libdir}/libQtMultimedia.so.* + +%files -n libQtNetwork +%defattr(-,root,root) +%{_qt4_libdir}/libQtNetwork.so.* + +%files -n libQtOpenGL +%defattr(-,root,root) +%{_qt4_libdir}/libQtOpenGL.so.* + +%if "%{?build_openvg}" +%files -n libQtOpenVG +%defattr(-,root,root) +%{_qt4_libdir}/libQtOpenVG.so.* +%endif + +%files -n libQtScript +%defattr(-,root,root) +%{_qt4_libdir}/libQtScript.so.* +%{_qt4_translationdir}/qtscript_*.qm + +%files -n libQtScriptTools +%defattr(-,root,root) +%dir %{_qt4_plugindir}/script +%{_qt4_plugindir}/script/* +%{_qt4_libdir}/libQtScriptTools.so.* + +%files -n libQtSql +%defattr(-,root,root) +%dir %{_qt4_plugindir}/sqldrivers +%{_qt4_libdir}/libQtSql.so.* + +%files -n libQtSvg +%defattr(-,root,root) +%{_qt4_libdir}/libQtSvg.so.* + +%files -n libQtTest +%defattr(-,root,root) +%{_qt4_libdir}/libQtTest.so.* + +%files -n libQtXml +%defattr(-,root,root) +%{_qt4_bindir}/qdoc3 +%{_qt4_libdir}/libQtXml.so.* + +%files -n libQtXmlPatterns +%defattr(-,root,root) +%{_qt4_libdir}/libQtXmlPatterns.so.* + +%files -n libQtWebKit +%defattr(-,root,root) +%{_qt4_bindir}/qmlviewer +%{_qt4_prefix}/imports/QtWebKit/libqmlwebkitplugin.so +%{_qt4_prefix}/imports/QtWebKit/qmldir +%{_qt4_libdir}/libQtWebKit.so.* + +%files devel +%defattr(-,root,root) +%{_sysconfdir}/rpm/macros.qt4 +%{_sysconfdir}/profile.d/%{name}.csh +%{_sysconfdir}/profile.d/%{name}.sh +%{_bindir}/lrelease* +%{_bindir}/lconvert +%{_bindir}/lupdate* +%{_bindir}/moc* +%{_bindir}/qdbus +%{_bindir}/qdbuscpp2xml +%{_bindir}/qdbusxml2cpp +%{_bindir}/qdbusviewer +%{_bindir}/qmake* +%{_bindir}/qtconfig* +%{_bindir}/qt3to4 +%{_bindir}/qcollectiongenerator +%{_bindir}/qhelpconverter +%{_bindir}/qhelpgenerator +%{_bindir}/qmlplugindump +%{_bindir}/qttracereplay +%{_bindir}/rcc +%{_bindir}/uic* +%{_bindir}/xmlpatterns +%{_bindir}/xmlpatternsvalidator +%{_qt4_bindir}/lconvert +%{_qt4_bindir}/lrelease +%{_qt4_bindir}/lupdate +%{_qt4_bindir}/moc +%{_qt4_bindir}/qcollectiongenerator +%{_qt4_bindir}/qhelpconverter +%{_qt4_bindir}/qhelpgenerator +%{_qt4_bindir}/qmake +%{_qt4_bindir}/qmlplugindump +%{_qt4_bindir}/qt3to4 +%{_qt4_bindir}/qttracereplay +%{_qt4_bindir}/rcc +%{_qt4_bindir}/uic +%{_qt4_bindir}/uic3 +%{_qt4_bindir}/xmlpatterns +%{_qt4_bindir}/xmlpatternsvalidator +%if "%{_qt4_headerdir}" != "%{_includedir}" +%dir %{_qt4_headerdir} +%endif +%{_qt4_headerdir}/Qt/ +%{_qt4_headerdir}/Qt3Support/ +#%{_qt4_headerdir}/QtAssistant/ +%{_qt4_headerdir}/QtCore/ +%{_qt4_headerdir}/QtDBus/ +%{_qt4_headerdir}/QtDesigner/ +%{_qt4_headerdir}/QtGui/ +%{_qt4_headerdir}/QtHelp/ +#%ifarch arm +#%{_qt4_headerdir}/QtMeeGoGraphicsSystemHelper/ +#%endif +%{_qt4_headerdir}/QtMultimedia/ +%{_qt4_headerdir}/QtNetwork/ +%{_qt4_headerdir}/QtOpenGL/ +%if "%{?build_openvg}" +%{_qt4_headerdir}/QtOpenVG/ +%endif +%{_qt4_headerdir}/QtScriptTools/ +%{_qt4_headerdir}/QtScript/ +%{_qt4_headerdir}/QtSql/ +%{_qt4_headerdir}/QtSvg/ +%{_qt4_headerdir}/QtTest/ +%{_qt4_headerdir}/QtUiTools/ +%{_qt4_headerdir}/QtWebKit/ +%{_qt4_headerdir}/QtXml/ +%{_qt4_headerdir}/QtXmlPatterns/ +%{_qt4_headerdir}/QtDeclarative/ +%{?build_phonon:%exclude %{_qt4_headerdir}/phonon/} +#%{?build_phonon:%exclude %{_qt4_headerdir}/Qt/phonon*} +%{_qt4_libdir}/libwebcore.a +%{_qt4_libdir}/libwebcore.prl +%{_qt4_libdir}/libjscore.a +%{_qt4_libdir}/libjscore.prl +%{_qt4_libdir}/libQtUiTools.a +%{_qt4_libdir}/libQt3Support.la +%{_qt4_libdir}/libQt3Support.prl +%{_qt4_libdir}/libQt3Support.so +%{_qt4_libdir}/libQtCLucene.la +%{_qt4_libdir}/libQtCLucene.prl +%{_qt4_libdir}/libQtCLucene.so +%{_qt4_libdir}/libQtCore.la +%{_qt4_libdir}/libQtCore.prl +%{_qt4_libdir}/libQtCore.so +%{_qt4_libdir}/libQtDBus.la +%{_qt4_libdir}/libQtDBus.prl +%{_qt4_libdir}/libQtDBus.so +%{_qt4_libdir}/libQtDesigner.prl +%{_qt4_libdir}/libQtDesigner.so +%{_qt4_libdir}/libQtDesignerComponents.prl +%{_qt4_libdir}/libQtDesignerComponents.so +%{_qt4_libdir}/libQtGui.la +%{_qt4_libdir}/libQtGui.prl +%{_qt4_libdir}/libQtGui.so +%{_qt4_libdir}/libQtHelp.la +%{_qt4_libdir}/libQtHelp.prl +%{_qt4_libdir}/libQtHelp.so +#%ifarch arm +#%{_qt4_libdir}/libQtMeeGoGraphicsSystemHelper.la +#%{_qt4_libdir}/libQtMeeGoGraphicsSystemHelper.prl +#%{_qt4_libdir}/libQtMeeGoGraphicsSystemHelper.so +#%endif +%{_qt4_libdir}/libQtMultimedia.la +%{_qt4_libdir}/libQtMultimedia.prl +%{_qt4_libdir}/libQtMultimedia.so +%{_qt4_libdir}/libQtNetwork.la +%{_qt4_libdir}/libQtNetwork.prl +%{_qt4_libdir}/libQtNetwork.so +%{_qt4_libdir}/libQtOpenGL.la +%{_qt4_libdir}/libQtOpenGL.prl +%{_qt4_libdir}/libQtOpenGL.so +%if "%{?build_openvg}" +%{_qt4_libdir}/libQtOpenVG.la +%{_qt4_libdir}/libQtOpenVG.prl +%{_qt4_libdir}/libQtOpenVG.so +%endif +%{_qt4_libdir}/libQtScript.la +%{_qt4_libdir}/libQtScript.prl +%{_qt4_libdir}/libQtScript.so +%{_qt4_libdir}/libQtScriptTools.la +%{_qt4_libdir}/libQtScriptTools.prl +%{_qt4_libdir}/libQtScriptTools.so +%{_qt4_libdir}/libQtSql.la +%{_qt4_libdir}/libQtSql.prl +%{_qt4_libdir}/libQtSql.so +%{_qt4_libdir}/libQtSvg.la +%{_qt4_libdir}/libQtSvg.prl +%{_qt4_libdir}/libQtSvg.so +%{_qt4_libdir}/libQtTest.la +%{_qt4_libdir}/libQtTest.prl +%{_qt4_libdir}/libQtTest.so +%{_qt4_libdir}/libQtUiTools.prl +%{_qt4_libdir}/libQtWebKit.la +%{_qt4_libdir}/libQtWebKit.prl +%{_qt4_libdir}/libQtWebKit.so +%{_qt4_libdir}/libQtXml.la +%{_qt4_libdir}/libQtXml.prl +%{_qt4_libdir}/libQtXml.so +%{_qt4_libdir}/libQtXmlPatterns.la +%{_qt4_libdir}/libQtXmlPatterns.prl +%{_qt4_libdir}/libQtXmlPatterns.so + +%{_qt4_prefix}/tests/qt4/tst_* + +%{?build_phonon:%exclude %{_qt4_libdir}/libphonon.la} +%{?build_phonon:%exclude %{_qt4_libdir}/libphonon.prl} +%{?build_phonon:%exclude %{_qt4_libdir}/libphonon.so} +# +%{_qt4_libdir}/pkgconfig/*.pc +%{?build_phonon:%exclude %{_libdir}/pkgconfig/phonon.pc} +# +%{_qt4_datadir}/mkspecs/ +%{_qt4_datadir}/q3porting.xml +# + +%files apidocs +%defattr(-,root,root) +%{_qt4_docdir}/ + +%files demos +%defattr(-,root,root) +%{_bindir}/qtdemo* +%{_qt4_bindir}/qtdemo +%{_qt4_demosdir}/ +%{_qt4_examplesdir}/ + +%files designer +%defattr(-,root,root) +%{_bindir}/assistant* +%{_bindir}/designer* +%{_bindir}/linguist* +%{_bindir}/pixeltool +%{_bindir}/qdoc3 +%{_bindir}/qmlviewer +%{_bindir}/qvfb* +%{_qt4_bindir}/assistant* +%{_qt4_bindir}/designer +%{_qt4_bindir}/linguist +%{_qt4_bindir}/qvfb +%{_qt4_bindir}/pixeltool +%{_qt4_plugindir}/designer/ +%{_qt4_translationdir}/assistant_*.qm +%{_qt4_translationdir}/designer_*.qm +%{_qt4_translationdir}/linguist_*.qm +%{_qt4_translationdir}/qvfb_*.qm +# +%{_datadir}/applications/assistant-qt4.desktop +%{_datadir}/applications/designer-qt4.desktop +%{_datadir}/applications/linguist-qt4.desktop +%{_datadir}/applications/qvfb-qt4.desktop +%{_datadir}/icons/hicolor/*/apps/assistant-qt4.png +%{_datadir}/icons/hicolor/*/apps/designer-qt4.png +%{_datadir}/icons/hicolor/*/apps/linguist-qt4.png +%{_datadir}/icons/hicolor/*/apps/qvfb-qt4.png + +%files accessible +%defattr(-,root,root) +%dir %{_qt4_plugindir}/accessible +%{_qt4_plugindir}/accessible/libqtaccessiblecompatwidgets.so +%{_qt4_plugindir}/accessible/libqtaccessiblewidgets.so + +%files postgresql +%defattr(-,root,root) +%{_qt4_plugindir}/sqldrivers/libqsqlpsql.so + +%files mysql +%defattr(-,root,root) +%{_qt4_plugindir}/sqldrivers/libqsqlmysql.so + +%files odbc +%defattr(-,root,root) +%{_qt4_plugindir}/sqldrivers/libqsqlodbc.so + +%files sqlite +%defattr(-,root,root) +%{_qt4_plugindir}/sqldrivers/libqsqlite.so + +%if "%{stage1}" != "1" +%files sqlite2 +%defattr(-,root,root) +%{_qt4_plugindir}/sqldrivers/libqsqlite2.so +%endif + +%files tds +%defattr(-,root,root) +%{_qt4_plugindir}/sqldrivers/libqsqltds.so + +%if %{build_phonon} +%files phonon +%defattr(-,root,root) +%{_qt4_libdir}/libphonon.so.* +%{_qt4_plugindir}/phonon_backend/ + +%files phonon-devel +%defattr(-,root,root) +#%{_qt4_headerdir}/Qt/phonon* +%{_qt4_headerdir}/phonon/ +%{_qt4_libdir}/libphonon.la +%{_qt4_libdir}/libphonon.so +%{_qt4_libdir}/libphonon.prl +%{_qt4_libdir}/pkgconfig/phonon.pc +%endif + +%changelog +* Mon Apr 28 2014 Automatic Build System 4.8.6-1mamba +- automatic version update by autodist + +* Sat Apr 05 2014 Silvan Calarco 4.8.5-2mamba +- move %{_bindir} binaries symlink to devel packages to allow i586 installation on x86_64 + +* Tue Jul 09 2013 Automatic Build System 4.8.5-1mamba +- update to 4.8.5 + +* Tue Feb 12 2013 Silvan Calarco 4.8.4-2mamba +- install private headers needed by qt-creator for QmlDesigner component + +* Sat Dec 01 2012 Automatic Build System 4.8.4-1mamba +- automatic version update by autodist + +* Thu Oct 11 2012 Automatic Build System 4.8.3-1mamba +- automatic version update by autodist +- libQtCore: provide libqt = %{version} and libqt4 = %{version} (source edit) + +* Fri Jul 20 2012 Silvan Calarco 4.8.2-3mamba +- keep -egl switch only on arm. keep on well tested glx on x86 desktops +- enable OpenVG support (with Mesa >= 8.0.4-2mamba) + +* Mon Jul 16 2012 Silvan Calarco 4.8.2-2mamba +- install libwebcore.a and libjscore.arequired by libQtWebKit + +* Wed Jun 27 2012 Silvan Calarco 4.8.2-1mamba +- update to 4.8.2 + +* Fri Apr 13 2012 Silvan Calarco 4.8.1-2mamba +- add explicit requirement for dynamically requested libicu library +- split libraries into their own subpackage; libQtCore obsoletes libqt4 + +* Wed Apr 04 2012 Silvan Calarco 4.8.1-1mamba +- update to 4.8.1 + +* Sun Dec 18 2011 Silvan Calarco 4.7.4-5mamba +- move libQtDesigner* to libQt4 and libQt4-devel packages to avoid installing libqt4-designer for non-devel environments + +* Tue Dec 13 2011 Silvan Calarco 4.7.4-4mamba +- rebuilt using EGL + +* Tue Sep 20 2011 Silvan Calarco 4.7.4-3mamba +- explicitly disable OpenVG until build system is fixed in Mesa (it requires gallium EGL which is disabled) + +* Sat Sep 17 2011 Silvan Calarco 4.7.4-2mamba +- rebuilt with openVG support + +* Wed Sep 07 2011 Stefano Cotta Ramusino 4.7.4-1mamba +- update to 4.7.4 + +* Wed May 04 2011 Automatic Build System 4.7.3-1mamba +- automatic update by autodist +- libqt4-phonon: provide phonon_backend + +* Sat Mar 05 2011 Automatic Build System 4.7.2-1mamba +- automatic update by autodist + +* Tue Nov 09 2010 Automatic Build System 4.7.1-1mamba +- automatic update to 4.7.1 by autodist + +* Sat Oct 16 2010 Automatic Build System 4.7.0-2mamba +- automatic rebuild by autodist + +* Wed Sep 29 2010 Automatic Build System 4.7.0-1mamba +- automatic update by autodist + +* Fri Jul 02 2010 Silvan Calarco 4.6.3-3mamba +- rebuilt to fix libpng mismatch error + +* Thu Jul 01 2010 Automatic Build System 4.6.3-2mamba +- automatic rebuild by autodist + +* Tue Jun 08 2010 Automatic Build System 4.6.3-1mamba +- automatic update to 4.6.3 by autodist + +* Thu Jun 03 2010 Silvan Calarco 4.6.2-2mamba +- also create link to /usr/bin without -qt4 suffix to make them preferred to qt3's by default + +* Mon Feb 15 2010 Automatic Build System 4.6.2-1mamba +- automatic update to 4.6.2 by autodist + +* Wed Jan 27 2010 Davide Madrisan 4.6.1-2mamba +- provide the debug package + +* Thu Jan 21 2010 Automatic Build System 4.6.1-1mamba +- automatic update to 4.6.1 by autodist + +* Thu Jan 07 2010 Automatic Build System 4.6.0-1mamba +- update to 4.6.0 + +* Sat Oct 10 2009 Automatic Build System 4.5.3-1mamba +- update to 4.5.3 + +* Mon Oct 05 2009 Silvan Calarco 4.5.2-2mamba +- rebuilt with libjpeg 7 + +* Fri Jun 26 2009 Automatic Build System 4.5.2-1mamba +- automatic update to 4.5.2 by autodist + +* Thu May 28 2009 Silvan Calarco 4.5.1-2mamba +- added patch that fixes a regression in SVG rendering + +* Fri Apr 24 2009 Automatic Build System 4.5.1-1mamba +- automatic update to 4.5.1 by autodist + +* Thu Mar 05 2009 Silvan Calarco 4.5.0-1mamba +- automatic update to 4.5.0 by autodist + +* Sat Feb 28 2009 Silvan Calarco 4.4.3-4mamba +- automatic rebuild by autodist + +* Mon Jan 05 2009 Silvan Calarco 4.4.3-3mamba +- move qdbus from devel to main package +- rebuilt against libmysql5 + +* Tue Oct 07 2008 Silvan Calarco 4.4.3-2mamba +- removed conflicts with libphonon and libphonon-devel + +* Mon Sep 29 2008 Silvan Calarco 4.4.3-1mamba +- automatic update to 4.4.3 by autodist + +* Fri Sep 19 2008 Silvan Calarco 4.4.2-1mamba +- automatic update to 4.4.2 by autodist + +* Fri Sep 05 2008 Silvan Calarco 4.4.1-3mamba +- libqt4-phonon: remove requirement for libqt4-devel + +* Thu Aug 28 2008 Aleph0 4.4.1-2mamba +- create phonon subpackage + +* Wed Aug 27 2008 Aleph0 4.4.1-1mamba +- update to 4.4.1 + +* Thu May 29 2008 Aleph0 4.4.0-1mamba +- update to 4.4.0 +- fixed libqt4-qvfb.desktop +- build QtXmlPatterns (and drop -no-g++-exceptions), Phonon, and WebKit modules. +- enabled GStreamer support + +* Sat Mar 01 2008 Silvan Calarco 4.3.4-1mamba +- update to 4.3.4 + +* Fri Jan 11 2008 Aleph0 4.3.3-1mamba +- update to 4.3.3 +- move header files to %{_includedir}/qt4 to be FHS-friendly +- move libraries to %{_libdir} +- move data files to %{_datadir}/qt4 +- provide an rpm macro file: %{_sysconfdir}/rpm/macros.qt4 +- create symlinks to binaries from %{_bindir} + +* Mon Nov 05 2007 Silvan Calarco 4.3.2-1mamba +- update to 4.3.2 + +* Sat Sep 01 2007 Silvan Calarco 4.3.1-3mamba +- profile: set QTDIR if not previously set and set QT4DIR + +* Thu Aug 16 2007 Silvan Calarco 4.3.1-2mamba +- run ldconfig on post script + +* Wed Aug 15 2007 Silvan Calarco 4.3.1-1mamba +- update to 4.3.1 +- add provide for qt4-x11 + +* Wed Jul 04 2007 Aleph0 4.3.0-1mamba +- update to 4.3.0 + +* Wed Mar 28 2007 Davide Madrisan 4.2.3-1mamba +- update to version 4.2.3 by autospec (fixes several security issues) +- profile file renamed from libqt3 to libqt4 +- use a less verbose description for the main package +- fixed url and licences info in the description of the main package +- create the %{_sysconfdir}/ld.so.conf.d/%{name}.conf file +- use sqlite system libraries instead of the qt4 private copy +- symlinks to libQtAssistantClient, libQtDesigner, and libQtDesignerComponents + removed from the devel package to avoid broken symlinks if the package + libqt4-designer is not installed +- qt4 plugins now require the main package with same version and release +- desktop file for designer4 modified to fit freedesktop standard +- new icon for designer4 desktop file +- removed all the unused %%define directives +- added a new menu for Qt4 +- added a desktop file for assistant4 e linguist4 +- enabled XShape and XKB support + +* Sat Dec 09 2006 Silvan Calarco 4.2.2-1qilnx +- update to version 4.2.2 by autospec + +* Fri Oct 20 2006 Silvan Calarco 3.3.6-1qilnx +- update to version 3.3.6 by autospec + +* Mon Sep 18 2006 Silvan Calarco 3.3.5-6qilnx +- added qvfb desktop menu icon + +* Wed May 17 2006 Davide Madrisan 3.3.5-5qilnx +- added a dektop file for qt-designer +- fixed package license syntax + +* Mon May 15 2006 Silvan Calarco 3.3.5-4qilnx +- add patch to increment max font size displayed (was 256 pixel = 184, + set to 2048) + +* Wed Dec 07 2005 Massimo Pintore 3.3.5-3qilnx +- added qt3 and libqt3 as provides +- added script libqt.sh in %{_sysconfdir}/profile.d/ to set environment + variables + +* Wed Dec 07 2005 Silvan Calarco 3.3.5-2qilnx +- added sqlite plugin + +* Mon Sep 12 2005 Massimo Pintore 3.3.5-1qilnx +- update to version 3.3.5 by autospec +- add tools patch to build the executables qembed and qvfb + +* Thu Sep 08 2005 Massimo Pintore 3.3.4-5qilnx +- rebuilt with the virtual frame buffer enabled (-qvfb) + +* Wed Aug 31 2005 Davide Madrisan 3.3.4-4qilnx +- add visibility patch to improve performance + +* Wed Aug 24 2005 Davide Madrisan 3.3.4-3qilnx +- rebuilt against gcc4 +- fix build problem and buildkey issue with gcc4 +- switched to %%majversion + +* Tue Mar 15 2005 Silvan Calarco 3.3.4-2qilnx +- delete in %%pre dir %{%{qtdir}}/mkspecs/default/ because it will be + replaced by a symlink + +* Mon Mar 14 2005 Silvan Calarco 3.3.4-1qilnx +- update to version 3.3.4 by autospec + +* Sat Dec 11 2004 Silvan Calarco 3.3.3-5qilnx +- fixes for kde plugin dir in qtrc skeleton + +* Fri Dec 10 2004 Silvan Calarco 3.3.3-4qilnx +- documentation moved to devel package + +* Fri Sep 24 2004 Silvan Calarco 3.3.3-3qilnx +- fix for qmake that was missing + +* Sat Sep 18 2004 Silvan Calarco 3.3.3-2qilnx +- rebuilt with gcc 3.3.4 and Xorg 6.8.0 + +* Mon Aug 30 2004 Davide Madrisan 3.3.3-1qilnx +- update to version 3.3.3 by autospec +- bugfixes and security fixes (CAN-2004-0691, CAN-2004-0692, CAN-2004-0693) + +* Thu Jul 08 2004 Silvan Calarco 3.3.2-3qilnx +- devel apps like qmake are in /usr/lib/qt3/bin and also as links in /usr/bin + +* Wed Jun 30 2004 Silvan Calarco 3.3.2-2qilnx +- rebuilt with Xorg 6.7.0 + +* Tue Apr 27 2004 Silvan Calarco 3.3.2-1qilnx +- new version build + +* Mon Nov 24 2003 Silvan Calarco 3.2.3-2qilnx +- moved binaries to %bindir +- moved documentation to /usr/share/qt3/doc (as looked for by kde) + +* Fri Nov 21 2003 Silvan Calarco 3.2.3-1qilnx +- new version rebuild + +* Mon Nov 03 2003 Silvan Calarco 3.2.2-1qilnx +- new version rebuild +- added mysql and odbc support + +* Wed Sep 17 2003 Silvan Calarco 3.2.1-1qilnx +- new version rebuild + +* Tue Jul 18 2003 Silvan Calarco 3.1.2-4qilnx +- rebuild with postgresql plugin support + +* Tue Jun 19 2003 Silvan Calarco 3.1.2-3qilnx +- added default profile in /etc/skel + +* Sun May 25 2003 Silvan Calarco 3.1.2-2qilnx +- moved prefix from /usr/lib/qt to /usr/lib/qt3 +- added ld.so.conf configuration +- moved designer binaries to its own package + +* Wed May 21 2003 Silvan Calarco 3.1.2-1qilnx +- first build