qt-vl.spec 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533
  1. %define type x11
  2. %define qtdir %{_libdir}/qt-%{version}
  3. %define rel 11
  4. %define buildstatic 1
  5. %define buildnonthread 0
  6. %define styleplugins 0
  7. # Set this to "1" if you want to build Xt
  8. %define buildXt 0
  9. # Set this to "0" if you do not want to build immodule
  10. %define immodule 1
  11. %if %{styleplugins}
  12. %define plugins -plugin-sql-mysql -plugin-sql-psql -plugin-sql-odbc -plugin-style-cde -plugin-style-motifplus -plugin-style-platinum -plugin-style-sgi -plugin-style-windows -plugin-style-compact -qt-imgfmt-png -qt-imgfmt-jpeg -qt-imgfmt-mng
  13. %else
  14. %define plugins -plugin-sql-mysql -plugin-sql-psql -plugin-sql-odbc -qt-style-cde -qt-style-motifplus -qt-style-platinum -qt-style-sgi -qt-style-windows -qt-style-compact -qt-imgfmt-png -qt-imgfmt-jpeg -qt-imgfmt-mng
  15. %endif
  16. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  17. Summary: The shared library for the Qt GUI toolkit.
  18. Summary(ja): Qt ツールキット
  19. Name: qt
  20. Version: 3.3.8
  21. Release: %{rel}%{?_dist_release}
  22. Source: ftp://ftp.qtsoftware.com/qt/source/qt-%{type}-free-%{version}.tar.bz2
  23. # Patches -99 are from kde.org
  24. Patch0: uic-patch.diff
  25. # Patches 100-199 are for Qt-x11 only
  26. Patch100: Qt-3.3.8-UTF-8-fix.diff
  27. Patch101: qt3-CVE-2007-3388.diff
  28. Patch102: qt3-CVE-2007-4137.diff
  29. # Patches 200-299 are from fedora core
  30. Patch200: qt-uic-nostdlib.patch
  31. Patch201: qt-x11-free-3.3.5-gcc4-buildkey.patch
  32. Patch238: qt-x11-free-3.3.8-odbc.patch
  33. # Patches 300-399 are from kde.gr.jp
  34. # Patches for immodule for Qt
  35. Patch500: qt-x11-free-3.3.8-qt-x11-immodule-unified-qt3.3.7-20061229-pre.patch
  36. Patch501: qt-x11-immodule-unified-qt3.3.7-20061229.diff.bz2
  37. Patch502: qt-x11-free-3.3.8-qt-x11-immodule-unified-qt3.3.7-20061229-post.patch
  38. Patch503: qt-x11-immodule-unified-qt3.3.5-20051012-quiet.patch
  39. Patch504: qt-x11-free-3.3.6-fix-key-release-event-with-imm.diff
  40. Patch505: qt-x11-free-3.3.6-qt-x11-immodule-unified-qt3.3.5-20060318-resetinputcontext.patch
  41. # Patches 800-899 are for VineLinux
  42. Patch800: qt-x11-free-3.3.8-gcc43.patch
  43. URL: http://www.qtsoftware.com/
  44. License: GPL/QPL
  45. Group: System Environment/Libraries
  46. Buildroot: %{_tmppath}/%{name}-%{version}-root
  47. Prefix: %{qtdir}
  48. #BuildRequires: openMotif-devel >= 2.2.2
  49. BuildRequires: libmng-devel
  50. BuildRequires: glibc-devel
  51. BuildRequires: libjpeg-devel
  52. BuildRequires: libpng-devel >= 1.2.5
  53. BuildRequires: zlib-devel
  54. BuildRequires: giflib-devel
  55. BuildRequires: perl
  56. BuildRequires: sed
  57. BuildRequires: findutils
  58. BuildRequires: cups-devel
  59. BuildRequires: tar
  60. BuildRequires: freetype2-devel
  61. BuildRequires: fontconfig-devel
  62. BuildRequires: libXrender-devel
  63. BuildRequires: libXrandr-devel
  64. BuildRequires: libXcursor-devel
  65. BuildRequires: libXinerama-devel
  66. BuildRequires: libXft-devel
  67. BuildRequires: libXext-devel
  68. BuildRequires: libX11-devel
  69. BuildRequires: libSM-devel
  70. BuildRequires: libICE-devel
  71. BuildRequires: libXt-devel
  72. BuildRequires: libXmu-devel
  73. BuildRequires: libXi-devel
  74. BuildRequires: xorg-x11-proto-devel
  75. BuildRequires: mesa-libGL-devel
  76. BuildRequires: mesa-libGLU-devel
  77. BuildRequires: desktop-file-utils
  78. BuildRequires: MySQL-devel
  79. BuildRequires: postgresql-devel
  80. BuildRequires: unixODBC-devel
  81. #BuildPrereq: libstdc++34-devel
  82. #Requires: libexpat libstdc++34
  83. #Requires: libpng >= 1.2.5
  84. #Requires: freetype2 libjpeg libmng zlib
  85. %package devel
  86. Summary: Development files and documentation for the Qt GUI toolkit.
  87. Summary(ja): Qt ツールキットの開発用ファイル
  88. Group: Development/Libraries
  89. Requires: %{name} = %{version}-%{release}
  90. Requires: freetype2-devel
  91. Requires: fontconfig-devel
  92. Requires: libXrender-devel
  93. Requires: libXrandr-devel
  94. Requires: libXcursor-devel
  95. Requires: libXinerama-devel
  96. Requires: libXft-devel
  97. Requires: libXext-devel
  98. Requires: libX11-devel
  99. Requires: libSM-devel
  100. Requires: libICE-devel
  101. Requires: libXt-devel
  102. Requires: xorg-x11-proto-devel
  103. Requires: libpng-devel
  104. Requires: libjpeg-devel
  105. Requires: libmng-devel
  106. Requires: mesa-libGL-devel
  107. Requires: mesa-libGLU-devel
  108. Requires: zlib-devel
  109. Requires(post): alternatives
  110. Requires(postun): alternatives
  111. %package Xt
  112. Summary: An Xt (X Toolkit) compatibility add-on for the Qt GUI toolkit.
  113. Group: System Environment/Libraries
  114. Requires: %{name} = %{version}-%{release}
  115. %package styles
  116. Summary: Extra styles for the Qt GUI toolkit.
  117. Group: User Interface/Desktops
  118. Requires: %{name} = %{version}-%{release}
  119. %package ODBC
  120. Summary: ODBC drivers for Qt's SQL classes.
  121. Group: System Environment/Libraries
  122. Requires: %{name} = %{version}-%{release}
  123. %package MySQL
  124. Summary: MySQL drivers for Qt's SQL classes.
  125. Group: System Environment/Libraries
  126. Requires: %{name} = %{version}-%{release}
  127. %package PostgreSQL
  128. Summary: PostgreSQL drivers for Qt's SQL classes.
  129. Group: System Environment/Libraries
  130. Requires: %{name} = %{version}-%{release}
  131. %if %{buildstatic}
  132. %package static
  133. Summary: Version of the Qt GUI toolkit for static linking
  134. Group: Development/Libraries
  135. Requires: %{name}-devel = %{version}-%{release}
  136. %endif
  137. %package designer
  138. Summary: Interface designer (IDE) for the Qt toolkit
  139. Summary(ja): Qt ツールキットのインターフェースデザイナ
  140. Group: Applications/Development
  141. Requires: %{name}-devel = %{version}-%{release}
  142. Requires(post): alternatives
  143. Requires(postun): alternatives
  144. %description
  145. Qt is a GUI software toolkit which simplifies the task of writing and
  146. maintaining GUI (Graphical User Interface) applications
  147. for the X Window System.
  148. Qt is written in C++ and is fully object-oriented.
  149. This package contains the shared library needed to run qt
  150. applications, as well as the README files for qt.
  151. %description devel
  152. The qt-devel package contains the files necessary to develop
  153. applications using the Qt GUI toolkit: the header files, the Qt meta
  154. object compiler, the man pages, the HTML documentation and example
  155. programs. See http://www.trolltech.com/products/qt.html for more
  156. information about Qt, or look at
  157. /usr/share/doc/qt-devel-%{version}/html/index.html, which provides Qt
  158. documentation in HTML format.
  159. Install qt-devel if you want to develop GUI applications using the Qt
  160. toolkit.
  161. %description Xt
  162. An Xt (X Toolkit) compatibility add-on for the Qt GUI toolkit.
  163. %if %{buildstatic}
  164. %description static
  165. %endif
  166. %description styles
  167. Extra styles (themes) for the Qt GUI toolkit.
  168. %description ODBC
  169. ODBC driver for Qt's SQL classes (QSQL)
  170. %description MySQL
  171. MySQL driver for Qt's SQL classes (QSQL)
  172. %description PostgreSQL
  173. PostgreSQL driver for Qt's SQL classes (QSQL)
  174. %description designer
  175. The qt-designer package contains an User Interface designer tool
  176. for the Qt toolkit.
  177. # compat32
  178. %package -n compat32-%{name}
  179. Summary: The shared library for the Qt GUI toolkit.
  180. Group: System Environment/Libraries
  181. Requires: %{name} = %{version}-%{release}
  182. %description -n compat32-%{name}
  183. Qt is a GUI software toolkit which simplifies the task of writing and
  184. maintaining GUI (Graphical User Interface) applications
  185. for the X Window System.
  186. Qt is written in C++ and is fully object-oriented.
  187. This package contains the shared library needed to run qt
  188. applications, as well as the README files for qt.
  189. %package -n compat32-%{name}-devel
  190. Summary: Development files and documentation for the Qt GUI toolkit.
  191. Group: Development/Libraries
  192. Requires: %{name}-devel = %{version}-%{release}
  193. Requires: compat32-%{name} = %{version}-%{release}
  194. Requires: compat32-libmng-devel compat32-libjpeg-devel
  195. Requires: compat32-libpng-devel compat32-zlib-devel
  196. %description -n compat32-%{name}-devel
  197. The qt-devel package contains the files necessary to develop
  198. applications using the Qt GUI toolkit: the header files, the Qt meta
  199. object compiler, the man pages, the HTML documentation and example
  200. programs. See http://www.trolltech.com/products/qt.html for more
  201. information about Qt, or look at
  202. /usr/share/doc/qt-devel-%{version}/html/index.html, which provides Qt
  203. documentation in HTML format.
  204. Install qt-devel if you want to develop GUI applications using the Qt
  205. toolkit.
  206. %prep
  207. %setup -q -n qt-%{type}-free-%{version}
  208. %patch0 -p1 -b .uic
  209. %patch100 -p0 -b .utf8
  210. %patch101 -p3 -b .CVE-2007-3388
  211. %patch102 -p0 -b .CVE-2007-4137
  212. %patch200 -p1 -b .nostdlib
  213. %patch201 -p1 -b .gcc4-buildkey
  214. %patch238 -p1 -b .odbc
  215. %if %{immodule}
  216. %patch500 -p1 -b .pre
  217. %patch501 -p1
  218. %patch502 -p1 -b .post
  219. %patch503 -p1 -b .quiet
  220. %patch504 -p1 -b .fix-key-release-event-with-imm
  221. %patch505 -p1 -b .resetinputcontext
  222. %endif
  223. %patch800 -p1 -b .gcc43
  224. %build
  225. find . -type d -name CVS | xargs rm -rf
  226. export QTDIR=`/bin/pwd`
  227. export LD_LIBRARY_PATH="$QTDIR/lib:$LD_LIBRARY_PATH"
  228. export PATH="$QTDIR/bin:$PATH"
  229. export LANG=C
  230. OPTFLAGS=`echo $RPM_OPT_FLAGS |sed -e s/-fno-rtti/-frtti/`
  231. %if %{immodule}
  232. sh ./make-symlinks.sh
  233. %endif
  234. perl -pi -e "s,-O2,-I/usr/include/freetype2 $OPTFLAGS,g" mkspecs/*/qmake.conf
  235. ## don't use rpath
  236. perl -pi -e "s|-Wl,-rpath,| |" mkspecs/*/qmake.conf
  237. %if %{buildstatic}
  238. # don't build examples, tools and tutorials with static libraries here
  239. echo yes |./configure \
  240. %if %{_lib} == lib64
  241. -prefix /usr/lib64/qt3 \
  242. -platform linux-g++-64 -L/usr/lib64 \
  243. %else
  244. -prefix /usr/lib/qt3 \
  245. -platform linux-g++ \
  246. %endif
  247. -release -static -qt-gif \
  248. -system-zlib -system-libpng -system-libmng -system-libjpeg \
  249. -no-g++-exceptions -enable-tools -enable-kernel -enable-widgets \
  250. -enable-dialogs -enable-iconview -enable-workspace -enable-network \
  251. -enable-canvas -enable-table -enable-xml -enable-sql -qt-style-motif \
  252. %{plugins} \
  253. -stl -thread -cups \
  254. -enable-opengl -sm -xinerama -xrender -xft -xkb -v
  255. make %{?_smp_mflags} src-qmake
  256. make %{?_smp_mflags} src-moc
  257. make %{?_smp_mflags} sub-src
  258. cp -aR lib lib-bld
  259. cp -aR bin bin-bld
  260. make clean
  261. rm -rf lib bin
  262. mv lib-bld lib
  263. mv bin-bld bin
  264. %endif
  265. %if %{buildnonthread}
  266. # build shared, nonthreaded libraries
  267. echo yes |./configure \
  268. %if %{_lib} == lib64
  269. -prefix /usr/lib64/qt3 \
  270. -platform linux-g++-64 -L/usr/lib64 \
  271. %else
  272. -prefix /usr/lib/qt3 \
  273. -platform linux-g++ \
  274. %endif
  275. -release -shared -qt-gif \
  276. -system-zlib -system-libpng -system-libmng -system-libjpeg \
  277. -no-g++-exceptions -enable-tools -enable-kernel -enable-widgets \
  278. -enable-dialogs -enable-iconview -enable-workspace -enable-network \
  279. -enable-canvas -enable-table -enable-xml -enable-sql -qt-style-motif \
  280. %{plugins} \
  281. -stl -no-thread -cups \
  282. -enable-opengl -sm -xinerama -xrender -xft -xkb -v
  283. make %{?_smp_mflags} src-qmake
  284. make %{?_smp_mflags} src-moc
  285. make %{?_smp_mflags} sub-src
  286. cp -aR lib lib-bld
  287. cp -aR bin bin-bld
  288. make clean
  289. rm -rf lib bin
  290. mv lib-bld lib
  291. mv bin-bld bin
  292. %endif
  293. # build shared, threaded (default) libraries
  294. echo yes |./configure \
  295. %if %{_lib} == lib64
  296. -prefix /usr/lib64/qt3 \
  297. -platform linux-g++-64 -L/usr/lib64 \
  298. %else
  299. -prefix /usr/lib/qt3 \
  300. -platform linux-g++ \
  301. %endif
  302. -release -shared -qt-gif \
  303. -system-zlib -system-libpng -system-libmng -system-libjpeg \
  304. -no-g++-exceptions -enable-tools -enable-kernel -enable-widgets \
  305. -enable-dialogs -enable-iconview -enable-workspace -enable-network \
  306. -enable-canvas -enable-table -enable-xml -enable-sql -qt-style-motif \
  307. %{plugins} \
  308. -stl -thread -cups \
  309. -enable-opengl -sm -xinerama -xrender -xft -xkb -v
  310. make %{?_smp_mflags} src-qmake
  311. cd plugins/src/sqldrivers/psql
  312. qmake -o Makefile "INCLUDEPATH+=/usr/include/pgsql /usr/include/pgsql/server /usr/include/pgsql/internal" "LIBS+=-lpq" psql.pro
  313. cd ../mysql
  314. qmake -o Makefile "INCLUDEPATH+=/usr/include/mysql" "LIBS+=-L%{_libdir}/mysql -lmysqlclient" mysql.pro
  315. cd ../odbc
  316. qmake -o Makefile "LIBS+=-lodbc" odbc.pro
  317. cd ../../../..
  318. make %{?_smp_mflags} src-moc
  319. make %{?_smp_mflags} sub-src
  320. make %{?_smp_mflags} sub-tools UIC="$QTDIR/bin/uic -nostdlib -L $QTDIR/plugins"
  321. %if %{buildXt}
  322. # build Xt/Motif Extention
  323. make -C extensions/nsplugin/src -j $CPUS
  324. %endif
  325. %install
  326. rm -rf $RPM_BUILD_ROOT
  327. export QTDIR=`/bin/pwd`
  328. export LD_LIBRARY_PATH="$QTDIR/lib:$LD_LIBRARY_PATH"
  329. export PATH="$QTDIR/bin:$PATH"
  330. mkdir -p $RPM_BUILD_ROOT%{qtdir}/{bin,include,lib}
  331. mkdir -p $RPM_BUILD_ROOT%{_mandir}/{man1,man3}
  332. # strip binaries
  333. rm -f bin/*.bat
  334. for i in bin/*; do
  335. strip -R .comment $i || :
  336. done
  337. # install tools and libraries
  338. rm bin/qmake
  339. cp -fL qmake/qmake bin
  340. for i in bin/*; do
  341. cp -fL $i $RPM_BUILD_ROOT/%{qtdir}/bin
  342. chmod 0755 $RPM_BUILD_ROOT/%{qtdir}/$i
  343. done
  344. cp -aR lib/* $RPM_BUILD_ROOT/%{qtdir}/lib
  345. cp -aR plugins $RPM_BUILD_ROOT/%{qtdir}
  346. # install man pages
  347. cp -fR doc/man/man1/* $RPM_BUILD_ROOT%{_mandir}/man1
  348. cp -fR doc/man/man3/* $RPM_BUILD_ROOT%{_mandir}/man3
  349. rm -rf doc/man
  350. # clean up
  351. make -C tutorial clean
  352. make -C examples clean
  353. find examples -name Makefile | xargs perl -pi -e 's|\.\./\.\.|\$\(QTDIR\)|'
  354. find examples -type f -perm 755 | xargs strip -R .comment || :
  355. find tutorial -name Makefile | xargs perl -pi -e 's|\.\./\.\.|\$\(QTDIR\)|'
  356. find tutorial -type f -perm 755 | xargs strip -R .comment || :
  357. for a in */*/Makefile ; do
  358. sed 's|^SYSCONF_MOC.*|SYSCONF_MOC = %{qtdir}/bin/moc|' < $a > ${a}.2
  359. mv -v ${a}.2 $a
  360. done
  361. # Get rid of windows or mac specific links
  362. for i in include/* include/*/*; do [ -e $i ] || rm $i; done
  363. cp -frL include/* $RPM_BUILD_ROOT%{qtdir}/include
  364. #chmod a+r $RPM_BUILD_ROOT%{qtdir}/lib/libqt.so*
  365. ln -s qt-%{version} $RPM_BUILD_ROOT%{_libdir}/qt3
  366. mkdir -p $RPM_BUILD_ROOT/etc/profile.d
  367. cat > $RPM_BUILD_ROOT/etc/profile.d/qt.sh <<EOF
  368. # Qt initialization script (sh)
  369. if [ -z "\$QTDIR" ] ; then
  370. QTDIR="%{_libdir}/qt3"
  371. fi
  372. export QTDIR
  373. EOF
  374. chmod 755 $RPM_BUILD_ROOT/etc/profile.d/qt.sh
  375. cat > $RPM_BUILD_ROOT/etc/profile.d/qt.csh <<EOF
  376. # Qt initialization script (csh)
  377. if ( \$?QTDIR ) then
  378. exit
  379. endif
  380. setenv QTDIR %{_libdir}/qt3
  381. EOF
  382. chmod 755 $RPM_BUILD_ROOT/etc/profile.d/qt.csh
  383. mkdir -p $RPM_BUILD_ROOT/usr/bin
  384. for i in bin/*; do
  385. ln -s ../%{_lib}/qt3/bin/`basename $i` $RPM_BUILD_ROOT/%{_bindir}
  386. ln -s `basename $i` $RPM_BUILD_ROOT/usr/bin/`basename $i`3
  387. done
  388. # make symbolic link to qt docdir
  389. if echo %{_docdir} | grep share >& /dev/null ; then
  390. ln -s ../../share/doc/%{name}-devel-%{version} $RPM_BUILD_ROOT%{qtdir}/doc
  391. else
  392. ln -s ../../doc/%{name}-devel-%{version} $RPM_BUILD_ROOT%{qtdir}/doc
  393. fi
  394. # Add desktop file
  395. mkdir -p $RPM_BUILD_ROOT/etc/X11/applnk/Development
  396. cat >$RPM_BUILD_ROOT/etc/X11/applnk/Development/designer.desktop <<EOF
  397. [Desktop Entry]
  398. BinaryPattern=designer;
  399. Comment=Qt 3.3 Interface Designer
  400. Exec=designer
  401. Icon=designer
  402. InitialPreference=5
  403. MapNotify=true
  404. MimeType=application/x-designer
  405. Name=Qt 3.3 Designer
  406. Terminal=false
  407. Type=Application
  408. EOF
  409. # Sane default settings
  410. mkdir -p $RPM_BUILD_ROOT%{qtdir}/etc/settings
  411. cat >$RPM_BUILD_ROOT%{qtdir}/etc/settings/qtrc <<EOF
  412. [General]
  413. libraryPath=/usr/lib/kde3/plugins
  414. style=HighColor
  415. EOF
  416. # Ship qmake stuff
  417. cp -aR mkspecs $RPM_BUILD_ROOT%{qtdir}
  418. # pkg-config files
  419. mkdir -p $RPM_BUILD_ROOT%{_libdir}/pkgconfig
  420. cp $RPM_BUILD_ROOT%{qtdir}/lib/*.pc $RPM_BUILD_ROOT%{_libdir}/pkgconfig
  421. rm -f $RPM_BUILD_ROOT%{qtdir}/lib/*.pc
  422. # add ld.so.conf.d and qt3.conf
  423. mkdir -p $RPM_BUILD_ROOT/etc/ld.so.conf.d
  424. echo "%{qtdir}/lib" > $RPM_BUILD_ROOT/etc/ld.so.conf.d/qt3.conf
  425. %if %{build_compat32}
  426. echo "%{qtdir}/lib" > $RPM_BUILD_ROOT/etc/ld.so.conf.d/qt3-i386.conf
  427. %endif
  428. # delete files do not need
  429. rm -f $RPM_BUILD_ROOT%{qtdir}/lib/README
  430. rm -f $RPM_BUILD_ROOT%{qtdir}/lib/*.prl
  431. rm -f $RPM_BUILD_ROOT%{qtdir}/lib/*.la
  432. rm -rf $RPM_BUILD_ROOT%{qtdir}/plugins/src
  433. # delete files to use alternatives
  434. rm -f $RPM_BUILD_ROOT%{_bindir}/assistant
  435. rm -f $RPM_BUILD_ROOT%{_bindir}/moc
  436. rm -f $RPM_BUILD_ROOT%{_bindir}/qmake
  437. rm -f $RPM_BUILD_ROOT%{_bindir}/qtconfig
  438. rm -f $RPM_BUILD_ROOT%{_bindir}/uic
  439. rm -f $RPM_BUILD_ROOT%{_bindir}/uic3
  440. rm -f $RPM_BUILD_ROOT%{_bindir}/designer
  441. rm -f $RPM_BUILD_ROOT%{_bindir}/linguist
  442. rm -f $RPM_BUILD_ROOT%{_bindir}/lrelease
  443. rm -f $RPM_BUILD_ROOT%{_bindir}/lupdate
  444. %clean
  445. rm -rf $RPM_BUILD_ROOT
  446. %post -p /sbin/ldconfig
  447. %postun -p /sbin/ldconfig
  448. %post devel
  449. /sbin/update-alternatives --install \
  450. %{_bindir}/assistant assistant %{qtdir}/bin/assistant 10
  451. /sbin/update-alternatives --install \
  452. %{_bindir}/qtconfig qtconfig %{qtdir}/bin/qtconfig 10
  453. /sbin/update-alternatives --install \
  454. %{_bindir}/qmake qmake %{qtdir}/bin/qmake 10 \
  455. --slave %{_bindir}/moc \
  456. moc \
  457. %{qtdir}/bin/moc \
  458. --slave %{_bindir}/uic \
  459. uic \
  460. %{qtdir}/bin/uic \
  461. --slave %{_bindir}/lrelease \
  462. lrelease \
  463. %{qtdir}/bin/lrelease \
  464. --slave %{_bindir}/lupdate \
  465. lupdate \
  466. %{qtdir}/bin/lupdate
  467. %posttrans devel
  468. # fix broken symlink if it's there
  469. if [ ! -f %{_bindir}/assistant ] ; then
  470. /sbin/update-alternatives --auto assistant
  471. fi
  472. if [ ! -f %{_bindir}/qtconfig ] ; then
  473. /sbin/update-alternatives --auto qtconfig
  474. fi
  475. if [ ! -f %{_bindir}/qmake ] ; then
  476. /sbin/update-alternatives --auto qmake
  477. fi
  478. %postun devel
  479. if [ $1 -eq 0 ] ; then
  480. /sbin/update-alternatives --remove assistant %{qtdir}/bin/assistant
  481. /sbin/update-alternatives --remove qtconfig %{_qtdir}/bin/qtconfig
  482. /sbin/update-alternatives --remove qmake %{_qtdir}/bin/qmake
  483. /sbin/update-alternatives --auto assistant
  484. /sbin/update-alternatives --auto qtconfig
  485. /sbin/update-alternatives --auto qmake
  486. fi
  487. %post designer
  488. /sbin/update-alternatives --install \
  489. %{_bindir}/designer designer %{qtdir}/bin/designer 10
  490. /sbin/update-alternatives --install \
  491. %{_bindir}/linguist linguist %{qtdir}/bin/linguist 10
  492. %posttrans designer
  493. # fix broken symlink if it's there
  494. if [ ! -f %{_bindir}/designer ] ; then
  495. /sbin/update-alternatives --auto designer
  496. fi
  497. if [ ! -f %{_bindir}/linguist ] ; then
  498. /sbin/update-alternatives --auto linguist
  499. fi
  500. %postun designer
  501. if [ $1 -eq 0 ] ; then
  502. /sbin/update-alternatives --remove designer %{qtdir}/bin/designer
  503. /sbin/update-alternatives --remove linguist %{_qtdir}/bin/linguist
  504. /sbin/update-alternatives --auto designer
  505. /sbin/update-alternatives --auto linguist
  506. fi
  507. %post -n compat32-%{name} -p /sbin/ldconfig
  508. %postun -n compat32-%{name} -p /sbin/ldconfig
  509. %files
  510. %defattr(-,root,root,-)
  511. %doc FAQ LICENSE.* PLATFORMS README* changes*
  512. %config /etc/ld.so.conf.d/qt3.conf
  513. %{_libdir}/qt3
  514. %dir %{qtdir}
  515. %dir %{qtdir}/lib
  516. %if %{buildnonthread}
  517. %{qtdir}/lib/libqt.so.*
  518. %endif
  519. %{qtdir}/lib/libqt-mt.so.*
  520. %{qtdir}/etc/settings/qtrc
  521. %dir %{qtdir}/plugins
  522. %if %{immodule}
  523. %{qtdir}/plugins/inputmethods
  524. %endif
  525. %{qtdir}/lib/libqui.so.*
  526. %{qtdir}/lib/libeditor.a
  527. %{qtdir}/lib/libdesignercore.a
  528. %{qtdir}/lib/libqassistantclient.a
  529. %files devel
  530. %defattr(-,root,root,-)
  531. %attr(0755,root,root) %config /etc/profile.d/*
  532. %{qtdir}/bin/assistant
  533. %{qtdir}/bin/findtr
  534. %{qtdir}/bin/lrelease
  535. %{qtdir}/bin/lupdate
  536. %{qtdir}/bin/moc
  537. %{qtdir}/bin/qm2ts
  538. %{qtdir}/bin/qmake
  539. %{qtdir}/bin/qt20fix
  540. %{qtdir}/bin/qtconfig
  541. %{qtdir}/bin/qtrename140
  542. %{qtdir}/bin/uic
  543. %{qtdir}/include
  544. %{qtdir}/doc
  545. %{qtdir}/mkspecs
  546. %if %{buildnonthread}
  547. %{qtdir}/lib/libqt.so
  548. %endif
  549. %{qtdir}/lib/libqt-mt.so
  550. %{qtdir}/lib/libqui.so
  551. %{_mandir}/*/*
  552. %{_bindir}/assistant*
  553. %{_bindir}/findtr*
  554. %{_bindir}/lrelease*
  555. %{_bindir}/lupdate*
  556. %{_bindir}/moc*
  557. %{_bindir}/qm2ts*
  558. %{_bindir}/qmake*
  559. %{_bindir}/qt20fix*
  560. %{_bindir}/qtconfig*
  561. %{_bindir}/qtrename140*
  562. %doc doc/*
  563. %doc examples
  564. %doc tutorial
  565. %{_libdir}/pkgconfig/*.pc
  566. %if %{buildXt}
  567. %post Xt -p /sbin/ldconfig
  568. %postun Xt -p /sbin/ldconfig
  569. %files Xt
  570. %defattr(-,root,root,-)
  571. %{qtdir}/lib/libqmotif.so*
  572. %endif
  573. %if %{styleplugins}
  574. %files styles
  575. %defattr(-,root,root,-)
  576. %dir %{qtdir}/plugins/styles
  577. %{qtdir}/plugins/styles/*
  578. %endif
  579. %files ODBC
  580. %defattr(-,root,root,-)
  581. %{qtdir}/plugins/sqldrivers/libqsqlodbc*
  582. %files PostgreSQL
  583. %defattr(-,root,root,-)
  584. %{qtdir}/plugins/sqldrivers/libqsqlpsql*
  585. %files MySQL
  586. %defattr(-,root,root,-)
  587. %{qtdir}/plugins/sqldrivers/libqsqlmysql*
  588. %if %{buildstatic}
  589. %files static
  590. %defattr(-,root,root,-)
  591. %{qtdir}/lib/*.a
  592. %exclude %{qtdir}/lib/libeditor.a
  593. %exclude %{qtdir}/lib/libdesignercore.a
  594. %exclude %{qtdir}/lib/libqassistantclient.a
  595. %endif
  596. %files designer
  597. %defattr(-,root,root,-)
  598. %{_bindir}/designer*
  599. %{_bindir}/linguist*
  600. %dir %{qtdir}/plugins/designer
  601. %{qtdir}/plugins/designer/*
  602. %{qtdir}/bin/designer
  603. %{qtdir}/bin/linguist
  604. %config /etc/X11/applnk/Development/designer.desktop
  605. # compat32
  606. %if %{build_compat32}
  607. %files -n compat32-%{name}
  608. %defattr(-,root,root,-)
  609. %config /etc/ld.so.conf.d/qt3-i386.conf
  610. %{_libdir}/qt3
  611. %dir %{qtdir}
  612. %dir %{qtdir}/lib
  613. %if %{buildnonthread}
  614. %{qtdir}/lib/libqt.so.*
  615. %endif
  616. %{qtdir}/lib/libqt-mt.so.*
  617. %{qtdir}/etc/settings/qtrc
  618. %dir %{qtdir}/plugins
  619. %if %{immodule}
  620. %{qtdir}/plugins/inputmethods
  621. %endif
  622. %{qtdir}/lib/libqui.so.*
  623. %{qtdir}/lib/libeditor.a
  624. %{qtdir}/lib/libdesignercore.a
  625. %{qtdir}/lib/libqassistantclient.a
  626. %files -n compat32-%{name}-devel
  627. %defattr(-,root,root,-)
  628. %{qtdir}/bin/assistant
  629. %{qtdir}/bin/findtr
  630. %{qtdir}/bin/moc
  631. %{qtdir}/bin/qm2ts
  632. %{qtdir}/bin/qmake
  633. %{qtdir}/bin/qt20fix
  634. %{qtdir}/bin/qtconfig
  635. %{qtdir}/bin/qtrename140
  636. %{qtdir}/bin/uic
  637. %{qtdir}/include
  638. %{qtdir}/doc
  639. %{qtdir}/mkspecs
  640. %if %{buildnonthread}
  641. %{qtdir}/lib/libqt.so
  642. %endif
  643. %{qtdir}/lib/libqt-mt.so
  644. %{qtdir}/lib/libqui.so
  645. %{_libdir}/pkgconfig/*.pc
  646. %endif
  647. %changelog
  648. * Tue Apr 12 2011 IWAI, Masaharu <iwai@alib.jp> 3.3.8-11
  649. - add new unixODBC patch (Patch238) from Fedora qt3-3.3.8b-35
  650. * Sat Apr 9 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.3.8-10
  651. - rebuilt with unixODBC-2.2.14 and cups-1.4.6
  652. * Tue Mar 8 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.3.8-9
  653. - updated %%post. %%posttrans and %%postun section
  654. * Mon Sep 27 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.3.8-8
  655. - rebuilt with rpm-4.8.1 for pkg-config
  656. * Fri May 14 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.3.8-7
  657. - updated Requires of devel package
  658. * Fri Feb 12 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.3.8-6
  659. - rebuilt with new toolchain
  660. - s/BuildPrereq/BuildRequires/
  661. - add Patch800 to build w/ gcc >= 4.3
  662. * Sat Jul 25 2009 NAKAMURA Kenta <kenta@vinelinux.org> 3.3.8-5
  663. - added compat32 package for x86_64 arch support
  664. * Fri May 22 2009 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.8-4
  665. - rebuilt with MySQL-5.1.34.
  666. * Sat Apr 25 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.3.8-3
  667. - changed qt-designer Group to Applications/Development
  668. - updated URL
  669. * Wed May 28 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.8-2
  670. - build with xorg-x11-7.3
  671. - update BuildPrereq and Requires
  672. * Mon Mar 24 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.8-1
  673. - fix release ([VineSeed:1527])
  674. - add Requires(post,postun): alternatives to -devel and -designer package
  675. * Sun Jan 20 2008 NAKAMURA Kenta <kenta@vinelinux.org> 3.3.8-0vl6
  676. - replaced "LIBS+=-L/usr/lib/mysql" with "LIBS+=-L%%{_libdir}/mysql"
  677. * Thu Jan 17 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.8-0vl5
  678. - add Requires to devel package
  679. * Tue Dec 4 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.8-0vl4
  680. - drop Patch300 (OverTheSpot)
  681. * Thu Sep 20 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.8-0vl3
  682. - add Patch102 (CVE-2007-4137)
  683. * Thu Aug 2 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.8-0vl2
  684. - add Patch101 (CVE-2007-3388)
  685. * Tue Jun 5 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.8-0vl1
  686. - new upstream release
  687. - add Patch100 (CVE-2007-0242)
  688. - add Patch201
  689. - update Patch300, 500, 501 and 502
  690. - drop Patch1 (CVE-2006-4811), 301 (ATOK X) and 400 (AA)
  691. * Thu May 10 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 3.3.5-0vl10
  692. - rebuild with libstdc++34
  693. * Sat Feb 10 2007 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.3.5-0vl9
  694. - import patches from FC
  695. - patch504: fix-key-release-event-with-imm.diff
  696. - patch505: immodule-unified-qt3.3.5-20060318-resetinputcontext.patch
  697. * Thu Jun 29 2006 Than Ngo <than@redhat.com> 1:3.3.6-0.3.fc5
  698. - fix #183302, IM preedit issue in kbabel
  699. * Mon Jun 26 2006 Than Ngo <than@redhat.com> 1:3.3.6-0.2.fc5
  700. - fix #156572, keyReleaseEvent issue
  701. * Tue Dec 19 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.3.5-0vl8
  702. - use %%{_lib} instead of lib not to create broken symlinks on x86_64
  703. * Mon Nov 13 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.5-0vl7
  704. - add Patch200 from fedora core
  705. - build with MySQL-5.0.27-0vl3
  706. * Tue Oct 24 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.5-0vl6
  707. - add ld.so.conf.d and qt3.conf
  708. - update Patch1 (https://bugs.gentoo.org/attachment.cgi?id=100045)
  709. * Thu Oct 19 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.5-0vl5
  710. - add Patch1 (CVE-2006-4811)
  711. * Mon Sep 19 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.5-0vl4
  712. - move %%{_libdir}/qt3 from develop to main
  713. - fix typo
  714. - add patch503
  715. -- Thu Sep 14 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.3.5-0vl2.0imm.1
  716. - import qt-x11-immodule-unified-quiet.patch (patch503) from FC
  717. - add patch500-502
  718. -- Thu Sep 14 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 3.3.5-0vl2.0imm
  719. - add immodule for Qt support (patch500-502)
  720. - patch500: revert some part of patch300,301 (conflict with patch501)
  721. - patch501: immodule for Qt patch
  722. - patch502: apply some part of patch300,301 again
  723. cf. http://immodule-qt.freedesktop.org/
  724. http://people.freedesktop.org/~daisuke/
  725. * Sun Sep 10 2006 NAKAMURA Kenta <kenta@vinelinux.org> 3.3.5-0vl3
  726. - added configure options for builing on 64-bit archs
  727. * Tue Sep 13 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.5-0vl2
  728. - rebuild for VineSeed
  729. * Tue Sep 13 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.5-0vl1
  730. - new upstream release
  731. - stop building nonthreaded libs
  732. - delete Obsoletes
  733. - add Patch0
  734. * Tue Jul 5 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.4-0vl6
  735. - rebuild for VineSeed
  736. * Tue Jul 5 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.4-0vl5
  737. - build for Vine3.1
  738. - add -v to configure option
  739. - move three static libs to main package
  740. * Wed Mar 16 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.4-0vl4
  741. - rebuild for VineSeed
  742. * Sat Mar 12 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.4-0vl3
  743. - (security) stop using rpath
  744. - cleanup this file
  745. * Thu Feb 17 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.4-0vl2
  746. - rebuild for VineSeed
  747. * Thu Feb 17 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.4-0vl1
  748. - new upstream release
  749. - update Patch400
  750. * Sat Dec 11 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.3-0vl3
  751. - rebuld
  752. * Wed Nov 17 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.3-0vl2
  753. - add Obsoletes: qt32-*
  754. * Sun Sep 5 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.3-0vl1
  755. - source upgrade
  756. - remove patch100
  757. - update patch300 and remove patch302-303
  758. - update patch400
  759. - update BuildPrereq and Requires
  760. * Wed Jul 28 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.2-0vl3
  761. - add patch302-303 from KuserML
  762. - delete lines about vine26
  763. * Sun Jun 6 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.2-0vl2
  764. - add patch100 from webcvs.kde.org/cgi-bin/cvsweb.cgi/qt-copy/patches/
  765. * Fri Apr 30 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.2-0vl1
  766. - source upgrade
  767. - remove patch100 (it is needed only for 3.3.1)
  768. * Sun Apr 18 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.1-0vl3
  769. - rebuild with XOrg
  770. * Mon Mar 29 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.1-0vl2
  771. - rebuild
  772. * Mon Mar 8 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.1-0vl1
  773. - source upgrade
  774. - remove patch800
  775. - add patch100 (only for qt-x11-free-3.3.1)
  776. * Sun Feb 1 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.3-0vl3
  777. - enable cups support
  778. * Sun Dec 21 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.3-0vl2
  779. - build for VineSeed with new toolchain
  780. - disable cup support
  781. * Wed Dec 3 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.3-0vl1
  782. - source upgrade
  783. - revised Patch402 and 403
  784. - remove Patch100
  785. - add patch800 to build against freetype2-2.1.7
  786. - (VinePlus/2.6) BuildPrereq: autoconf258
  787. * Sun Nov 9 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.2-0vl1
  788. - source upgrade
  789. - revised Patch400
  790. - remove Patch15
  791. * Sun Nov 2 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.1-0vl4
  792. - enable cups support
  793. * Sun Oct 19 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.1-0.26vl3
  794. - rebuild for Vine2.6
  795. * Sun Oct 19 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.1-0vl3
  796. - revised Patch400 and Patch402
  797. - clean up spec
  798. * Sun Sep 28 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.1-0.26vl2
  799. - rebuild for Vine2.6
  800. * Sun Sep 28 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.1-0vl2
  801. - revised Patch400-
  802. - clean up spec
  803. * Mon Sep 15 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.1-0.26vl1
  804. - rebuild for Vine2.6
  805. * Mon Sep 15 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.1-0vl1
  806. - source upgrade
  807. - add Patch100
  808. - remove Patch302 (it is included in this source)
  809. - stop using Patch400-
  810. - build with gcc-3.2.3
  811. - add export LANG=C
  812. - add *.pc (pkg-config files) to qt-devel package
  813. * Fri Aug 15 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.2-0.26vl5
  814. - rebuild for Vine2.6
  815. * Wed Aug 13 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.2-0vl5
  816. - add Patch302 to fix performance of jmode
  817. - change make option for SMP and add script
  818. * Thu Jun 19 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.2-0vl4
  819. - update Patch400 and 401
  820. * Wed Jun 18 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.2-0vl3
  821. - change spec to build with g++-2.95.3
  822. * Mon Apr 21 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.2-0.26vl2
  823. - rebuild for Vine2.6
  824. * Wed Apr 16 2003 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 3.1.2-0vl2
  825. - rebuilt with libpng >= 1.2.5 when %%{vine26} is set to 0 (ie VineSeedPlus)
  826. * Fri Mar 21 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.2-0vl1
  827. - source upgrade
  828. - remove all patches except patch15
  829. - revised patch 300-
  830. - stop building Xt package
  831. * Mon Feb 24 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.1-0vl3
  832. - revised patch 301 and 302
  833. - enable patch 301 and 302 to Vine2.5/2.6
  834. * Sun Feb 9 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.1-0vl2
  835. - change spec to build both VineSeed and Vine2.5/2.6
  836. - re-number patch300-
  837. - delete patch4 (qt-3.1.1 does not need it)
  838. - add patch13 and 14
  839. -- Thu Dec 19 2002 Than Ngo <than@redhat.com> 3.1.1-3
  840. - add monospace patch file from Leon Ho (bug #79949)
  841. - add small patch file from Sysoltsev Slawa (bug #79731)
  842. - add patch15
  843. -- Mon Dec 30 2002 Florian La Roche <Florian.LaRoche@redhat.de>
  844. - Change qmlined.h to not include an attic header that is also not shipped
  845. with Red Hat Linux. This also fixes building unixODBC, that includes this
  846. header (apparently also without needing it).
  847. * Sat Jan 4 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.1-0vl1
  848. - source upgrade
  849. - cleanup spec
  850. - revised Patch7, 301
  851. - add Patch306, 307, 308 from kde.gr.jp
  852. * Sun Dec 15 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.0-0vl1
  853. - source upgrade
  854. - stop using objprelink2, it does not work with gcc3
  855. - add Patch304 and Patch305 from www.kde.gr.jp/~akito/xft/patch_xft.html
  856. - add Patch1 - Patch12 from rawhide 3.1.0-1.3
  857. - add BuildPrereq: openMotif-devel >= 2.2.2 for build qt-Xt
  858. - cleanup spec for build x11 package only
  859. * Mon Nov 11 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.0.5-0vl3
  860. - add export PATH=`pwd`:$PATH to %%build section
  861. * Mon Oct 15 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.0.5-0vl2
  862. - objprelink2 support only i386 (add %%ifarch i386 ... again)
  863. - delete BuildPrereq: libmng-static (it merged to libmng-devel)
  864. - delete %%doc ANNOUNCE
  865. - Requires: XFree86-gl instead of Mesa
  866. * Fri Oct 4 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.0.5-0vl1
  867. - add BuildPrereq: objprelink2 instead of BuildPrereq: objprelink
  868. - add BuildPrereq: autoconf253 automake15
  869. - delete Patch199 (objprelink2 do not need this patch)
  870. - source upgrade
  871. - revised all patches [Kdeveloper:02404]
  872. - add man files to qt-devel sub-package
  873. * Tue Jul 16 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.0.3-1vl5
  874. - add patch304 from kde.gr.jp [Kdeveloper:02368]
  875. * Thu Jul 4 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.0.3-1vl4
  876. - add patch303 from kde.gr.jp [Kdeveloper:02378]
  877. * Wed Apr 17 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.0.3-1vl3
  878. - add patch302 from kde.gr.jp
  879. * Thu Apr 4 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.0.3-1vl2
  880. - revised patch300 from kde.gr.jp and XIMInputStyle=Over The Spot in qtrc
  881. - add patch301 from kde.gr.jp
  882. - make unixODBC plugin (delete define odbcplugins 0 and if %%{odbcplugins})
  883. * Sat Mar 30 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.0.3-1vl1
  884. - merged with rawhide 3.0.3-0.cvs20020314.1
  885. - source update to 3.0.3
  886. - add patch199 (objprelink)
  887. - add patch300 and add defaultInputStyle=OverTheSpot in qtrc
  888. - define cups 0 (Vine does not have cups)
  889. - define odbcplugins 0 (unixODBC requires libqt-mt.so.2 of qt-2)
  890. - cleanup spec
  891. - There is Vine's previous changes, hacked for Vine
  892. -- Sat Jan 5 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.3.1-6vl4
  893. - rebuild with -xft support (XFree86-4.1.99.4)
  894. -- Mon Dec 31 2001 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 2.3.1-6vl3
  895. - rebuild with glibc-2.2.4
  896. -- Sun Nov 25 2001 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 2.3.1-6vl2
  897. - add Source2 and Patch4 (use objprelink, i386 only)
  898. -- Sat Oct 13 2001 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 2.3.1-6vl1
  899. - Build for VineSeed
  900. - Add qt.using_new_library.patch from Kondara
  901. -- Mon Jun 11 2001 net_hal <net_hal@cwa.bai.ne.jp>
  902. - First build for Vine2.1.5
  903. -- Thu Apr 12 2001 Rex Dieter <rdieter@unl.edu> 2.3.0-0.6x.3
  904. - redhat 6.x backport based on rawhide's qt-2.3.0-3
  905. - remove -xft support (because we're using XFree-3)
  906. * Thu Mar 14 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.3-0.cvs20020314.1
  907. - Update to 3.0.3-pre, required for KDE3
  908. - force -fPIC usage
  909. - Remove conflict with qt2 < 2.3.2-1, the new qt2 2.3.1 is fixed and qt 2.3.2
  910. is broken
  911. - Ship the qmake config files (so qmake works for building any 3rd party stuff,
  912. e.g. aethera)
  913. * Wed Mar 6 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.2-2
  914. - Add some fixes from KDE's qt-copy CVS
  915. - Pluginize image formats
  916. * Mon Feb 25 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.2-1
  917. - 3.0.2 final
  918. * Tue Feb 19 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.2-0.cvs20020118.3
  919. - Add GB18030 codec patch, #60034
  920. - Force-build jpeg support, fixing #59775 and #59795
  921. * Sat Jan 26 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.2-0.cvs20020118.2
  922. - Build with CUPS support
  923. * Fri Jan 18 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.2-0.cvs20020118.1
  924. - Fix up /usr/bin/moc links, they should point to qt3
  925. * Mon Jan 14 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.2-0.cvs20020114.1
  926. - Build styles directly into the main library for now, there's too much broken
  927. code out there depending on this ATM.
  928. * Wed Jan 9 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.2-0.cvs20020109.1
  929. - Stop excluding alpha, gcc has been fixed
  930. * Tue Jan 8 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.2-0.cvs20020108.1
  931. - Add fixes from CVS; this fixes the "Alt + F1, arrow up, arrow up doesn't work
  932. in KDE" bug
  933. * Mon Dec 17 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.1-2
  934. - Fix up settings search path
  935. - Add default qtrc allowing to use KDE 3.x Qt plugins
  936. - Make sure QLibrary uses RTLD_GLOBAL when dlopen()ing libraries
  937. * Thu Dec 13 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.1.0-1
  938. - Work around gcc bug #57467
  939. * Wed Dec 12 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  940. - 3.0.1 final
  941. * Mon Dec 10 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.1-0.cvs20011210.1
  942. - Update to current (needed by KDE 3.x)
  943. - Rebuild with current libstdc++
  944. - Temporarily disable building on alpha
  945. - Fix build with PostgreSQL 7.2
  946. * Mon Nov 26 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-5
  947. - Fix up glweak
  948. * Mon Nov 5 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-4
  949. - Give designer, uic, moc, etc. their real names - the qt2 versions
  950. have been renamed in qt2-2.3.2-1.
  951. Conflict with qt2 < 2.3.2-1.
  952. * Thu Oct 25 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-3
  953. - Add symlink /usr/lib/qt-3.0.0 -> /usr/lib/qt3 and set QTDIR to the
  954. symlink, allowing to update to 3.0.1 without breaking rpath'ed binaries
  955. * Tue Oct 16 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-1
  956. - 3.0.0 final
  957. - fix some minor specfile bugs
  958. - Modularize some more (image format plugins)
  959. - Build codecs
  960. * Tue Sep 18 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-0.beta5.1
  961. - beta5
  962. - Share more code between qt-x11 and qt-embedded builds
  963. * Wed Aug 29 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-0.beta4.1
  964. - beta4
  965. - build the Motif style directly into Qt rather than as a plugin - Qt should
  966. always have at least one style...
  967. - replace the designer3 symlink with a shell script that sets QTDIR correctly
  968. before launching designer
  969. - Add desktop file for designer
  970. * Mon Aug 6 2001 Tim Powers <timp@redhat.com> 3.0.0-0.beta3.4
  971. - explicitly include qm2ts, qmake, qtconfig in the devel package file list to avoid dangling symlinks
  972. * Thu Aug 2 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-0.beta3.3
  973. - Try yet another workaround for buildsystem breakages
  974. * Tue Jul 31 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  975. - Add another ugly workaround for build system problems, this should finally
  976. get rid of the dangling symlinks
  977. * Tue Jul 31 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-0.beta3.2
  978. - Rephrase parts of the spec file, hopefully pleasing the build system
  979. * Sun Jul 29 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-0.beta3.1
  980. - beta3
  981. - Fix dangling symlinks
  982. * Sun Jun 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-0.beta1.2
  983. - Fix up QSQL Postgres classes for Postgres 7.1.x
  984. - Fix various bugs:
  985. - QtMultilineEdit and QtTableView should actually compile
  986. - Link libqsqlpsql with libpq
  987. - Don't link the base library with libmysqlclient, linking the MySQL
  988. module with it is sufficient
  989. - Add missing const qualifier
  990. - move the SQL drivers to separate packages to avoid dependencies
  991. - build and install designer plugins - converting glade files to Qt is fun. ;)
  992. - handle RPM_OPT_FLAGS
  993. * Tue May 22 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-0.beta1.1
  994. - 3.0 beta 1
  995. * Wed May 16 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-0.cvs20010516.1
  996. - Update, remove conflicts with Qt 2.x
  997. * Mon May 14 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-0.cvs20010514.1
  998. - Initial build of 3.0 branch
  999. * Fri Apr 27 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.3.0-6
  1000. - Fix crashes on ia64, Patch from Bill Nottingham <notting@redhat.com>
  1001. - Allow building qt-nox
  1002. * Fri Apr 20 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.3.0-5
  1003. - Make sure uic and designer use the libqui from the source tree, not
  1004. a previously installed one.
  1005. Linking uic-x11 against libqui-embedded is definitely not a feature. ;)
  1006. - The qclipboard fix is needed for qt-x11 only, don't apply it if we're
  1007. building qt-embedded
  1008. * Sat Apr 14 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  1009. - Handle LPRng specific constructs in printcap, Bug #35937
  1010. * Sun Mar 25 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  1011. - add qfont patch from Trolltech
  1012. * Tue Mar 13 2001 Harald Hoyer <harald@redhat.de>
  1013. - added patch for '@euro' language settings
  1014. * Tue Mar 6 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  1015. - 2.3.0 final
  1016. - BuildRequires XFree86-devel >= 4.0.2 (#30486)
  1017. * Mon Feb 26 2001 Than Ngo <than@redhat.com>
  1018. - fix check_env function, so that qt does not crash if QT_XFT is not set
  1019. - fix symlinks
  1020. * Mon Feb 26 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  1021. - 2.3.0b1
  1022. - Add a patch to qpsprinter that handles TrueType fonts even if they come from xfs
  1023. * Tue Feb 13 2001 Preston Brown <pbrown@redhat.com>
  1024. - japanese input and clipboard fixes applied. Changes have been sent upstream by patch authors.
  1025. * Fri Feb 9 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  1026. - Rebuild with new Mesa to get rid of pthreads linkage
  1027. - Add Xft fix from KDE CVS
  1028. * Wed Feb 7 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  1029. - Add printing bugfix patch from Trolltech
  1030. * Sat Feb 3 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  1031. - 2.2.4
  1032. - Qt Embedded: Add QVfb and VNC support
  1033. * Tue Jan 16 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  1034. - Don't segfault when running Qt/Embedded applications as root
  1035. - Improve the Qt/Embedded sparc patch so we don't need the specfile hacks
  1036. anymore
  1037. - Fix a bug in QPrintDialog (causing KDE Bug #18608)
  1038. * Thu Jan 11 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  1039. - bzip2 source to save space
  1040. - Qt/Embedded 2.2.3
  1041. - Fix qte build on sparc
  1042. * Wed Dec 20 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1043. - Run ldconfig in %%post and %%postun for qt-Xt
  1044. * Sun Dec 17 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1045. - Build with the Xrender extension
  1046. (Patch from Keith Packard <keithp@keithp.com>)
  1047. * Wed Dec 13 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1048. - 2.2.3
  1049. * Tue Dec 12 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1050. - Rebuild to fix permissions on doc dir
  1051. - Don't exclude ia64 anymore
  1052. * Fri Nov 17 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1053. - Fix up uic (Patch from trolltech)
  1054. * Wed Nov 15 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1055. - Build qt-embedded
  1056. changes to base: fix build, fix ISO C99 compliance, fix 64bit support
  1057. * Mon Nov 13 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1058. - 2.2.2
  1059. * Tue Oct 24 2000 Than Ngo <than@redhat.com>
  1060. - call ldconfig for updating (Bug #19687)
  1061. - added patch from Trolltech, thanks to Rainer <rms@trolltech.com>
  1062. * Wed Oct 18 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1063. - Add missing msg2qm, msgmerge, qconfig tools (Bug #18997), introduced
  1064. by broken Makefiles in base
  1065. - fix up %%install so it works both with old-style and new-style fileutils
  1066. (fileutils <= 4.0z don't know about -L)
  1067. * Fri Oct 13 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1068. - Disable exception handling; this speeds up KDE 2.x and reduces its
  1069. memory footprint by 20 MB.
  1070. * Tue Oct 10 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1071. - dereference symlinks in include
  1072. * Sun Oct 8 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1073. - fix -devel
  1074. - update to the new version of 2.2.1 on trolltech.com; the initial tarball
  1075. contained broken docs
  1076. * Thu Oct 5 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1077. - 2.2.1
  1078. * Mon Sep 25 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1079. - Add missing uic
  1080. * Thu Sep 21 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1081. - Move Qt designer to a different source RPM to get rid of a
  1082. circular dependency (kdelibs2->qt, qt->kdelibs2)
  1083. - Enable MNG support
  1084. - Don't compile (just include) examples and tutorials
  1085. - move the static libraries to a separate package (qt-static).
  1086. They're HUGE, and most people won't ever need them.
  1087. - clean up spec file
  1088. - fix up dependencies (-devel requires base, -static requires devel,
  1089. Xt requires base)
  1090. - add BuildRequires line
  1091. * Tue Sep 12 2000 Than Ngo <than@redhat.com>
  1092. - update release 2.2.0
  1093. - changed copyright to GPL
  1094. - added missing static libraries
  1095. - made symbolic link for designer to load the help files correct
  1096. - made designer and designer-kde2 as sub packages
  1097. - added missing templates for designer
  1098. - remove jakub patch, since the release 2.2.0 already
  1099. contains this patch.
  1100. - fixed qt again to compile with gcc-2.96
  1101. - use make -j for building
  1102. * Wed Aug 23 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1103. - Work around compiler bugs (Patch from Jakub)
  1104. - Use relative symlinks (Bug #16750)
  1105. * Mon Aug 21 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1106. - beta2
  1107. * Mon Aug 14 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1108. - new qt-copy from KDE2 CVS
  1109. * Wed Aug 9 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1110. - official beta 1
  1111. * Thu Aug 3 2000 Than Ngo <than@redhat.de>
  1112. - rebuilt against the libpng-1.0.8
  1113. * Thu Jul 27 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1114. - rebuild (so we have it on all arches)
  1115. * Tue Jul 25 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1116. - move man pages to a more reasonable place (this fixes Bug #14126)
  1117. - exclude ia64 for now (compiler problems!!!)
  1118. * Mon Jul 24 2000 Harald Hoyer <harald@redhat.de>
  1119. - modified connect patch to fit qt 2.2.0 beta.
  1120. * Thu Jul 20 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1121. - update to current qt-copy; this is now a qt 2.2.0 beta.
  1122. * Mon Jul 17 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1123. - update to current qt-copy in kde CVS, required
  1124. * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
  1125. - automatic rebuild
  1126. * Sun Jul 11 2000 Harald Hoyer <harald@redhat.de>
  1127. - made patch smaller and binary compatible when recompiled with 6.2
  1128. - modified connect and moc to cope with the new g++ class layout
  1129. * Sun Jul 09 2000 Than Ngo <than@redhat.de>
  1130. - rebuilt qt with gcc-2.96-34
  1131. * Fri Jul 07 2000 Than Ngo <than@redhat.de>
  1132. - rebuilt qt with c++ 2.96
  1133. * Mon Jul 3 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1134. - Fix dependancies
  1135. * Sun Jul 2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1136. - Use egcs++ for now ** FIXME
  1137. * Wed Jun 28 2000 Preston Brown <pbrown@redhat.com>
  1138. - fix up qt.sh
  1139. * Sun Jun 25 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1140. - Build in jpeg and threading support
  1141. - Fix a bug in clipboard pasting code
  1142. * Wed Jun 07 2000 Preston Brown <pbrown@redhat.com>
  1143. - fix qt.{sh,csh}
  1144. - use new rpm macro paths
  1145. - package man pages
  1146. * Fri Jun 2 2000 Bill Nottingham <notting@redhat.com>
  1147. - build without optimization on ia64
  1148. * Mon May 29 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1149. - 2.1.1
  1150. * Thu May 18 2000 Florian La Roche <Florian.LaRoche@redhat.com>
  1151. - recompile with correct libstdc++
  1152. * Thu Apr 13 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1153. - 2.1.0 final
  1154. * Wed Apr 5 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1155. - beta4
  1156. - depend on libGL.so.1 rather than Mesa - XFree86 4.0 provides that
  1157. lib, too
  1158. * Wed Mar 22 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1159. - beta3
  1160. * Tue Mar 7 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1161. - beta2
  1162. - fix compilation of the NSPlugin add-on
  1163. * Fri Mar 3 2000 Bill Nottingham <notting@redhat.com>
  1164. - fix %postun script
  1165. * Fri Feb 18 2000 Bernhard Rosenkr?nzer <bero@redhat.com>
  1166. - beta1
  1167. - get rid of qt-ImageIO, the functionality is now in the main Qt library
  1168. - remove qt-Network, the functionality is now in the main Qt library
  1169. - add changes-2.1.0 to %doc
  1170. * Thu Feb 17 2000 Preston Brown <pbrown@redhat.com>
  1171. - no refcount check on postun script, we want it to happen even on upgrades
  1172. * Thu Feb 10 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1173. - new snapshot, should fix QWhatsThisButton
  1174. - remove executable permissions from *.pro files
  1175. * Mon Feb 07 2000 Preston Brown <pbrown@redhat.com>
  1176. - strip binaries in examples, tutorial
  1177. * Mon Jan 31 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1178. - new snapshot - should fix the hotkey bug
  1179. - Fix up the Makefiles so it compiles
  1180. * Tue Jan 18 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1181. - new snapshot - we need those QVariant fixes
  1182. * Thu Jan 13 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1183. - switch from glxMesa to Mesa for the GL addon
  1184. * Wed Jan 5 2000 Bernhard Rosenkr?nzer <bero@redhat.com>
  1185. - Fix up dependencies
  1186. - new snapshot
  1187. * Mon Jan 3 2000 Ngo Than <than@redhat.de>
  1188. - new snapshot for Red Hat Linux 6.2
  1189. - increase version number
  1190. * Mon Dec 20 1999 Bernhard Rosenkraenzer <bero@redhat.com>
  1191. - new snapshot
  1192. - handle RPM_OPT_FLAGS
  1193. * Mon Dec 13 1999 Bernhard Rosenkraenzer <bero@redhat.com>
  1194. - new snapshot
  1195. - -GL requires libGL.so.1 instead of Mesa (might as well be glxMesa
  1196. or some commercial OpenGL)
  1197. - -GL BuildPrereqs /usr/X11R6/include/GL/gl.h instead of Mesa-devel
  1198. (might as well be glxMesa or some commercial OpenGL)
  1199. * Sun Dec 05 1999 Bernhard Rosenkraenzer <bero@redhat.com>
  1200. - update to current RSYNC version
  1201. - remove compilation patch - it finally works out of the box
  1202. * Wed Oct 27 1999 Bernhard Rosenkraenzer <bero@redhat.com>
  1203. - update to current CVS snapshot
  1204. - build extensions
  1205. - add patch to fix QNetwork compilation
  1206. * Sun Oct 24 1999 Bernhard Rosenkraenzer <bero@redhat.de>
  1207. - current CVS snapshot
  1208. - fix compilation with gcc 2.95.x
  1209. - use install -c rather than just install to make BSD install happy
  1210. * Mon Oct 11 1999 Bernhard Rosenkraenzer <bero@redhat.de>
  1211. - 2.1.0 snapshot (for KDE2)
  1212. - Fix typo in spec
  1213. * Thu Sep 23 1999 Preston Brown <pbrown@redhat.com>
  1214. - don't ship tutorial or example binaries
  1215. * Tue Sep 21 1999 Preston Brown <pbrown@redhat.com>
  1216. - substitution in tutorial and examples so that dependencies are correct and
  1217. they can be successfully rebuilt.
  1218. - switched to completely using QTDIR. trying to coexist with links into
  1219. /usr/{include,lib} and still compile with qt 1.x is very hard for
  1220. configure scripts to cope with.
  1221. * Thu Aug 19 1999 Preston Brown <pbrown@redhat.com>
  1222. - implemented QTDIR compatibility.
  1223. * Tue Jul 20 1999 Preston Brown <pbrown@redhat.com>
  1224. - qt 2.0.1 packaged.
  1225. * Wed Jul 14 1999 Preston Brown <pbrown@redhat.com>
  1226. - Qt 2.00 packaged.
  1227. - examples, html documentation, tutorial moved to /usr/doc
  1228. * Sat Apr 17 1999 Preston Brown <pbrown@redhat.com>
  1229. - static library supplied in dev package.
  1230. * Wed Apr 07 1999 Preston Brown <pbrown@redhat.com>
  1231. - turn on internal GIF reading support
  1232. * Tue Apr 06 1999 Preston Brown <pbrown@redhat.com>
  1233. - strip binaries
  1234. * Mon Mar 15 1999 Preston Brown <pbrown@redhat.com>
  1235. - upgrade to qt 1.44.
  1236. * Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
  1237. - Injected new description and group.
  1238. * Tue Jan 19 1999 Preston Brown <pbrown@redhat.com>
  1239. - moved includes to /usr/include/qt
  1240. * Mon Jan 04 1999 Preston Brown <pbrown@redhat.com>
  1241. - made setup phase silent.
  1242. * Fri Dec 04 1998 Preston Brown <pbrown@redhat.com>
  1243. - upgraded to qt 1.42, released today.
  1244. * Tue Dec 01 1998 Preston Brown <pbrown@redhat.com>
  1245. - took Arnts RPM and made some minor changes for Red Hat.