qt4-vl.spec 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968
  1. %define type everywhere-opensource-src
  2. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  3. # See http://bugzilla.redhat.com/223663
  4. %define multilib_archs x86_64 %{ix86} ppc64 ppc s390x s390 sparc64 sparcv9
  5. Summary: Qt toolkit
  6. Summary(ja): Qt ツールキット
  7. Name: qt4
  8. Version: 4.8.2
  9. Release: 1%{?_dist_release}
  10. # See LGPL_EXCEPTIONS.txt, LICENSE.GPL3, respectively, for exception details
  11. License: (LGPLv2 with exceptions or GPLv3 with exceptions) and ASL 2.0 and BSD and FTL and MIT
  12. Group: System Environment/Libraries
  13. URL: http://qt.nokia.com/
  14. Source0: http://get.qt.nokia.com/qt/source/qt-%{type}-%{version}.tar.gz
  15. # default Qt config file
  16. Source4: Trolltech.conf
  17. # header file to workaround multilib issue
  18. Source5: qconfig-multilib.h
  19. # desktop files
  20. Source20: assistant.desktop.vine
  21. Source21: designer.desktop.vine
  22. Source22: linguist.desktop.vine
  23. Source23: qtdemo.desktop.vine
  24. Source24: qtconfig.desktop.vine
  25. # upstream qt4-logo, http://trolltech.com/images/products/qt/qt4-logo
  26. Source30: hi128-app-qt4-logo.png
  27. Source31: hi48-app-qt4-logo.png
  28. # set default QMAKE_CFLAGS_RELEASE
  29. Patch2: qt-everywhere-opensource-src-4.8.0-tp-multilib-optflags.patch
  30. # get rid of timestamp which causes multilib problem
  31. Patch4: qt-everywhere-opensource-src-4.7.0-beta1-uic_multilib.patch
  32. # enable ft lcdfilter
  33. Patch15: qt-x11-opensource-src-4.5.1-enable_ft_lcdfilter.patch
  34. # may be upstreamable, not sure yet
  35. # workaround for gdal/grass crashers wrt glib_eventloop null deref's
  36. Patch23: qt-everywhere-opensource-src-4.6.3-glib_eventloop_nullcheck.patch
  37. # workaround for a MOC issue with Boost 1.48 headers (#756395)
  38. Patch24: qt-everywhere-opensource-src-4.8.0-rc1-moc-boost148.patch
  39. ## upstreamable bits
  40. # fix invalid inline assembly in qatomic_{i386,x86_64}.h (de)ref implementations
  41. Patch53: qt-x11-opensource-src-4.5.0-fix-qatomic-inline-asm.patch
  42. # fix invalid assumptions about mysql_config --libs
  43. # http://bugzilla.redhat.com/440673
  44. Patch54: qt-everywhere-opensource-src-4.7.0-beta2-mysql_config.patch
  45. # http://bugs.kde.org/show_bug.cgi?id=180051#c22
  46. Patch55: qt-everywhere-opensource-src-4.6.2-cups.patch
  47. # Fails to create debug build of Qt projects on mingw (rhbz#653674)
  48. Patch64: qt-everywhere-opensource-src-4.7.1-QTBUG-14467.patch
  49. # fix QTreeView crash triggered by KPackageKit (patch by David Faure)
  50. Patch65: qt-everywhere-opensource-src-4.8.0-tp-qtreeview-kpackagekit-crash.patch
  51. # fix the outdated standalone copy of JavaScriptCore
  52. Patch67: qt-everywhere-opensource-src-4.8.0-beta1-s390.patch
  53. # https://bugs.webkit.org/show_bug.cgi?id=63941
  54. # -Wall + -Werror = fail
  55. Patch68: webkit-qtwebkit-2.2-no_Werror.patch
  56. # revert qlist.h commit that seems to induce crashes in qDeleteAll<QList (QTBUG-22037)
  57. Patch69: qt-everywhere-opensource-src-4.8.0-QTBUG-22037.patch
  58. # Qt doesn't close orphaned file descriptors after printing (#746601, QTBUG-14724)
  59. Patch70: qt-everywhere-opensource-src-4.8.0-QTBUG-14724.patch
  60. # Buttons in Qt applications not clickable when run under gnome-shell (#742658, QTBUG-21900)
  61. Patch71: qt-everywhere-opensource-src-4.8.0-QTBUG-21900.patch
  62. # QtWebKit wtf library: GMutex is a union rather than a struct in GLib >= 2.31
  63. # fixes FTBFS: https://bugs.webkit.org/show_bug.cgi?id=69840
  64. Patch73: qt-everywhere-opensource-src-4.8.0-qtwebkit-glib231.patch
  65. # workaround
  66. # sql/drivers/tds/qsql_tds.cpp:341:49: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]
  67. Patch74: qt-everywhere-opensource-src-4.7.4-tds_no_strict_aliasing.patch
  68. # workaround crash on ppc64
  69. Patch75: qt-ppc64-crash.patch
  70. # add missing method for QBasicAtomicPointer on s390(x)
  71. Patch76: qt-everywhere-opensource-src-4.8.0-s390-atomic.patch
  72. # don't spam if libicu is not present at runtime
  73. Patch77: qt-everywhere-opensource-src-4.8.0-icu_no_spam.patch
  74. # gcc doesn't support flag -fuse-ld=gold
  75. Patch80: qt-everywhere-opensource-src-4.8.0-ld-gold.patch
  76. # https://bugzilla.redhat.com/show_bug.cgi?id=810500
  77. Patch81: qt-everywhere-opensource-src-4.8.2--assistant-crash.patch
  78. # upstream patches
  79. # security patches
  80. # Vine Patches
  81. # use system ca-bundle certs, http://bugzilla.redhat.com/521911
  82. Patch1001: qt-everywhere-opensource-src-4.8.0-system_ca_certificates_vine.patch
  83. ## optional plugin bits
  84. # set to -no-sql-<driver> to disable
  85. # set to -qt-sql-<driver> to enable *in* qt library
  86. %define ibase -no-sql-ibase
  87. %define mysql -plugin-sql-mysql
  88. %define odbc -plugin-sql-odbc
  89. %define psql -plugin-sql-psql
  90. %define sqlite -plugin-sql-sqlite
  91. %define tds -no-sql-tds
  92. %define phonon -phonon
  93. %define phonon_backend -phonon-backend
  94. %define dbus -dbus-linked
  95. %define graphicssystem -graphicssystem raster
  96. # FIXME/TODO: use system webkit for assistant, examples/webkit, demos/browser
  97. %define webkit -webkit
  98. %define noopt -no-mmx -no-3dnow -no-sse -no-sse2 -no-sse3 -no-ssse3 -no-sse4.1 -no-sse4.2 -no-avx -no-neon
  99. # See http://bugzilla.redhat.com/196901
  100. %define _qt4 %{name}
  101. %define _qt4_prefix %{_libdir}/qt4
  102. %define _qt4_bindir %{_qt4_prefix}/bin
  103. # _qt4_datadir is not multilib clean, and hacks to workaround that breaks stuff.
  104. #define _qt4_datadir %{_datadir}/qt4
  105. %define _qt4_datadir %{_qt4_prefix}
  106. %define _qt4_demosdir %{_qt4_prefix}/demos
  107. %define _qt4_docdir %{_docdir}/qt4
  108. %define _qt4_examplesdir %{_qt4_prefix}/examples
  109. %define _qt4_headerdir %{_includedir}
  110. %define _qt4_importdir %{_qt4_prefix}/imports
  111. %define _qt4_libdir %{_libdir}
  112. %define _qt4_plugindir %{_qt4_prefix}/plugins
  113. %define _qt4_sysconfdir %{_sysconfdir}
  114. %define _qt4_translationdir %{_datadir}/qt4/translations
  115. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  116. BuildRequires: alsa-lib-devel
  117. BuildRequires: cups-devel >= 1.1.9
  118. BuildRequires: dbus-devel >= 0.62
  119. BuildRequires: desktop-file-utils
  120. BuildRequires: findutils
  121. BuildRequires: fontconfig-devel
  122. BuildRequires: glib2-devel
  123. BuildRequires: gtk2-devel
  124. BuildRequires: libicu-devel
  125. BuildRequires: libjpeg-devel
  126. BuildRequires: libmng-devel
  127. BuildRequires: libpng-devel >= 1.2.5
  128. BuildRequires: libtiff-devel
  129. BuildRequires: NetworkManager-devel
  130. BuildRequires: openssl-devel
  131. BuildRequires: pkgconfig
  132. BuildRequires: pulseaudio-libs-devel
  133. BuildRequires: rsync
  134. BuildRequires: zlib-devel
  135. # X11 dependencies
  136. %define x_deps libICE-devel libSM-devel libXcursor-devel libXext-devel libXfixes-devel libXft-devel libXi-devel libXinerama-devel libXrandr-devel libXrender-devel libXt-devel libXtst-devel libXv-devel libX11-devel xorg-x11-proto-devel libGL-devel libGLU-devel
  137. BuildRequires: %{x_deps}
  138. %if "%{?ibase}" != "-no-sql-ibase"
  139. BuildRequires: firebird-devel
  140. %endif
  141. %if "%{?mysql}" != "-no-sql-mysql"
  142. BuildRequires: MySQL-devel >= 4.0
  143. %endif
  144. %if "%{?phonon_backend}" == "-phonon-backend"
  145. BuildRequires: gstreamer-devel >= 0.10
  146. BuildRequires: gstreamer-plugins-base-devel >= 0.10
  147. %endif
  148. %if "%{?psql}" != "-no-sql-psql"
  149. BuildRequires: postgresql-devel
  150. BuildRequires: krb5-devel libxslt-devel pam-devel
  151. BuildRequires: readline-devel
  152. %endif
  153. %if "%{?odbc}" != "-no-sql-odbc"
  154. BuildRequires: unixODBC-devel
  155. %endif
  156. %if "%{?sqlite}" != "-no-sql-sqlite"
  157. %define _system_sqlite -system-sqlite
  158. BuildRequires: sqlite3-devel
  159. %endif
  160. Obsoletes: qt4-sqlite < 4.7.3
  161. Provides: qt4-sqlite = %{version}-%{release}
  162. Obsoletes: qgtkstyle < 0.1
  163. Provides: qgtkstyle = 0.1-1
  164. Provides: WebKit-qt
  165. Vendor: Project Vine
  166. Distribution: Vine Linux
  167. %description
  168. Qt is a GUI software toolkit which simplifies the task of writing and
  169. maintaining GUI (Graphical User Interface) applications
  170. for the X Window System.
  171. Qt is written in C++ and is fully object-oriented.
  172. This package contains the shared library needed to run qt
  173. applications, as well as the README files for qt.
  174. %package config
  175. Summary: Graphical configuration tool for programs using Qt 4
  176. Group: User Interface/Desktops
  177. Requires: %{name} = %{version}-%{release}
  178. Requires(post): alternatives
  179. Requires(postun): alternatives
  180. %description config
  181. %{summary}.
  182. %package designer
  183. Summary: Interface designer (IDE) for the Qt toolkit
  184. Summary(ja): Qt ツールキットのインターフェースデザイナ
  185. Group: Applications/Development
  186. Requires: %{name}-devel = %{version}-%{release}
  187. Requires(post): alternatives
  188. Requires(postun): alternatives
  189. %description designer
  190. The qt-designer package contains an User Interface designer tool
  191. for the Qt toolkit.
  192. %package devel
  193. Summary: Development files for the Qt GUI toolkit.
  194. Summary(ja): Qt ツールキットの開発用ファイル
  195. Group: Development/Libraries
  196. Requires: %{name} = %{version}-%{release}
  197. Requires: %{x_deps}
  198. Requires: libpng-devel
  199. Requires: libjpeg-devel
  200. Requires: pkgconfig
  201. Requires(post): alternatives
  202. Requires(postun): alternatives
  203. Provides: WebKit-qt-devel
  204. %description devel
  205. This package contains the files necessary to develop
  206. applications using the Qt toolkit.
  207. # make a devel private subpkg or not?
  208. %define private 0
  209. %package devel-private
  210. Summary: Private headers for Qt toolkit
  211. Group: Development/Libraries
  212. BuildArch: noarch
  213. Requires: %{name}-devel = %{version}-%{release}
  214. Provides: qt-devel-private = %{version}-%{release}
  215. %description devel-private
  216. %{summary}.
  217. %package doc
  218. Summary: API documentation for Qt4
  219. Summary(ja): Qt4 の API ドキュメント
  220. Group: Documentation
  221. Requires: %{name} = %{version}-%{release}
  222. %description doc
  223. %{summary}.
  224. %description doc -l ja
  225. Qt4 の API ドキュメントです.
  226. %package tools
  227. Summary: Qt 4 development tools
  228. Summary(ja): Qt 4 開発ツール集
  229. Group: Development/Tools
  230. Requires: %{name}-devel = %{version}-%{release}
  231. Requires: %{name}-sqlite = %{version}-%{release}
  232. Requires(post): alternatives
  233. Requires(postun): alternatives
  234. %description tools
  235. This package contains tools used to assist in Qt 4 development.
  236. %define qvfb 0
  237. %package qvfb
  238. Summary: Virtual frame buffer for Qt for Embedded Linux
  239. Group: Applications/Emulators
  240. Requires: %{name} = %{version}-%{release}
  241. %description qvfb
  242. %{summary}.
  243. %package ibase
  244. Summary: IBase driver for Qt's SQL classes
  245. Group: System Environment/Libraries
  246. Requires: %{name} = %{version}-%{release}
  247. Provides: qt-ibase = %{version}-%{release}
  248. %description ibase
  249. IBase driver for Qt's SQL classes (QSQL)
  250. %package MySQL
  251. Summary: MySQL drivers for Qt's SQL classes.
  252. Group: System Environment/Libraries
  253. Requires: %{name} = %{version}-%{release}
  254. Provides: qt4-mysql = %{version}-%{release}
  255. %description MySQL
  256. MySQL driver for Qt's SQL classes (QSQL)
  257. %package ODBC
  258. Summary: ODBC drivers for Qt's SQL classes.
  259. Group: System Environment/Libraries
  260. Requires: %{name} = %{version}-%{release}
  261. Provides: qt4-odbc = %{version}-%{release}
  262. %description ODBC
  263. ODBC driver for Qt's SQL classes (QSQL)
  264. %package PostgreSQL
  265. Summary: PostgreSQL drivers for Qt's SQL classes.
  266. Group: System Environment/Libraries
  267. Requires: %{name} = %{version}-%{release}
  268. Provides: qt4-postgresql = %{version}-%{release}
  269. %description PostgreSQL
  270. PostgreSQL driver for Qt's SQL classes (QSQL)
  271. %package tds
  272. Summary: TDS driver for Qt's SQL classes
  273. Group: System Environment/Libraries
  274. Requires: %{name} = %{version}-%{release}
  275. Provides: qt-tds = %{version}-%{release}
  276. %description tds
  277. TDS driver for Qt's SQL classes (QSQL)
  278. # compat32
  279. %package -n compat32-%{name}
  280. Summary: Qt toolkit
  281. Summary(ja): Qt ツールキット
  282. Group: System Environment/Libraries
  283. Requires: %{name} = %{version}-%{release}
  284. %description -n compat32-%{name}
  285. Qt is a GUI software toolkit which simplifies the task of writing and
  286. maintaining GUI (Graphical User Interface) applications
  287. for the X Window System.
  288. Qt is written in C++ and is fully object-oriented.
  289. This package contains the shared library needed to run qt
  290. applications, as well as the README files for qt.
  291. %package -n compat32-%{name}-devel
  292. Summary: Development files and documentation for the Qt GUI toolkit.
  293. Summary(ja): Qt ツールキットの開発用ファイル
  294. Group: Development/Libraries
  295. Requires: %{name}-devel = %{version}-%{release}
  296. Requires: compat32-%{name} = %{version}-%{release}
  297. %description -n compat32-%{name}-devel
  298. This package contains the files necessary to develop
  299. applications using the Qt toolkit.
  300. %prep
  301. %setup -q -n qt-everywhere-opensource-src-%{version}
  302. %patch2 -p1 -b .multilib-optflags
  303. # drop backup file(s), else they get installed too, http://bugzilla.redhat.com/639463
  304. rm -fv mkspecs/linux-g++*/qmake.conf.multilib-optflags
  305. %patch4 -p1 -b .uic_multilib
  306. %patch15 -p1 -b .enable_ft_lcdfilter
  307. %patch23 -p1 -b .glib_eventloop_nullcheck
  308. %patch24 -p1 -b .moc-boost148
  309. ## TODO: still worth carrying? if so, upstream it.
  310. %patch53 -p1 -b .qatomic-inline-asm
  311. ## TODO: upstream me
  312. %patch54 -p1 -b .mysql_config
  313. %patch55 -p1 -b .cups-1
  314. %patch64 -p1 -b .QTBUG-14467
  315. %patch65 -p1 -b .qtreeview-kpackagekit-crash
  316. %patch67 -p1 -b .s390
  317. pushd src/3rdparty/webkit
  318. %patch68 -p1 -b .no_Werror
  319. popd
  320. %patch69 -p1 -b .QTBUG-22037
  321. %patch70 -p1 -b .QTBUG-14724
  322. %patch71 -p1 -b .QTBUG-21900
  323. # This quick fix works ONLY with GLib >= 2.31. It's harder to fix this portably.
  324. # See https://bugs.webkit.org/show_bug.cgi?id=69840 for the gory details.
  325. %patch73 -p1 -b .qtwebkit-glib231
  326. %patch74 -p1 -b .tds_no_strict_aliasing
  327. %patch75 -p1 -b .ppc64-crash
  328. %patch76 -p1 -b .s390-atomic
  329. %patch77 -p1 -b .icu_no_spam
  330. %patch80 -p1 -b .ld.gold
  331. %patch81 -p1 -b .assistant-crash
  332. # upstream patches
  333. # security fixes
  334. # Patches for Vine
  335. %patch1001 -p1 -b .system_ca_certificates
  336. # drop -fexceptions from $RPM_OPT_FLAGS
  337. RPM_OPT_FLAGS=`echo $RPM_OPT_FLAGS | sed 's|-fexceptions||g'`
  338. %define platform linux-g++
  339. # some 64bit platforms assume -64 suffix, https://bugzilla.redhat.com/569542
  340. %if "%{?__isa_bits}" == "64"
  341. %define platform linux-g++-64
  342. %endif
  343. # https://bugzilla.redhat.com/478481
  344. %ifarch x86_64
  345. %define platform linux-g++
  346. %endif
  347. sed -i \
  348. -e "s|-O2|$RPM_OPT_FLAGS|g" \
  349. -e "s|g++.conf|g++-multilib.conf|g" \
  350. mkspecs/%{platform}/qmake.conf
  351. # undefine QMAKE_STRIP, so we get useful -debuginfo pkgs
  352. sed -i -e "s|^QMAKE_STRIP.*=.*|QMAKE_STRIP =|" mkspecs/common/linux.conf
  353. # set correct lib path
  354. if [ "%{_lib}" == "lib64" ] ; then
  355. sed -i -e "s,/usr/lib /lib,/usr/%{_lib} /%{_lib},g" config.tests/{unix,x11}/*.test
  356. sed -i -e "s,/lib /usr/lib,/%{_lib} /usr/%{_lib},g" config.tests/{unix,x11}/*.test
  357. fi
  358. # let makefile create missing .qm files, the .qm files should be included in qt upstream
  359. for f in translations/*.ts ; do
  360. touch ${f%.ts}.qm
  361. done
  362. # desktop menu
  363. sed -e 's:$(QTBIN):%{_qt4_bindir}:g' %{SOURCE20} > assistant.desktop
  364. sed -e 's:$(QTBIN):%{_qt4_bindir}:g' %{SOURCE21} > designer.desktop
  365. sed -e 's:$(QTBIN):%{_qt4_bindir}:g' %{SOURCE22} > linguist.desktop
  366. sed -e 's:$(QTBIN):%{_qt4_bindir}:g' %{SOURCE23} > qtdemo.desktop
  367. sed -e 's:$(QTBIN):%{_qt4_bindir}:g' %{SOURCE24} > qtconfig.desktop
  368. %build
  369. # build shared, threaded (default) libraries
  370. ./configure -v \
  371. -confirm-license \
  372. -opensource \
  373. -optimized-qmake \
  374. -prefix %{_qt4_prefix} \
  375. -bindir %{_qt4_bindir} \
  376. -datadir %{_qt4_datadir} \
  377. -demosdir %{_qt4_demosdir} \
  378. -docdir %{_qt4_docdir} \
  379. -examplesdir %{_qt4_examplesdir} \
  380. -headerdir %{_qt4_headerdir} \
  381. -importdir %{_qt4_importdir} \
  382. -libdir %{_qt4_libdir} \
  383. -plugindir %{_qt4_plugindir} \
  384. -sysconfdir %{_qt4_sysconfdir} \
  385. -translationdir %{_qt4_translationdir} \
  386. -platform %{platform} \
  387. -release \
  388. -shared \
  389. -cups \
  390. -fontconfig \
  391. -largefile \
  392. -gtkstyle \
  393. -no-rpath \
  394. -reduce-relocations \
  395. -no-separate-debug-info \
  396. %{?phonon} %{!?phonon:-no-phonon} \
  397. %{?phonon_backend} \
  398. %{?no_pch} \
  399. %{?no_javascript_jit} \
  400. -sm \
  401. -stl \
  402. -system-libmng \
  403. -system-libpng \
  404. -system-libjpeg \
  405. -system-libtiff \
  406. -system-zlib \
  407. -xinput \
  408. -xcursor \
  409. -xfixes \
  410. -xinerama \
  411. -xshape \
  412. -xrandr \
  413. -xrender \
  414. -xkb \
  415. -glib \
  416. -icu \
  417. -openssl-linked \
  418. -xmlpatterns \
  419. %{?dbus} %{!?dbus:-no-dbus} \
  420. %{?graphicssystem} \
  421. %{?webkit} %{!?webkit:-no-webkit } \
  422. %{?ibase} \
  423. %{?mysql} \
  424. %{?psql} \
  425. %{?odbc} \
  426. %{?sqlite} %{?_system_sqlite} \
  427. %{?tds} \
  428. -no-nas-sound \
  429. %{?noopt} \
  430. -nomake demos \
  431. -nomake examples
  432. # -plugin-sql-mysql -I/usr/include/mysql \
  433. # -plugin-sql-psql -I/usr/include/pgsql \
  434. make %{?_smp_mflags}
  435. # TODO: consider patching tools/tools.pro to enable building this by default
  436. %{?qvfb:make %{?_smp_mflags} -C tools/qvfb}
  437. # recreate .qm files
  438. LD_LIBRARY_PATH=`pwd`/lib bin/lrelease translations/*.ts
  439. %install
  440. rm -rf $RPM_BUILD_ROOT
  441. make install INSTALL_ROOT=$RPM_BUILD_ROOT
  442. %if 0%{?qvfb}
  443. make install INSTALL_ROOT=$RPM_BUILD_ROOT -C tools/qvfb
  444. %find_lang qvfb --with-qt --without-mo
  445. %else
  446. rm -f $RPM_BUILD_ROOT%{_qt4_translationdir}/qvfb*.qm
  447. %endif
  448. %if 0%{?private}
  449. # install private headers
  450. # using rsync -R as easy way to preserve relative path names
  451. # we're cheating and using %%_prefix (/usr) directly here
  452. rsync -aR \
  453. include/Qt{Core,Declarative,Gui,Script}/private \
  454. src/{corelib,declarative,gui,script}/*/*_p.h \
  455. $RPM_BUILD_ROOT%{_prefix}/
  456. %endif
  457. #ln -s qt-%{version} $RPM_BUILD_ROOT%{_libdir}/qt4
  458. # Add desktop file(s)
  459. mkdir -p $RPM_BUILD_ROOT%{_datadir}/applications
  460. desktop-file-install \
  461. --dir=$RPM_BUILD_ROOT%{_datadir}/applications \
  462. --vendor="" \
  463. assistant.desktop designer.desktop linguist.desktop qtconfig.desktop
  464. ## pkg-config
  465. # strip extraneous dirs/libraries
  466. # safe ones
  467. glib2_libs=$(pkg-config --libs glib-2.0 gobject-2.0 gthread-2.0)
  468. ssl_libs=$(pkg-config --libs openssl)
  469. for dep in \
  470. -laudio -ldbus-1 -lfreetype -lfontconfig ${glib2_libs} \
  471. -ljpeg -lm -lmng -lpng -lpulse -lpulse-mainloop-glib ${ssl_libs} -lsqlite3 -lz \
  472. -L/usr/X11R6/lib -L/usr/X11R6/%{_lib} -L%{_libdir} ; do
  473. sed -i -e "s|$dep ||g" $RPM_BUILD_ROOT%{_qt4_libdir}/lib*.la
  474. # sed -i -e "s|$dep ||g" $RPM_BUILD_ROOT%{_qt4_libdir}/pkgconfig/*.pc
  475. sed -i -e "s|$dep ||g" $RPM_BUILD_ROOT%{_qt4_libdir}/*.prl
  476. done
  477. # riskier
  478. for dep in -ldl -lphonon -lpthread -lICE -lSM -lX11 -lXcursor -lXext -lXfixes -lXft -lXinerama -lXi -lXrandr -lXrender -lXt ; do
  479. sed -i -e "s|$dep ||g" $RPM_BUILD_ROOT%{_qt4_libdir}/lib*.la
  480. # sed -i -e "s|$dep ||g" $RPM_BUILD_ROOT%{_qt4_libdir}/pkgconfig/*.pc
  481. sed -i -e "s|$dep ||g" $RPM_BUILD_ROOT%{_qt4_libdir}/*.prl
  482. done
  483. # nuke dangling reference(s) to $RPM_BUILD_ROOT
  484. sed -i -e "/^QMAKE_PRL_BUILD_DIR/d" $RPM_BUILD_ROOT%{_qt4_libdir}/*.prl
  485. sed -i -e "s|-L%{_builddir}/qt-everywhere-opensource-src-%{version}/lib||g" \
  486. $RPM_BUILD_ROOT%{_qt4_libdir}/pkgconfig/*.pc \
  487. $RPM_BUILD_ROOT%{_qt4_libdir}/*.prl
  488. # .la files, die, die, die.
  489. rm -f $RPM_BUILD_ROOT%{_qt4_libdir}/lib*.la
  490. # let rpm handle binaries conflicts
  491. mkdir -p $RPM_BUILD_ROOT%{_bindir}
  492. for i in $RPM_BUILD_ROOT%{_qt4_bindir}/*; do
  493. ln -s ../%{_lib}/qt4/bin/`basename $i` $RPM_BUILD_ROOT/%{_bindir}
  494. done
  495. %ifarch %{multilib_archs}
  496. # multilib: qconfig.h
  497. mv $RPM_BUILD_ROOT%{_qt4_headerdir}/Qt/qconfig.h $RPM_BUILD_ROOT%{_qt4_headerdir}/QtCore/qconfig-%{_arch}.h
  498. install -p -m644 -D %{SOURCE5} $RPM_BUILD_ROOT%{_qt4_headerdir}/QtCore/qconfig-multilib.h
  499. ln -sf qconfig-multilib.h $RPM_BUILD_ROOT%{_qt4_headerdir}/QtCore/qconfig.h
  500. ln -sf ../QtCore/qconfig.h $RPM_BUILD_ROOT%{_qt4_headerdir}/Qt/qconfig.h
  501. %endif
  502. %if "%{_qt4_libdir}" != "%{_libdir}"
  503. mkdir -p $RPM_BUILD_ROOT/etc/ld.so.conf.d
  504. echo "%{_qt4_libdir}" > $RPM_BUILD_ROOT/etc/ld.so.conf.d/qt4.conf
  505. %if %{build_compat32}
  506. echo "%{_qt4_libdir}" > $RPM_BUILD_ROOT/etc/ld.so.conf.d/qt4-i386.conf
  507. %endif
  508. %endif
  509. # Trolltech.conf
  510. install -p -m644 -D %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/Trolltech.conf
  511. mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/{16x16,32x32,48x48,64x64,128x128}/apps
  512. # qt4-logo (generic) icons
  513. install -p -m644 -D %{SOURCE30} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/128x128/apps/qt4-logo.png
  514. install -p -m644 -D %{SOURCE31} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/qt4-logo.png
  515. # assistant icons
  516. install -p -m644 -D tools/assistant/tools/assistant/images/assistant.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps/assistant.png
  517. install -p -m644 -D tools/assistant/tools/assistant/images/assistant-128.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/128x128/apps/assistant.png
  518. # designer icons
  519. install -p -m644 -D tools/designer/src/designer/images/designer.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/128x128/apps/designer.png
  520. # linguist icons
  521. for icon in tools/linguist/linguist/images/icons/linguist-*-32.png ; do
  522. size=$(echo $(basename ${icon}) | cut -d- -f2)
  523. install -p -m644 -D ${icon} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/${size}x${size}/apps/linguist4.png
  524. done
  525. # Qt.pc
  526. cat > $RPM_BUILD_ROOT%{_libdir}/pkgconfig/Qt.pc << EOF
  527. prefix=%{_qt4_prefix}
  528. bindir=%{_qt4_bindir}
  529. datadir=%{_qt4_datadir}
  530. demosdir=%{_qt4_demosdir}
  531. docdir=%{_qt4_docdir}
  532. examplesdir=%{_qt4_examplesdir}
  533. headerdir=%{_qt4_headerdir}
  534. importdir=%{_qt4_importdir}
  535. libdir=%{_qt4_libdir}
  536. moc=%{_qt4_bindir}/moc
  537. plugindir=%{_qt4_plugindir}
  538. qmake=%{_qt4_bindir}/qmake
  539. sysconfdir=%{_qt4_sysconfdir}
  540. translationdir=%{_qt4_translationdir}
  541. Name: Qt
  542. Description: Qt Configuration
  543. Version: %{version}
  544. EOF
  545. # rpm macros
  546. mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/rpm
  547. cat > $RPM_BUILD_ROOT%{_sysconfdir}/rpm/macros.qt4 << EOF
  548. %%_qt4 %{name}
  549. %%_qt48 %{version}
  550. %%_qt4_version %{version}
  551. %%_qt4_prefix %%{_libdir}/qt4
  552. %%_qt4_bindir %%{_qt4_prefix}/bin
  553. %%_qt4_datadir %%{_qt4_prefix}
  554. %%_qt4_demosdir %%{_qt4_prefix}/demos
  555. %%_qt4_docdir %%{_docdir}/qt4
  556. %%_qt4_examples %%{_qt4_prefix}/examples
  557. %%_qt4_headerdir %%{_includedir}
  558. %%_qt4_importdir %%{_qt4_prefix}/imports
  559. %%_qt4_libdir %%{_libdir}
  560. %%_qt4_plugindir %%{_qt4_prefix}/plugins
  561. %%_qt4_qmake %%{_qt4_bindir}/qmake
  562. %%_qt4_sysconfdir %%{_sysconfdir}
  563. %%_qt4_translationdir %%{_datadir}/qt4/translations
  564. EOF
  565. # create/own stuff under %%_qt4_plugindir
  566. mkdir $RPM_BUILD_ROOT%{_qt4_plugindir}/crypto
  567. mkdir $RPM_BUILD_ROOT%{_qt4_plugindir}/gui_platform
  568. mkdir $RPM_BUILD_ROOT%{_qt4_plugindir}/styles
  569. ## nuke bundled phonon bits
  570. rm -fv $RPM_BUILD_ROOT%{_qt4_libdir}/libphonon.so*
  571. rm -rfv $RPM_BUILD_ROOT%{_libdir}/pkgconfig/phonon.pc
  572. # contents slightly different between phonon-4.3.1 and qt-4.5.0
  573. rm -fv $RPM_BUILD_ROOT%{_includedir}/phonon/phononnamespace.h
  574. # contents dup'd but should remove just in case
  575. rm -fv $RPM_BUILD_ROOT%{_includedir}/phonon/*.h
  576. rm -rfv $RPM_BUILD_ROOT%{_qt4_headerdir}/phonon*
  577. rm -fv $RPM_BUILD_ROOT%{_datadir}/dbus-1/interfaces/org.kde.Phonon.AudioOutput.xml
  578. rm -fv $RPM_BUILD_ROOT%{_qt4_plugindir}/designer/libphononwidgets.so
  579. # backend
  580. rm -fv $RPM_BUILD_ROOT%{_qt4_plugindir}/phonon_backend/*_gstreamer.so
  581. rm -fv $RPM_BUILD_ROOT%{_datadir}/kde4/services/phononbackends/gstreamer.desktop
  582. # nuke bundled webkit bits
  583. #rm -fv $RPM_BUILD_ROOT%{_qt4_datadir}/mkspecs/modules/qt_webkit_version.pri
  584. #rm -fv $RPM_BUILD_ROOT%{_qt4_headerdir}/Qt/qgraphicswebview.h
  585. #rm -fv $RPM_BUILD_ROOT%{_qt4_headerdir}/Qt/qweb*.h
  586. #rm -frv $RPM_BUILD_ROOT%{_qt4_headerdir}/QtWebKit/
  587. #rm -frv $RPM_BUILD_ROOT%{_qt4_importdir}/QtWebKit/
  588. #rm -fv $RPM_BUILD_ROOT%{_qt4_libdir}/libQtWebKit.*
  589. #rm -fv $RPM_BUILD_ROOT%{_qt4_plugindir}/designer/libqwebview.so
  590. #rm -fv $RPM_BUILD_ROOT%{_libdir}/pkgconfig/QtWebKit.pc
  591. rm -frv $RPM_BUILD_ROOT%{_qt4_prefix}/tests/
  592. # delete files to use alternatives
  593. rm -f $RPM_BUILD_ROOT%{_bindir}/assistant
  594. rm -f $RPM_BUILD_ROOT%{_bindir}/designer
  595. rm -f $RPM_BUILD_ROOT%{_bindir}/linguist
  596. rm -f $RPM_BUILD_ROOT%{_bindir}/lrelease
  597. rm -f $RPM_BUILD_ROOT%{_bindir}/lupdate
  598. rm -f $RPM_BUILD_ROOT%{_bindir}/moc
  599. rm -f $RPM_BUILD_ROOT%{_bindir}/qmake
  600. rm -f $RPM_BUILD_ROOT%{_bindir}/qtconfig
  601. rm -f $RPM_BUILD_ROOT%{_bindir}/uic
  602. # delete manifest
  603. rm -f $RPM_BUILD_ROOT%{_qt4_demosdir}/demos-manifest.xml
  604. rm -f $RPM_BUILD_ROOT%{_qt4_examplesdir}/examples-manifest.xml
  605. %clean
  606. rm -rf $RPM_BUILD_ROOT
  607. # If %{_libdir}/qt4 is symbolic link, remove it
  608. # Is this safe?
  609. %pre
  610. if [ $1 -eq 2 -a -L %{_libdir}/qt4 ] ; then
  611. rm -f %{_libdir}/qt4 &> /dev/null ||:
  612. fi
  613. %post
  614. /sbin/ldconfig
  615. touch --no-create %{_datadir}/icons/hicolor &> /dev/null ||:
  616. %posttrans
  617. gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null ||:
  618. %postun
  619. /sbin/ldconfig
  620. if [ $1 -eq 0 ] ; then
  621. touch --no-create %{_datadir}/icons/hicolor &> /dev/null ||:
  622. gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null ||:
  623. fi
  624. # config
  625. %post config
  626. /sbin/update-alternatives --install \
  627. %{_bindir}/qtconfig qtconfig %{_qt4_bindir}/qtconfig 20
  628. %posttrans config
  629. # fix broken symlink if it's there
  630. if [ ! -f %{_bindir}/qtconfig ] ; then
  631. /sbin/update-alternatives --auto qtconfig
  632. fi
  633. %postun config
  634. if [ $1 -eq 0 ] ; then
  635. /sbin/update-alternatives --remove qtconfig %{_qt4_bindir}/qtconfig
  636. /sbin/update-alternatives --auto qtconfig
  637. fi
  638. # designer
  639. %post designer
  640. touch --no-create %{_datadir}/icons/hicolor &> /dev/null ||:
  641. /sbin/update-alternatives --install \
  642. %{_bindir}/designer designer %{_qt4_bindir}/designer 20
  643. %posttrans designer
  644. gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null ||:
  645. # fix broken symlink if it's there
  646. if [ ! -f %{_bindir}/designer ] ; then
  647. /sbin/update-alternatives --auto designer
  648. fi
  649. %postun designer
  650. if [ $1 -eq 0 ] ; then
  651. touch --no-create %{_datadir}/icons/hicolor &> /dev/null ||:
  652. gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null ||:
  653. /sbin/update-alternatives --remove designer %{_qt4_bindir}/desiner
  654. /sbin/update-alternatives --auto designer
  655. fi
  656. # devel
  657. %post devel
  658. /sbin/update-alternatives --install \
  659. %{_bindir}/qmake qmake %{_qt4_bindir}/qmake 20 \
  660. --slave %{_bindir}/moc \
  661. moc \
  662. %{_qt4_bindir}/moc \
  663. --slave %{_bindir}/uic \
  664. uic \
  665. %{_qt4_bindir}/uic \
  666. --slave %{_bindir}/lrelease \
  667. lrelease \
  668. %{_qt4_bindir}/lrelease \
  669. --slave %{_bindir}/lupdate \
  670. lupdate \
  671. %{_qt4_bindir}/lupdate
  672. %posttrans devel
  673. # fix broken symlink if it's there
  674. if [ ! -f %{_bindir}/qmake ] ; then
  675. /sbin/update-alternatives --auto qmake
  676. fi
  677. %postun devel
  678. if [ $1 -eq 0 ] ; then
  679. /sbin/update-alternatives --remove qmake %{_qt4_bindir}/qmake
  680. /sbin/update-alternatives --auto qmake
  681. fi
  682. %post tools
  683. /sbin/update-alternatives --install \
  684. %{_bindir}/assistant assistant %{_qt4_bindir}/assistant 20
  685. /sbin/update-alternatives --install \
  686. %{_bindir}/linguist linguist %{_qt4_bindir}/linguist 20
  687. %posttrans tools
  688. # fix broken symlink if it's there
  689. if [ ! -f %{_bindir}/assistant ] ; then
  690. /sbin/update-alternatives --auto assistant
  691. fi
  692. if [ ! -f %{_bindir}/linguist ] ; then
  693. /sbin/update-alternatives --auto linguist
  694. fi
  695. %postun tools
  696. if [ $1 -eq 0 ] ; then
  697. /sbin/update-alternatives --remove assistant %{_qt4_bindir}/assistant
  698. /sbin/update-alternatives --remove linguist %{_qt4_bindir}/linguist
  699. /sbin/update-alternatives --auto assistant
  700. /sbin/update-alternatives --auto linguist
  701. fi
  702. # If %{_libdir}/qt4 is symbolic link, remove it
  703. # Is this safe?
  704. %pre -n compat32-%{name}
  705. if [ $1 -eq 2 -a -L %{_libdir}/qt4 ] ; then
  706. rm -f %{_libdir}/qt4 &> /dev/null ||:
  707. fi
  708. %post -n compat32-%{name} -p /sbin/ldconfig
  709. %postun -n compat32-%{name} -p /sbin/ldconfig
  710. %files
  711. %defattr(-,root,root,-)
  712. %doc README LGPL_EXCEPTION.txt LICENSE.LGPL LICENSE.GPL3
  713. %config(noreplace) %{_sysconfdir}/Trolltech.conf
  714. %if "%{_qt4_libdir}" != "%{_libdir}"
  715. %config %{_sysconfdir}/ld.so.conf.d/qt4.conf
  716. %endif
  717. %{_bindir}/qdbus
  718. #{_libdir}/qt4
  719. %dir %{_qt4_prefix}
  720. %dir %{_qt4_bindir}
  721. %{_qt4_bindir}/qdbus
  722. %if "%{_qt4_libdir}" != "%{_libdir}"
  723. %dir %{_qt4_libdir}
  724. %endif
  725. %{_qt4_libdir}/libQt*.so.*
  726. %dir %{_qt4_importdir}
  727. %dir %{_qt4_importdir}/Qt
  728. %{_qt4_importdir}/Qt/*
  729. %dir %{_qt4_importdir}/QtWebKit
  730. %{_qt4_importdir}/QtWebKit/*
  731. %dir %{_qt4_plugindir}
  732. %dir %{_qt4_plugindir}/accessible
  733. %{_qt4_plugindir}/accessible/*
  734. %dir %{_qt4_plugindir}/bearer
  735. %{_qt4_plugindir}/bearer/*
  736. %dir %{_qt4_plugindir}/codecs
  737. %{_qt4_plugindir}/codecs/*
  738. %dir %{_qt4_plugindir}/crypto
  739. %dir %{_qt4_plugindir}/designer
  740. %dir %{_qt4_plugindir}/graphicssystems
  741. %{_qt4_plugindir}/graphicssystems/*
  742. %dir %{_qt4_plugindir}/iconengines
  743. %{_qt4_plugindir}/iconengines/*
  744. %dir %{_qt4_plugindir}/imageformats
  745. %{_qt4_plugindir}/imageformats/*
  746. %dir %{_qt4_plugindir}/inputmethods
  747. %{_qt4_plugindir}/inputmethods/*
  748. %dir %{_qt4_plugindir}/qmltooling
  749. %{_qt4_plugindir}/qmltooling/*
  750. %dir %{_qt4_plugindir}/script
  751. %{_qt4_plugindir}/script/*
  752. %dir %{_qt4_plugindir}/sqldrivers
  753. %{_qt4_plugindir}/sqldrivers/libqsqlite*
  754. %dir %{_qt4_translationdir}
  755. %{_qt4_translationdir}/qt_*.qm
  756. %{_datadir}/icons/hicolor/*/apps/qt4-logo.*
  757. %files config
  758. %defattr(-,root,root,-)
  759. %{_qt4_bindir}/qtconfig
  760. %{_qt4_translationdir}/qtconfig_*.qm
  761. %{_datadir}/applications/qtconfig.desktop
  762. %files designer
  763. %defattr(-,root,root,-)
  764. %{_qt4_bindir}/designer
  765. %{_qt4_plugindir}/designer/*
  766. %{_qt4_translationdir}/designer_*.qm
  767. %{_datadir}/applications/designer.desktop
  768. %{_datadir}/icons/hicolor/*/apps/designer*
  769. %{_qt4_docdir}/qch/designer.qch
  770. %files devel
  771. %defattr(-,root,root,-)
  772. %{_sysconfdir}/rpm/macros.*
  773. %{_bindir}/qdbuscpp2xml
  774. %{_bindir}/qdbusxml2cpp
  775. %{_bindir}/qmlplugindump
  776. %{_bindir}/qt3to4
  777. %{_bindir}/rcc
  778. %{_bindir}/uic3
  779. %{_qt4_bindir}/lrelease
  780. %{_qt4_bindir}/lupdate
  781. %{_qt4_bindir}/moc
  782. %{_qt4_bindir}/qdbuscpp2xml
  783. %{_qt4_bindir}/qdbusxml2cpp
  784. %{_qt4_bindir}/qmake
  785. %{_qt4_bindir}/qmlplugindump
  786. %{_qt4_bindir}/qt3to4
  787. %{_qt4_bindir}/rcc
  788. %{_qt4_bindir}/uic
  789. %{_qt4_bindir}/uic3
  790. %{_qt4_headerdir}/*
  791. %{_qt4_libdir}/libQt*.so
  792. %{_qt4_libdir}/libQtUiTools*.a
  793. %{_qt4_libdir}/libQt*.prl
  794. %if 0%{?phonon:1}
  795. ## nuke this one too? -- Rex
  796. %{_qt4_libdir}/libphonon.prl
  797. %endif
  798. %{_qt4_datadir}/mkspecs/
  799. %{_qt4_datadir}/phrasebooks/
  800. %{_qt4_datadir}/q3porting.xml
  801. %{_libdir}/pkgconfig/*.pc
  802. #{_qt4_docdir}/*
  803. %if 0%{?private}
  804. %exclude %{_qt4_headerdir}/*/private/
  805. %files devel-private
  806. %defattr(-,root,root,-)
  807. %{_qt4_headerdir}/QtCore/private/
  808. %{_qt4_headerdir}/QtDeclarative/private/
  809. %{_qt4_headerdir}/QtGui/private/
  810. %{_qt4_headerdir}/QtScript/private/
  811. %{_qt4_headerdir}/../src/corelib/
  812. %{_qt4_headerdir}/../src/declarative/
  813. %{_qt4_headerdir}/../src/gui/
  814. %{_qt4_headerdir}/../src/script/
  815. %endif
  816. %files doc
  817. %defattr(-,root,root,-)
  818. %{_qt4_docdir}/html/*
  819. %{_qt4_docdir}/qch/*.qch
  820. %exclude %{_qt4_docdir}/qch/designer.qch
  821. %exclude %{_qt4_docdir}/qch/linguist.qch
  822. %{_qt4_docdir}/src/*
  823. %files tools
  824. %defattr(-,root,root,-)
  825. %{_bindir}/lconvert
  826. %{_bindir}/pixeltool
  827. %{_bindir}/qcollectiongenerator
  828. %{_bindir}/qdbusviewer
  829. %{_bindir}/qdoc3
  830. %{_bindir}/qhelpconverter
  831. %{_bindir}/qhelpgenerator
  832. %{_bindir}/qmlviewer
  833. %{_bindir}/qttracereplay
  834. %{_bindir}/xmlpatterns
  835. %{_bindir}/xmlpatternsvalidator
  836. %{_qt4_bindir}/assistant
  837. %{_qt4_bindir}/lconvert
  838. %{_qt4_bindir}/linguist
  839. %{_qt4_bindir}/pixeltool
  840. %{_qt4_bindir}/qcollectiongenerator
  841. %{_qt4_bindir}/qdbusviewer
  842. %{_qt4_bindir}/qdoc3
  843. %{_qt4_bindir}/qhelpconverter
  844. %{_qt4_bindir}/qhelpgenerator
  845. %{_qt4_bindir}/qmlviewer
  846. %{_qt4_bindir}/qttracereplay
  847. %{_qt4_bindir}/xmlpatterns
  848. %{_qt4_bindir}/xmlpatternsvalidator
  849. %{_qt4_translationdir}/assistant_*.qm
  850. %{_qt4_translationdir}/linguist_*.qm
  851. %{_datadir}/applications/assistant.desktop
  852. %{_datadir}/applications/linguist.desktop
  853. %{_datadir}/icons/hicolor/*/apps/assistant*
  854. %{_datadir}/icons/hicolor/*/apps/linguist*
  855. %{_qt4_docdir}/qch/linguist.qch
  856. %if 0%{?qvfb}
  857. %files qvfb -f qvfb.lang
  858. %defattr(-,root,root,-)
  859. %{_bindir}/qvfb
  860. %{_qt4_bindir}/qvfb
  861. %endif
  862. %if "%{?ibase}" == "-plugin-sql-ibase"
  863. %files ibase
  864. %defattr(-,root,root,-)
  865. %{_qt4_plugindir}/sqldrivers/libqsqlibase*
  866. %endif
  867. %if "%{?mysql}" == "-plugin-sql-mysql"
  868. %files MySQL
  869. %defattr(-,root,root,-)
  870. %{_qt4_plugindir}/sqldrivers/libqsqlmysql*
  871. %endif
  872. %if "%{?odbc}" == "-plugin-sql-odbc"
  873. %files ODBC
  874. %defattr(-,root,root,-)
  875. %{_qt4_plugindir}/sqldrivers/libqsqlodbc*
  876. %endif
  877. %if "%{?psql}" == "-plugin-sql-psql"
  878. %files PostgreSQL
  879. %defattr(-,root,root,-)
  880. %{_qt4_plugindir}/sqldrivers/libqsqlpsql*
  881. %endif
  882. %if "%{?tds}" == "-plugin-sql-tds"
  883. %files tds
  884. %defattr(-,root,root,-)
  885. %{_qt4_plugindir}/sqldrivers/libqsqltds*
  886. %endif
  887. # compat32
  888. %if %{build_compat32}
  889. %files -n compat32-%{name}
  890. %defattr(-,root,root,-)
  891. %if "%{_qt4_libdir}" != "%{_libdir}"
  892. %config %{_sysconfdir}/ld.so.conf.d/qt4-i386.conf
  893. %endif
  894. #{_libdir}/qt4
  895. %dir %{_qt4_prefix}
  896. %dir %{_qt4_bindir}
  897. %{_qt4_bindir}/qdbus
  898. %if "%{_qt4_libdir}" != "%{_libdir}"
  899. %dir %{_qt4_libdir}
  900. %endif
  901. %{_qt4_libdir}/libQt*.so.*
  902. %dir %{_qt4_plugindir}
  903. %dir %{_qt4_plugindir}/accessible
  904. %{_qt4_plugindir}/accessible/*
  905. %dir %{_qt4_plugindir}/codecs
  906. %{_qt4_plugindir}/codecs/*
  907. %dir %{_qt4_plugindir}/graphicssystems
  908. %{_qt4_plugindir}/graphicssystems/*
  909. %dir %{_qt4_plugindir}/iconengines
  910. %{_qt4_plugindir}/iconengines/*
  911. %dir %{_qt4_plugindir}/imageformats
  912. %{_qt4_plugindir}/imageformats/*
  913. %dir %{_qt4_plugindir}/inputmethods
  914. %{_qt4_plugindir}/inputmethods/*
  915. %dir %{_qt4_plugindir}/script
  916. %{_qt4_plugindir}/script/*
  917. %files -n compat32-%{name}-devel
  918. %defattr(-,root,root,-)
  919. %{_qt4_libdir}/libQt*.so
  920. %{_qt4_libdir}/libQtUiTools.a
  921. %{_qt4_libdir}/libQt*.prl
  922. %{_libdir}/pkgconfig/*.pc
  923. %endif
  924. %changelog
  925. * Sat Sep 01 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.8.2-1
  926. - new upstream release
  927. - update Patch68 (webkit-qtwebkit-2.2-no_Werror.patch)
  928. - remove Patch72 (qt-everywhere-opensource-src-4.8.0-QUrl_toLocalFile.patch)
  929. - remove Patch78 (qt-everywhere-opensource-src-4.8.0-filter_event.patch)
  930. - remove Patch79 (qt-everywhere-opensource-src-4.8.0-qvfb.patch)
  931. - add Patch80 (qt-everywhere-opensource-src-4.8.0-ld-gold.patch) from Fedora
  932. - add Patch81 (qt-everywhere-opensource-src-4.8.2--assistant-crash.patch) from Fedora
  933. * Wed Jan 10 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.8.0-3
  934. - fix %%files of compat32-qt4-devel
  935. * Sun Jan 8 2012 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.8.0-2
  936. - added %%pre section to remove symbolic link
  937. - moved translation files to each subpackage
  938. * Sat Jan 7 2012 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.8.0-1
  939. - new upstream release
  940. * Sat Aug 27 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.7.2-6
  941. - rebuilt with MySQL-5.5.15
  942. * Tue May 24 2011 IWAI, Masaharu <iwai@alib.jp> 4.7.2-5
  943. - rebuild with unixODBC-2.2.14: broken by 4.7.2-4
  944. - add Vendor and Distribution tags
  945. * Tue Apr 12 2011 Shu KONNO <owa@bg.wakwak.com> 4.7.2-4
  946. - rebuilt with postgresql-9.0.3
  947. * Mon Apr 11 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.7.2-3
  948. - rebuilt with unixODBC-2.2.14
  949. * Sat Apr 9 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.7.2-2
  950. - added Patch 106, 301 and 302
  951. - fixed /etc/rpm/macros.qt4
  952. * Sun Mar 6 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.7.2-1
  953. - new upstream release
  954. - updated Patch1022
  955. - added config, tools subpackage
  956. - added /etc/rpm/macros.qt4
  957. - updated %%post, %%posttrans and %%postun section
  958. * Sat Jan 29 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.7.1-1
  959. - new upstream release
  960. * Wed Jan 12 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.6.3-3
  961. - rebuild with openssl-1.0.0c
  962. - add BuildRequires: alsa-lib-devel
  963. * Mon Sep 20 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.6.3-2
  964. - rebuilt with rpm-4.8.1
  965. * Sat Jul 24 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.6.3-1
  966. - new upstream release
  967. - moved %{_bindir}/qdbus to main package
  968. * Fri Feb 12 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 4.6.1-5
  969. - rebuilt with gcc-4.4.3-3 on ppc
  970. * Fri Feb 5 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.6.1-4
  971. - rebuilt with new toolchains
  972. * Sun Jan 31 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.6.1-3
  973. - added BR: desktop-file-utils
  974. * Sat Jan 23 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.6.1-2
  975. - fixed devel %%files (forgot removing documents...)
  976. * Thu Jan 21 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.6.1-1
  977. - new upstream release
  978. - moved documents to doc sub-package
  979. - updated macros
  980. - installed translation to %%{_datadir}/qt4/translations now
  981. * Sun Nov 22 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.5.3-1
  982. - new upstream release
  983. - dropped Patch90 (merged into upstream)
  984. - updated Patches from Fedora
  985. - added sqlite subpackage
  986. * Wed Sep 02 2009 NAKAMURA Kenta <kenta@vinelinux.org> 4.5.2-2
  987. - added Patch90 for fix CVE-2009-2700
  988. * Wed Aug 26 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.5.2-1
  989. - new upstream release
  990. - updated qt-copy patches
  991. - added Qt.pc
  992. - added BuildRequires: WebKit-gtk-devel
  993. * Thu Jul 23 2009 NAKAMURA Kenta <kenta@vinelinux.org> 4.4.3-4
  994. - added compat32 package for x86_64 arch support
  995. * Sun Apr 26 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.3-3
  996. - changed qt4-designer Group to Applications/Development
  997. - updated URL
  998. - remove Requires: XOrg-libs, XOrg-gl
  999. * Wed Mar 24 2009 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.4.3-2
  1000. - update qt-copy patches
  1001. * Mon Nov 24 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.4.3-1
  1002. - new upstream release
  1003. - update qt-copy patches
  1004. * Tue Nov 11 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.4.2-2
  1005. - update qt-copy patches
  1006. * Mon Sep 22 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.4.2-1
  1007. - new upstream release
  1008. - update qt-copy patches
  1009. * Tue Sep 02 2008 Shu KONNO <owa@bg.wakwak.com> 4.4.1-2
  1010. - fixed symbolic-link path of %{_bindir}/* at %%install section (for lib64)
  1011. * Mon Aug 4 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.4.1-1
  1012. - new upstream release
  1013. - update qt-copy patches
  1014. * Sun Jul 6 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.4.0-1
  1015. - new upstream release
  1016. - update qt-copy patches
  1017. - add -no-phonon
  1018. * Mon Mar 24 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.3.4-1
  1019. - fix release ([VineSeed:1527])
  1020. - add BuildPrereq: gcc4 gcc4-c++ for Vine 4.x
  1021. - add Requires(post,postun): alternatives to -devel and -designer package
  1022. * Tue Mar 4 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.3.4-0vl1
  1023. - new upstream release
  1024. - update qt-copy patches
  1025. * Wed Feb 6 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.3.3-0vl2
  1026. - update qt-copy patches
  1027. * Thu Dec 6 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.3.3-0vl1
  1028. - new upstream release
  1029. - update and re-number qt-copy patches
  1030. - add BuildPrereq: glib2-devel
  1031. - update URL
  1032. * Fri Nov 2 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.3.2-0vl1
  1033. - new upstream release
  1034. - update qt-copy patches
  1035. * Tue Sep 18 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.3.1-0vl2
  1036. - update qt-copy patches (CVE-2007-4137)
  1037. * Wed Aug 15 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.3.1-0vl1
  1038. - new upstream release
  1039. - update qt-copy patches
  1040. * Thu Jun 28 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.3.0-0vl1
  1041. - new upstream release
  1042. - add qt-copy patches
  1043. * Wed May 16 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.3.0-0vl0.20070423
  1044. - new upstream release
  1045. * Mon Mar 12 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.2.3-0vl1
  1046. - new upstream release
  1047. * Tue Oct 31 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.2.1-0vl1
  1048. - new upstream release
  1049. - add ld.so.conf.d and qt4.conf
  1050. - BuildPrereq: dbus-devel >= 0.62
  1051. * Fri Oct 6 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.2.0-0vl1
  1052. - new upstream release
  1053. - remove static package
  1054. * Mon Sep 25 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.1.4-0vl1
  1055. - new upstream release
  1056. - update %%fiels
  1057. - remove Xt and styles package
  1058. - add BuildPrereq: postgresql-libs MySQL-shared
  1059. - remove all patches
  1060. * Mon Sep 19 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.5-0vl4
  1061. - move %%{_libdir}/qt3 from develop to main
  1062. - fix typo
  1063. - add patch503
  1064. -- Thu Sep 14 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.3.5-0vl2.0imm.1
  1065. - import qt-x11-immodule-unified-quiet.patch (patch503) from FC
  1066. - add patch500-502
  1067. -- Thu Sep 14 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.3.5-0vl2.0imm
  1068. - add immodule for Qt support (patch500-502)
  1069. - patch500: revert some part of patch300,301 (conflict with patch501)
  1070. - patch501: immodule for Qt patch
  1071. - patch502: apply some part of patch300,301 again
  1072. cf. http://immodule-qt.freedesktop.org/
  1073. http://people.freedesktop.org/~daisuke/
  1074. * Sun Sep 10 2006 NAKAMURA Kenta <kenta@vinelinux.org> 3.3.5-0vl3
  1075. - added configure options for builing on 64-bit archs
  1076. * Tue Sep 13 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.5-0vl2
  1077. - rebuild for VineSeed
  1078. * Tue Sep 13 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.5-0vl1
  1079. - new upstream release
  1080. - stop building nonthreaded libs
  1081. - delete Obsoletes
  1082. - add Patch0
  1083. * Tue Jul 5 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.4-0vl6
  1084. - rebuild for VineSeed
  1085. * Tue Jul 5 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.4-0vl5
  1086. - build for Vine3.1
  1087. - add -v to configure option
  1088. - move three static libs to main package
  1089. * Wed Mar 16 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.4-0vl4
  1090. - rebuild for VineSeed
  1091. * Sat Mar 12 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.4-0vl3
  1092. - (security) stop using rpath
  1093. - cleanup this file
  1094. * Thu Feb 17 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.4-0vl2
  1095. - rebuild for VineSeed
  1096. * Thu Feb 17 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.4-0vl1
  1097. - new upstream release
  1098. - update Patch400
  1099. * Sat Dec 11 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.3-0vl3
  1100. - rebuld
  1101. * Wed Nov 17 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.3-0vl2
  1102. - add Obsoletes: qt32-*
  1103. * Sun Sep 5 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.3-0vl1
  1104. - source upgrade
  1105. - remove patch100
  1106. - update patch300 and remove patch302-303
  1107. - update patch400
  1108. - update BuildPrereq and Requires
  1109. * Wed Jul 28 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.2-0vl3
  1110. - add patch302-303 from KuserML
  1111. - delete lines about vine26
  1112. * Sun Jun 6 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.2-0vl2
  1113. - add patch100 from webcvs.kde.org/cgi-bin/cvsweb.cgi/qt-copy/patches/
  1114. * Fri Apr 30 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.2-0vl1
  1115. - source upgrade
  1116. - remove patch100 (it is needed only for 3.3.1)
  1117. * Sun Apr 18 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.1-0vl3
  1118. - rebuild with XOrg
  1119. * Mon Mar 29 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.1-0vl2
  1120. - rebuild
  1121. * Mon Mar 8 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.1-0vl1
  1122. - source upgrade
  1123. - remove patch800
  1124. - add patch100 (only for qt-x11-free-3.3.1)
  1125. * Sun Feb 1 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.3-0vl3
  1126. - enable cups support
  1127. * Sun Dec 21 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.3-0vl2
  1128. - build for VineSeed with new toolchain
  1129. - disable cup support
  1130. * Wed Dec 3 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.3-0vl1
  1131. - source upgrade
  1132. - revised Patch402 and 403
  1133. - remove Patch100
  1134. - add patch800 to build against freetype2-2.1.7
  1135. - (VinePlus/2.6) BuildPrereq: autoconf258
  1136. * Sun Nov 9 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.2-0vl1
  1137. - source upgrade
  1138. - revised Patch400
  1139. - remove Patch15
  1140. * Sun Nov 2 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.1-0vl4
  1141. - enable cups support
  1142. * Sun Oct 19 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.1-0.26vl3
  1143. - rebuild for Vine2.6
  1144. * Sun Oct 19 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.1-0vl3
  1145. - revised Patch400 and Patch402
  1146. - clean up spec
  1147. * Sun Sep 28 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.1-0.26vl2
  1148. - rebuild for Vine2.6
  1149. * Sun Sep 28 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.1-0vl2
  1150. - revised Patch400-
  1151. - clean up spec
  1152. * Mon Sep 15 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.1-0.26vl1
  1153. - rebuild for Vine2.6
  1154. * Mon Sep 15 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.1-0vl1
  1155. - source upgrade
  1156. - add Patch100
  1157. - remove Patch302 (it is included in this source)
  1158. - stop using Patch400-
  1159. - build with gcc-3.2.3
  1160. - add export LANG=C
  1161. - add *.pc (pkg-config files) to qt-devel package
  1162. * Fri Aug 15 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.2-0.26vl5
  1163. - rebuild for Vine2.6
  1164. * Wed Aug 13 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.2-0vl5
  1165. - add Patch302 to fix performance of jmode
  1166. - change make option for SMP and add script
  1167. * Thu Jun 19 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.2-0vl4
  1168. - update Patch400 and 401
  1169. * Wed Jun 18 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.2-0vl3
  1170. - change spec to build with g++-2.95.3
  1171. * Mon Apr 21 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.2-0.26vl2
  1172. - rebuild for Vine2.6
  1173. * Wed Apr 16 2003 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 3.1.2-0vl2
  1174. - rebuilt with libpng >= 1.2.5 when %%{vine26} is set to 0 (ie VineSeedPlus)
  1175. * Fri Mar 21 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.2-0vl1
  1176. - source upgrade
  1177. - remove all patches except patch15
  1178. - revised patch 300-
  1179. - stop building Xt package
  1180. * Mon Feb 24 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.1-0vl3
  1181. - revised patch 301 and 302
  1182. - enable patch 301 and 302 to Vine2.5/2.6
  1183. * Sun Feb 9 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.1-0vl2
  1184. - change spec to build both VineSeed and Vine2.5/2.6
  1185. - re-number patch300-
  1186. - delete patch4 (qt-3.1.1 does not need it)
  1187. - add patch13 and 14
  1188. -- Thu Dec 19 2002 Than Ngo <than@redhat.com> 3.1.1-3
  1189. - add monospace patch file from Leon Ho (bug #79949)
  1190. - add small patch file from Sysoltsev Slawa (bug #79731)
  1191. - add patch15
  1192. -- Mon Dec 30 2002 Florian La Roche <Florian.LaRoche@redhat.de>
  1193. - Change qmlined.h to not include an attic header that is also not shipped
  1194. with Red Hat Linux. This also fixes building unixODBC, that includes this
  1195. header (apparently also without needing it).
  1196. * Sat Jan 4 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.1-0vl1
  1197. - source upgrade
  1198. - cleanup spec
  1199. - revised Patch7, 301
  1200. - add Patch306, 307, 308 from kde.gr.jp
  1201. * Sun Dec 15 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.0-0vl1
  1202. - source upgrade
  1203. - stop using objprelink2, it does not work with gcc3
  1204. - add Patch304 and Patch305 from www.kde.gr.jp/~akito/xft/patch_xft.html
  1205. - add Patch1 - Patch12 from rawhide 3.1.0-1.3
  1206. - add BuildPrereq: openMotif-devel >= 2.2.2 for build qt-Xt
  1207. - cleanup spec for build x11 package only
  1208. * Mon Nov 11 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.0.5-0vl3
  1209. - add export PATH=`pwd`:$PATH to %build section
  1210. * Mon Oct 15 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.0.5-0vl2
  1211. - objprelink2 support only i386 (add %ifarch i386 ... again)
  1212. - delete BuildPrereq: libmng-static (it merged to libmng-devel)
  1213. - delete %doc ANNOUNCE
  1214. - Requires: XFree86-gl instead of Mesa
  1215. * Fri Oct 4 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.0.5-0vl1
  1216. - add BuildPrereq: objprelink2 instead of BuildPrereq: objprelink
  1217. - add BuildPrereq: autoconf253 automake15
  1218. - delete Patch199 (objprelink2 do not need this patch)
  1219. - source upgrade
  1220. - revised all patches [Kdeveloper:02404]
  1221. - add man files to qt-devel sub-package
  1222. * Tue Jul 16 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.0.3-1vl5
  1223. - add patch304 from kde.gr.jp [Kdeveloper:02368]
  1224. * Thu Jul 4 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.0.3-1vl4
  1225. - add patch303 from kde.gr.jp [Kdeveloper:02378]
  1226. * Wed Apr 17 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.0.3-1vl3
  1227. - add patch302 from kde.gr.jp
  1228. * Thu Apr 4 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.0.3-1vl2
  1229. - revised patch300 from kde.gr.jp and XIMInputStyle=Over The Spot in qtrc
  1230. - add patch301 from kde.gr.jp
  1231. - make unixODBC plugin (delete define odbcplugins 0 and if %{odbcplugins})
  1232. * Sat Mar 30 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.0.3-1vl1
  1233. - merged with rawhide 3.0.3-0.cvs20020314.1
  1234. - source update to 3.0.3
  1235. - add patch199 (objprelink)
  1236. - add patch300 and add defaultInputStyle=OverTheSpot in qtrc
  1237. - define cups 0 (Vine does not have cups)
  1238. - define odbcplugins 0 (unixODBC requires libqt-mt.so.2 of qt-2)
  1239. - cleanup spec
  1240. - There is Vine's previous changes, hacked for Vine
  1241. -- Sat Jan 5 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.3.1-6vl4
  1242. - rebuild with -xft support (XFree86-4.1.99.4)
  1243. -- Mon Dec 31 2001 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 2.3.1-6vl3
  1244. - rebuild with glibc-2.2.4
  1245. -- Sun Nov 25 2001 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 2.3.1-6vl2
  1246. - add Source2 and Patch4 (use objprelink, i386 only)
  1247. -- Sat Oct 13 2001 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 2.3.1-6vl1
  1248. - Build for VineSeed
  1249. - Add qt.using_new_library.patch from Kondara
  1250. -- Mon Jun 11 2001 net_hal <net_hal@cwa.bai.ne.jp>
  1251. - First build for Vine2.1.5
  1252. -- Thu Apr 12 2001 Rex Dieter <rdieter@unl.edu> 2.3.0-0.6x.3
  1253. - redhat 6.x backport based on rawhide's qt-2.3.0-3
  1254. - remove -xft support (because we're using XFree-3)
  1255. * Thu Mar 14 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.3-0.cvs20020314.1
  1256. - Update to 3.0.3-pre, required for KDE3
  1257. - force -fPIC usage
  1258. - Remove conflict with qt2 < 2.3.2-1, the new qt2 2.3.1 is fixed and qt 2.3.2
  1259. is broken
  1260. - Ship the qmake config files (so qmake works for building any 3rd party stuff,
  1261. e.g. aethera)
  1262. * Wed Mar 6 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.2-2
  1263. - Add some fixes from KDE's qt-copy CVS
  1264. - Pluginize image formats
  1265. * Mon Feb 25 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.2-1
  1266. - 3.0.2 final
  1267. * Tue Feb 19 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.2-0.cvs20020118.3
  1268. - Add GB18030 codec patch, #60034
  1269. - Force-build jpeg support, fixing #59775 and #59795
  1270. * Sat Jan 26 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.2-0.cvs20020118.2
  1271. - Build with CUPS support
  1272. * Fri Jan 18 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.2-0.cvs20020118.1
  1273. - Fix up /usr/bin/moc links, they should point to qt3
  1274. * Mon Jan 14 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.2-0.cvs20020114.1
  1275. - Build styles directly into the main library for now, there's too much broken
  1276. code out there depending on this ATM.
  1277. * Wed Jan 9 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.2-0.cvs20020109.1
  1278. - Stop excluding alpha, gcc has been fixed
  1279. * Tue Jan 8 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.2-0.cvs20020108.1
  1280. - Add fixes from CVS; this fixes the "Alt + F1, arrow up, arrow up doesn't work
  1281. in KDE" bug
  1282. * Mon Dec 17 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.1-2
  1283. - Fix up settings search path
  1284. - Add default qtrc allowing to use KDE 3.x Qt plugins
  1285. - Make sure QLibrary uses RTLD_GLOBAL when dlopen()ing libraries
  1286. * Thu Dec 13 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.1.0-1
  1287. - Work around gcc bug #57467
  1288. * Wed Dec 12 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  1289. - 3.0.1 final
  1290. * Mon Dec 10 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.1-0.cvs20011210.1
  1291. - Update to current (needed by KDE 3.x)
  1292. - Rebuild with current libstdc++
  1293. - Temporarily disable building on alpha
  1294. - Fix build with PostgreSQL 7.2
  1295. * Mon Nov 26 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-5
  1296. - Fix up glweak
  1297. * Mon Nov 5 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-4
  1298. - Give designer, uic, moc, etc. their real names - the qt2 versions
  1299. have been renamed in qt2-2.3.2-1.
  1300. Conflict with qt2 < 2.3.2-1.
  1301. * Thu Oct 25 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-3
  1302. - Add symlink /usr/lib/qt-3.0.0 -> /usr/lib/qt3 and set QTDIR to the
  1303. symlink, allowing to update to 3.0.1 without breaking rpath'ed binaries
  1304. * Tue Oct 16 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-1
  1305. - 3.0.0 final
  1306. - fix some minor specfile bugs
  1307. - Modularize some more (image format plugins)
  1308. - Build codecs
  1309. * Tue Sep 18 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-0.beta5.1
  1310. - beta5
  1311. - Share more code between qt-x11 and qt-embedded builds
  1312. * Wed Aug 29 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-0.beta4.1
  1313. - beta4
  1314. - build the Motif style directly into Qt rather than as a plugin - Qt should
  1315. always have at least one style...
  1316. - replace the designer3 symlink with a shell script that sets QTDIR correctly
  1317. before launching designer
  1318. - Add desktop file for designer
  1319. * Mon Aug 6 2001 Tim Powers <timp@redhat.com> 3.0.0-0.beta3.4
  1320. - explicitly include qm2ts, qmake, qtconfig in the devel package file list to avoid dangling symlinks
  1321. * Thu Aug 2 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-0.beta3.3
  1322. - Try yet another workaround for buildsystem breakages
  1323. * Tue Jul 31 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  1324. - Add another ugly workaround for build system problems, this should finally
  1325. get rid of the dangling symlinks
  1326. * Tue Jul 31 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-0.beta3.2
  1327. - Rephrase parts of the spec file, hopefully pleasing the build system
  1328. * Sun Jul 29 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-0.beta3.1
  1329. - beta3
  1330. - Fix dangling symlinks
  1331. * Sun Jun 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-0.beta1.2
  1332. - Fix up QSQL Postgres classes for Postgres 7.1.x
  1333. - Fix various bugs:
  1334. - QtMultilineEdit and QtTableView should actually compile
  1335. - Link libqsqlpsql with libpq
  1336. - Don't link the base library with libmysqlclient, linking the MySQL
  1337. module with it is sufficient
  1338. - Add missing const qualifier
  1339. - move the SQL drivers to separate packages to avoid dependencies
  1340. - build and install designer plugins - converting glade files to Qt is fun. ;)
  1341. - handle RPM_OPT_FLAGS
  1342. * Tue May 22 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-0.beta1.1
  1343. - 3.0 beta 1
  1344. * Wed May 16 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-0.cvs20010516.1
  1345. - Update, remove conflicts with Qt 2.x
  1346. * Mon May 14 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-0.cvs20010514.1
  1347. - Initial build of 3.0 branch
  1348. * Fri Apr 27 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.3.0-6
  1349. - Fix crashes on ia64, Patch from Bill Nottingham <notting@redhat.com>
  1350. - Allow building qt-nox
  1351. * Fri Apr 20 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.3.0-5
  1352. - Make sure uic and designer use the libqui from the source tree, not
  1353. a previously installed one.
  1354. Linking uic-x11 against libqui-embedded is definitely not a feature. ;)
  1355. - The qclipboard fix is needed for qt-x11 only, don't apply it if we're
  1356. building qt-embedded
  1357. * Sat Apr 14 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  1358. - Handle LPRng specific constructs in printcap, Bug #35937
  1359. * Sun Mar 25 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  1360. - add qfont patch from Trolltech
  1361. * Tue Mar 13 2001 Harald Hoyer <harald@redhat.de>
  1362. - added patch for '@euro' language settings
  1363. * Tue Mar 6 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  1364. - 2.3.0 final
  1365. - BuildRequires XFree86-devel >= 4.0.2 (#30486)
  1366. * Mon Feb 26 2001 Than Ngo <than@redhat.com>
  1367. - fix check_env function, so that qt does not crash if QT_XFT is not set
  1368. - fix symlinks
  1369. * Mon Feb 26 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  1370. - 2.3.0b1
  1371. - Add a patch to qpsprinter that handles TrueType fonts even if they come from xfs
  1372. * Tue Feb 13 2001 Preston Brown <pbrown@redhat.com>
  1373. - japanese input and clipboard fixes applied. Changes have been sent upstream by patch authors.
  1374. * Fri Feb 9 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  1375. - Rebuild with new Mesa to get rid of pthreads linkage
  1376. - Add Xft fix from KDE CVS
  1377. * Wed Feb 7 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  1378. - Add printing bugfix patch from Trolltech
  1379. * Sat Feb 3 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  1380. - 2.2.4
  1381. - Qt Embedded: Add QVfb and VNC support
  1382. * Tue Jan 16 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  1383. - Don't segfault when running Qt/Embedded applications as root
  1384. - Improve the Qt/Embedded sparc patch so we don't need the specfile hacks
  1385. anymore
  1386. - Fix a bug in QPrintDialog (causing KDE Bug #18608)
  1387. * Thu Jan 11 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  1388. - bzip2 source to save space
  1389. - Qt/Embedded 2.2.3
  1390. - Fix qte build on sparc
  1391. * Wed Dec 20 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1392. - Run ldconfig in %%post and %%postun for qt-Xt
  1393. * Sun Dec 17 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1394. - Build with the Xrender extension
  1395. (Patch from Keith Packard <keithp@keithp.com>)
  1396. * Wed Dec 13 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1397. - 2.2.3
  1398. * Tue Dec 12 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1399. - Rebuild to fix permissions on doc dir
  1400. - Don't exclude ia64 anymore
  1401. * Fri Nov 17 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1402. - Fix up uic (Patch from trolltech)
  1403. * Wed Nov 15 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1404. - Build qt-embedded
  1405. changes to base: fix build, fix ISO C99 compliance, fix 64bit support
  1406. * Mon Nov 13 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1407. - 2.2.2
  1408. * Tue Oct 24 2000 Than Ngo <than@redhat.com>
  1409. - call ldconfig for updating (Bug #19687)
  1410. - added patch from Trolltech, thanks to Rainer <rms@trolltech.com>
  1411. * Wed Oct 18 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1412. - Add missing msg2qm, msgmerge, qconfig tools (Bug #18997), introduced
  1413. by broken Makefiles in base
  1414. - fix up %%install so it works both with old-style and new-style fileutils
  1415. (fileutils <= 4.0z don't know about -L)
  1416. * Fri Oct 13 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1417. - Disable exception handling; this speeds up KDE 2.x and reduces its
  1418. memory footprint by 20 MB.
  1419. * Tue Oct 10 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1420. - dereference symlinks in include
  1421. * Sun Oct 8 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1422. - fix -devel
  1423. - update to the new version of 2.2.1 on trolltech.com; the initial tarball
  1424. contained broken docs
  1425. * Thu Oct 5 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1426. - 2.2.1
  1427. * Mon Sep 25 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1428. - Add missing uic
  1429. * Thu Sep 21 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1430. - Move Qt designer to a different source RPM to get rid of a
  1431. circular dependency (kdelibs2->qt, qt->kdelibs2)
  1432. - Enable MNG support
  1433. - Don't compile (just include) examples and tutorials
  1434. - move the static libraries to a separate package (qt-static).
  1435. They're HUGE, and most people won't ever need them.
  1436. - clean up spec file
  1437. - fix up dependencies (-devel requires base, -static requires devel,
  1438. Xt requires base)
  1439. - add BuildRequires line
  1440. * Tue Sep 12 2000 Than Ngo <than@redhat.com>
  1441. - update release 2.2.0
  1442. - changed copyright to GPL
  1443. - added missing static libraries
  1444. - made symbolic link for designer to load the help files correct
  1445. - made designer and designer-kde2 as sub packages
  1446. - added missing templates for designer
  1447. - remove jakub patch, since the release 2.2.0 already
  1448. contains this patch.
  1449. - fixed qt again to compile with gcc-2.96
  1450. - use make -j for building
  1451. * Wed Aug 23 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1452. - Work around compiler bugs (Patch from Jakub)
  1453. - Use relative symlinks (Bug #16750)
  1454. * Mon Aug 21 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1455. - beta2
  1456. * Mon Aug 14 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1457. - new qt-copy from KDE2 CVS
  1458. * Wed Aug 9 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1459. - official beta 1
  1460. * Thu Aug 3 2000 Than Ngo <than@redhat.de>
  1461. - rebuilt against the libpng-1.0.8
  1462. * Thu Jul 27 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1463. - rebuild (so we have it on all arches)
  1464. * Tue Jul 25 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1465. - move man pages to a more reasonable place (this fixes Bug #14126)
  1466. - exclude ia64 for now (compiler problems!!!)
  1467. * Mon Jul 24 2000 Harald Hoyer <harald@redhat.de>
  1468. - modified connect patch to fit qt 2.2.0 beta.
  1469. * Thu Jul 20 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1470. - update to current qt-copy; this is now a qt 2.2.0 beta.
  1471. * Mon Jul 17 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1472. - update to current qt-copy in kde CVS, required
  1473. * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
  1474. - automatic rebuild
  1475. * Sun Jul 11 2000 Harald Hoyer <harald@redhat.de>
  1476. - made patch smaller and binary compatible when recompiled with 6.2
  1477. - modified connect and moc to cope with the new g++ class layout
  1478. * Sun Jul 09 2000 Than Ngo <than@redhat.de>
  1479. - rebuilt qt with gcc-2.96-34
  1480. * Fri Jul 07 2000 Than Ngo <than@redhat.de>
  1481. - rebuilt qt with c++ 2.96
  1482. * Mon Jul 3 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1483. - Fix dependancies
  1484. * Sun Jul 2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1485. - Use egcs++ for now ** FIXME
  1486. * Wed Jun 28 2000 Preston Brown <pbrown@redhat.com>
  1487. - fix up qt.sh
  1488. * Sun Jun 25 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1489. - Build in jpeg and threading support
  1490. - Fix a bug in clipboard pasting code
  1491. * Wed Jun 07 2000 Preston Brown <pbrown@redhat.com>
  1492. - fix qt.{sh,csh}
  1493. - use new rpm macro paths
  1494. - package man pages
  1495. * Fri Jun 2 2000 Bill Nottingham <notting@redhat.com>
  1496. - build without optimization on ia64
  1497. * Mon May 29 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1498. - 2.1.1
  1499. * Thu May 18 2000 Florian La Roche <Florian.LaRoche@redhat.com>
  1500. - recompile with correct libstdc++
  1501. * Thu Apr 13 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1502. - 2.1.0 final
  1503. * Wed Apr 5 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1504. - beta4
  1505. - depend on libGL.so.1 rather than Mesa - XFree86 4.0 provides that
  1506. lib, too
  1507. * Wed Mar 22 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1508. - beta3
  1509. * Tue Mar 7 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1510. - beta2
  1511. - fix compilation of the NSPlugin add-on
  1512. * Fri Mar 3 2000 Bill Nottingham <notting@redhat.com>
  1513. - fix %postun script
  1514. * Fri Feb 18 2000 Bernhard Rosenkr?nzer <bero@redhat.com>
  1515. - beta1
  1516. - get rid of qt-ImageIO, the functionality is now in the main Qt library
  1517. - remove qt-Network, the functionality is now in the main Qt library
  1518. - add changes-2.1.0 to %doc
  1519. * Thu Feb 17 2000 Preston Brown <pbrown@redhat.com>
  1520. - no refcount check on postun script, we want it to happen even on upgrades
  1521. * Thu Feb 10 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1522. - new snapshot, should fix QWhatsThisButton
  1523. - remove executable permissions from *.pro files
  1524. * Mon Feb 07 2000 Preston Brown <pbrown@redhat.com>
  1525. - strip binaries in examples, tutorial
  1526. * Mon Jan 31 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1527. - new snapshot - should fix the hotkey bug
  1528. - Fix up the Makefiles so it compiles
  1529. * Tue Jan 18 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1530. - new snapshot - we need those QVariant fixes
  1531. * Thu Jan 13 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1532. - switch from glxMesa to Mesa for the GL addon
  1533. * Wed Jan 5 2000 Bernhard Rosenkr?nzer <bero@redhat.com>
  1534. - Fix up dependencies
  1535. - new snapshot
  1536. * Mon Jan 3 2000 Ngo Than <than@redhat.de>
  1537. - new snapshot for Red Hat Linux 6.2
  1538. - increase version number
  1539. * Mon Dec 20 1999 Bernhard Rosenkraenzer <bero@redhat.com>
  1540. - new snapshot
  1541. - handle RPM_OPT_FLAGS
  1542. * Mon Dec 13 1999 Bernhard Rosenkraenzer <bero@redhat.com>
  1543. - new snapshot
  1544. - -GL requires libGL.so.1 instead of Mesa (might as well be glxMesa
  1545. or some commercial OpenGL)
  1546. - -GL BuildPrereqs /usr/X11R6/include/GL/gl.h instead of Mesa-devel
  1547. (might as well be glxMesa or some commercial OpenGL)
  1548. * Sun Dec 05 1999 Bernhard Rosenkraenzer <bero@redhat.com>
  1549. - update to current RSYNC version
  1550. - remove compilation patch - it finally works out of the box
  1551. * Wed Oct 27 1999 Bernhard Rosenkraenzer <bero@redhat.com>
  1552. - update to current CVS snapshot
  1553. - build extensions
  1554. - add patch to fix QNetwork compilation
  1555. * Sun Oct 24 1999 Bernhard Rosenkraenzer <bero@redhat.de>
  1556. - current CVS snapshot
  1557. - fix compilation with gcc 2.95.x
  1558. - use install -c rather than just install to make BSD install happy
  1559. * Mon Oct 11 1999 Bernhard Rosenkraenzer <bero@redhat.de>
  1560. - 2.1.0 snapshot (for KDE2)
  1561. - Fix typo in spec
  1562. * Thu Sep 23 1999 Preston Brown <pbrown@redhat.com>
  1563. - don't ship tutorial or example binaries
  1564. * Tue Sep 21 1999 Preston Brown <pbrown@redhat.com>
  1565. - substitution in tutorial and examples so that dependencies are correct and
  1566. they can be successfully rebuilt.
  1567. - switched to completely using QTDIR. trying to coexist with links into
  1568. /usr/{include,lib} and still compile with qt 1.x is very hard for
  1569. configure scripts to cope with.
  1570. * Thu Aug 19 1999 Preston Brown <pbrown@redhat.com>
  1571. - implemented QTDIR compatibility.
  1572. * Tue Jul 20 1999 Preston Brown <pbrown@redhat.com>
  1573. - qt 2.0.1 packaged.
  1574. * Wed Jul 14 1999 Preston Brown <pbrown@redhat.com>
  1575. - Qt 2.00 packaged.
  1576. - examples, html documentation, tutorial moved to /usr/doc
  1577. * Sat Apr 17 1999 Preston Brown <pbrown@redhat.com>
  1578. - static library supplied in dev package.
  1579. * Wed Apr 07 1999 Preston Brown <pbrown@redhat.com>
  1580. - turn on internal GIF reading support
  1581. * Tue Apr 06 1999 Preston Brown <pbrown@redhat.com>
  1582. - strip binaries
  1583. * Mon Mar 15 1999 Preston Brown <pbrown@redhat.com>
  1584. - upgrade to qt 1.44.
  1585. * Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
  1586. - Injected new description and group.
  1587. * Tue Jan 19 1999 Preston Brown <pbrown@redhat.com>
  1588. - moved includes to /usr/include/qt
  1589. * Mon Jan 04 1999 Preston Brown <pbrown@redhat.com>
  1590. - made setup phase silent.
  1591. * Fri Dec 04 1998 Preston Brown <pbrown@redhat.com>
  1592. - upgraded to qt 1.42, released today.
  1593. * Tue Dec 01 1998 Preston Brown <pbrown@redhat.com>
  1594. - took Arnts RPM and made some minor changes for Red Hat.