kdepim-vl.spec 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693
  1. Name: kdepim
  2. Summary: PIM (Personal Information Manager) for KDE
  3. Summary(ja): KDE の個人情報管理(PIM)アプリケーション集
  4. Version: 4.4.5
  5. Release: 2%{?_dist_release}
  6. Source: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/kdepim-%{version}.tar.bz2
  7. Patch0: kdepim-4.1.80-libqgpgme-link-fix.patch
  8. # http://bugzilla.redhat.com/show_bug.cgi?id=496988
  9. Patch1: kdepim-4.3.1-kmail-saveAttachments.patch
  10. ## upstream
  11. # KDE.org patches
  12. # KDE.gr.jp patches
  13. URL: http://www.kde.org/
  14. Group: Applications/Productivity
  15. License: GPLv2
  16. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  17. BuildRequires: akonadi-devel
  18. BuildRequires: bison flex
  19. BuildRequires: libboost-devel
  20. BuildRequires: cyrus-sasl-devel
  21. BuildRequires: desktop-file-utils
  22. BuildRequires: gnokii-devel
  23. BuildRequires: gpgme-devel
  24. BuildRequires: kdepimlibs-devel >= %{version}
  25. BuildRequires: kdelibs-experimental-devel
  26. BuildRequires: libassuan-devel
  27. BuildRequires: libical-devel
  28. BuildRequires: libXpm-devel libXScrnSaver-devel
  29. # TODO: libmapi from http://www.openchange.org/
  30. #BuildRequires: libmapi-devel
  31. BuildRequires: libxslt-devel
  32. # libmal currently not used, recheck with kdepim-4.3
  33. BuildRequires: pilot-link-devel >= 0.12.4
  34. BuildRequires: python-devel
  35. BuildRequires: soprano-devel
  36. BuildRequires: qca2-devel
  37. BuildRequires: zlib-devel
  38. Requires: %{name}-libs = %{version}-%{release}
  39. Obsoletes: kdepim4 < %{version}-%{release}
  40. Provides: kdepim4 = %{version}-%{release}
  41. Conflicts: kdepim3
  42. Conflicts: kdeutils3
  43. %description
  44. A PIM (Personal Information Manager) for KDE.
  45. What it is
  46. ----------
  47. * kmail: email client
  48. * knode: newsreader
  49. * knotes: sticky notes for the desktop
  50. * kontact: integrated PIM management
  51. * korganizer: journal, appointments, events, todos
  52. %{?_with_pilot_link:* kpilot: HotSync® software for Palm OS® devices}
  53. %package libs
  54. Summary: %{name} runtime libraries
  55. Group: System Environment/Libraries
  56. Requires: kdelibs4 >= %{version}
  57. %description libs
  58. %{summary}.
  59. %package devel
  60. Summary: Development files for kdepim
  61. Group: Development/Libraries
  62. Requires: %{name}-libs = %{version}-%{release}
  63. Requires: kdelibs4-devel
  64. Obsoletes: kdepim4-devel < %{version}-%{release}
  65. Provides: kdepim4-devel = %{version}-%{release}
  66. Conflicts: kdepim3-devel
  67. %description devel
  68. Development files for %{name}.
  69. Install %{name}-devel if you want to write or compile %{name} plugins.
  70. %prep
  71. %setup -q -n kdepim-%{version}
  72. %patch0 -p1 -b .libqgpgme-link-fix
  73. %patch1 -p0 -b .kmail-saveAttachments
  74. %build
  75. mkdir -p %{_target_platform}
  76. pushd %{_target_platform}
  77. unset QTDIR || : ; . /etc/profile.d/qt4.sh
  78. %cmake \
  79. -DCMAKE_BUILD_TYPE=release \
  80. -DCMAKE_INSTALL_PREFIX:PATH=%{_prefix} \
  81. -DDATA_INSTALL_DIR:PATH=%{_datadir}/kde4/apps \
  82. -DINCLUDE_INSTALL_DIR:PATH=%{_includedir}/kde4 \
  83. -DLIB_INSTALL_DIR:PATH=%{_libdir} \
  84. -DLIBEXEC_INSTALL_DIR:PATH=%{_libexecdir}/kde4 \
  85. -DSYSCONF_INSTALL_DIR:PATH=%{_sysconfdir} \
  86. ..
  87. popd
  88. make %{?_smp_mflags} -C %{_target_platform}
  89. %install
  90. rm -rf $RPM_BUILD_ROOT
  91. make install/fast DESTDIR=$RPM_BUILD_ROOT -C %{_target_platform}
  92. # make symlinks relative
  93. mkdir -p $RPM_BUILD_ROOT%{_docdir}/HTML/en/common
  94. pushd $RPM_BUILD_ROOT%{_docdir}/HTML/en
  95. for i in *; do
  96. if [ -d $i -a -L $i/common ]; then
  97. rm -f $i/common
  98. ln -nfs ../common $i
  99. fi
  100. done
  101. popd
  102. %check
  103. for f in $RPM_BUILD_ROOT%{_datadir}/applications/kde4/*.desktop ; do
  104. desktop-file-validate $f
  105. done
  106. %post
  107. touch --no-create %{_datadir}/icons/hicolor &> /dev/null ||:
  108. touch --no-create %{_datadir}/icons/oxygen &> /dev/null ||:
  109. %posttrans
  110. gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null ||:
  111. gtk-update-icon-cache %{_datadir}/icons/oxygen &> /dev/null ||:
  112. update-desktop-database -q &> /dev/null ||:
  113. %postun
  114. if [ $1 -eq 0 ] ; then
  115. touch --no-create %{_datadir}/icons/hicolor &> /dev/null ||:
  116. touch --no-create %{_datadir}/icons/oxygen &> /dev/null ||:
  117. gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null ||:
  118. gtk-update-icon-cache %{_datadir}/icons/oxygen &> /dev/null ||:
  119. update-desktop-database -q &> /dev/null ||:
  120. fi
  121. %post libs -p /sbin/ldconfig
  122. %postun libs -p /sbin/ldconfig
  123. %clean
  124. rm -rf $RPM_BUILD_ROOT
  125. %files
  126. %defattr(-,root,root)
  127. %{_bindir}/*
  128. #{_libdir}/libkpilot_*.so
  129. %{_libdir}/kde4/*.so
  130. %{_libdir}/strigi/*.so
  131. %{_libdir}/akonadi/*
  132. %{_datadir}/applications/kde4/*.desktop
  133. %{_datadir}/kde4/apps/akregator
  134. #{_datadir}/kde4/apps/akonadi/*
  135. %{_datadir}/kde4/apps/akonadiconsole/*
  136. %{_datadir}/kde4/apps/blogilo/*
  137. %{_datadir}/kde4/apps/kaddressbook
  138. %{_datadir}/kde4/apps/kalarm
  139. %{_datadir}/kde4/apps/kconf_update/*
  140. %{_datadir}/kde4/apps/kdepimwidgets
  141. %{_datadir}/kde4/apps/kjots
  142. %{_datadir}/kde4/apps/kleopatra
  143. %{_datadir}/kde4/apps/kmail
  144. %{_datadir}/kde4/apps/kmailcvt
  145. %{_datadir}/kde4/apps/knode
  146. %{_datadir}/kde4/apps/knotes
  147. %{_datadir}/kde4/apps/konsolekalendar
  148. %{_datadir}/kde4/apps/kontact
  149. %{_datadir}/kde4/apps/kontactsummary
  150. %{_datadir}/kde4/apps/korgac
  151. %{_datadir}/kde4/apps/korganizer
  152. #{_datadir}/kde4/apps/kpilot
  153. %{_datadir}/kde4/apps/ktimetracker
  154. %{_datadir}/kde4/apps/kwatchgnupg
  155. %{_datadir}/kde4/apps/libkdepim
  156. %{_datadir}/kde4/apps/libkleopatra
  157. %{_datadir}/dbus-1/interfaces/*.xml
  158. %{_datadir}/autostart/*
  159. #{_datadir}/akonadi/*
  160. %{_datadir}/config/*
  161. %{_datadir}/config.kcfg/*
  162. %{_datadir}/icons/hicolor/*/*/*
  163. %{_datadir}/icons/oxygen/*/*/*
  164. %{_datadir}/kde4/services/*
  165. %{_datadir}/kde4/servicetypes/*
  166. %doc %{_docdir}/HTML/en/*
  167. %{_mandir}/man1/*
  168. %files libs
  169. %defattr(-,root,root)
  170. %{_libdir}/lib*.so.*
  171. %{_libdir}/kde4/plugins/designer/*.so
  172. %files devel
  173. %defattr(-,root,root)
  174. #{_includedir}/kde4/*
  175. %{_libdir}/lib*.so
  176. #exclude %{_libdir}/libkpilot_*.so
  177. %changelog
  178. * Tue Aug 17 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.5-2
  179. - rebuilt for VineSeed
  180. * Mon Jul 5 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.5-1
  181. - new upstream release
  182. - added Conflicts: kdepim3, kdeutils3
  183. * Fri May 7 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.3-1
  184. - new upstream release
  185. * Mon Apr 12 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.2-1
  186. - new upstream release
  187. * Sun Mar 7 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.1-1
  188. - new upstream release
  189. * Sat Mar 6 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.0-1
  190. - new upstream release
  191. - built with new toolchain
  192. * Sun Oct 25 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.3.2-1
  193. - new upstream release
  194. * Sun Sep 6 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.3.1-1
  195. - new upstream release
  196. - dropped Patch100 (merged into upstream)
  197. - used %%cmake macro
  198. * Thu Aug 20 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.3.0-1
  199. - new upstream release
  200. * Mon May 11 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.5.8-1
  201. - applied new versioning policy, spec in UTF-8
  202. - added Japnaese summary
  203. * Tue Oct 16 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.8-0vl2
  204. - rebuild for VineSeed
  205. * Tue Oct 16 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.8-0vl1
  206. - new upstream release
  207. * Wed Jun 20 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.7-0vl2
  208. - rebuild for VineSeed
  209. * Wed May 23 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.7-0vl1
  210. - new upstream release
  211. - remove all patches
  212. * Mon Apr 23 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.6-0vl1
  213. - new upstream release
  214. - add Patch0, 1 , 2 and 3
  215. * Mon Oct 23 2006 NAKAMURA Kenta <kenta@vinelinux.org> 3.5.5-0vl3
  216. - added --with-qt-libraries and --enable-libsuffix option
  217. * Tue Oct 3 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.5-0vl2
  218. - rebuild for VineSeed
  219. * Tue Oct 3 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.5-0vl1
  220. - new upstream release
  221. * Mon Sep 4 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.4-0vl3
  222. - rebuild with pilot-link-0.12.0-0vl1
  223. * Wed Aug 2 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.4-0vl2
  224. - rebuild for VineSeed
  225. * Wed Aug 2 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.4-0vl1
  226. - new upstream release
  227. * Wed May 31 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.3-0vl2
  228. - rebuild for VineSeed
  229. * Wed May 31 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.3-0vl1
  230. - new upstream release
  231. * Wed Mar 22 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.2-0vl2
  232. - rebuild for VineSeed
  233. * Wed Mar 22 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.2-0vl1
  234. - new upstream release
  235. * Tue Jan 31 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.1-0vl2
  236. - rebuild for VineSeed
  237. * Tue Jan 31 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.1-0vl1
  238. - new upstream release
  239. - delete BuildPrereq: libmal-devel and Requires: libmal
  240. * Thu Dec 8 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.0-0vl2
  241. - rebuild for VineSeed
  242. * Mon Nov 28 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.0-0vl1
  243. - new upstream release
  244. * Mon Nov 14 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.0-0vl0.rc1
  245. - new upstream release
  246. * Mon Oct 17 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.92-0vl1
  247. - new upstream release
  248. - delete all patches
  249. - add Requires: kdeaccessibility >= %%{version}
  250. - add --enable-indexlib to configure option
  251. * Tue Sep 20 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.91-0vl1
  252. - new upstream release
  253. - remove Patch0
  254. - add Patch0 - Patch1
  255. * Tue Aug 2 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.2-0vl2
  256. - rebuild for VineSeed
  257. * Tue Aug 2 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.2-0vl1
  258. - new upstream release
  259. - remove Patch0
  260. - add BuildPrereq: gpgme-devel >= 0.4.5
  261. - add Patch0 (http://bugs.kde.org/show_bug.cgi?id=109003)
  262. * Mon Jul 4 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.1-0vl2
  263. - rebuild for VineSeed
  264. - add --disable-rpath to configure option
  265. * Mon Jun 6 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.1-0vl1
  266. - new upstream release (delete old patch and add new security patch)
  267. - use %%{?_smp_mflags} for make option
  268. * Thu Mar 17 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.0-0vl2
  269. - rebuild for VineSeed
  270. * Wed Mar 16 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.0-0vl1
  271. - new upstream release
  272. - add patch0
  273. * Fri Mar 4 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.0-0vl0.rc1
  274. - new upstream release (3.4.0-rc1)
  275. * Tue Feb 8 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.92-0vl1
  276. - new upstream release
  277. * Wed Feb 2 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.91-0vl1
  278. - new upstream release
  279. * Sat Jan 1 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.2-0vl2
  280. - rebuild for VineSeed
  281. * Sat Jan 1 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.2-0vl1
  282. - new upstream release
  283. * Sun Oct 17 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.1-0vl1
  284. - source upgrade
  285. - update %%files
  286. - all sub-packages are integrated into main package (exclude devel)
  287. * Tue Aug 10 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.3-0vl2
  288. - rebuild with qt32
  289. * Tue Jun 15 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.3-0vl1
  290. - source upgrade
  291. - remove lines about vine26
  292. * Sat May 1 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.2-0vl1
  293. - source upgrade
  294. - update %%files
  295. * Sat Mar 20 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.1-0vl1
  296. - source upgrade
  297. - update %%description
  298. - add Obsoletes: kdenetwork < 3.2.0
  299. * Sat Jan 17 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.5-0vl2
  300. - rebuild for VineSeedPlus
  301. * Sun Jan 11 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.5-0vl1
  302. - source upgrade
  303. - build for VinePlus/2.6
  304. - (VinePlus/2.6) BuildPrereq: autoconf258
  305. - remove Patch
  306. * Sun Dec 28 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.4-0vl3
  307. - build for VineSeed with new toolchain and qt-3.2.3
  308. - add configure option --with-xinerama --enable-final
  309. * Sun Nov 2 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.4-0.26vl2
  310. - rebuild with qt-3.2.1-0.26vl3
  311. * Sun Oct 19 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.4-0vl2
  312. - rebuild with qt-3.2.1-0vl3
  313. * Sat Sep 20 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.4-0vl1
  314. - build with gcc-3.2.3
  315. * Thu Sep 18 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.4-0.26vl1
  316. - source upgrade
  317. - BuildPrereq: qt-devel >= 3.2.1 arts-devel >= 1:1.1.4
  318. * Sat Aug 2 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.3-0.26vl1
  319. - rebuild for Vine2.6
  320. * Mon Jul 21 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.3-0vl1
  321. - source upgrade
  322. - change spec to build with gcc295
  323. - change make option for SMP and add script
  324. - add BuildPrereq: libmal-devel
  325. - add Requires: libmal for pilot
  326. * Sat May 10 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.2-0vl1
  327. - source upgrade
  328. - remove Patch800 (included in this source)
  329. - built with libpng >= 1.2.5 when %%{vine26} is set to 0 (ie VineSeedPlus)
  330. * Sat Apr 5 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.1-0vl1
  331. - source upgrade
  332. - change spec to build both VineSeed and Vine2.5/2.6
  333. - revised description and files section
  334. - remove source900
  335. - add patch0 (http://bugs.kde.org/show_bug.cgi?id=55541)
  336. - add patch800 (Kdeveloper:02753)
  337. * Sat Oct 19 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.0.4-0vl2
  338. - objprelink2 support only ix86 (add %%ifarch %%{ix86} ... )
  339. * Sun Oct 13 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.0.4-0vl1
  340. - source upgrade
  341. * Wed Oct 9 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.0.3-0vl2
  342. - rebuild with qt-3.0.5-0vl1
  343. - BuildPrereq: autoconf253 objprelink2
  344. * Wed Sep 18 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.0.3-0vl1
  345. - source upgrade
  346. * Sun Jul 14 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.0.2-0vl1
  347. - source upgrade
  348. - add BuildPrereq: autoconf252 automake15
  349. * Thu Jul 4 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.0.1-1vl1
  350. - merged with rawhide 3.0.1-1
  351. - change %%doc %%{_docdir}/HTML -> %%doc %%{_datadir}/doc/HTML
  352. - add Requires: for each package
  353. - There is Vine's previous changes, hacked for Vine
  354. -- Sun Mar 17 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 2.2.2-1vl1
  355. - build for VineSeed
  356. - delete Epoch
  357. - objprelink (i386 only)
  358. * Tue Jun 25 2002 Than Ngo <than@redhat.com> 3.0.1-1
  359. - 3.0.1
  360. - fixed bug #67303
  361. * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
  362. - automated rebuild
  363. * Thu May 23 2002 Tim Powers <timp@redhat.com>
  364. - automated rebuild
  365. * Tue Apr 16 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-3
  366. - Rename libraries
  367. * Wed Apr 10 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-2
  368. - Fix #61901
  369. * Fri Mar 29 2002 Than Ngo <than@redhat.com> 3.0.0-1
  370. - final
  371. * Tue Jan 22 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-0.cvs20020122.1
  372. - Update
  373. - Fix build on ia64
  374. * Thu Jul 26 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.2-0.cvs20010726.1
  375. - Update, fixes korganizer (#50006)
  376. * Sun May 13 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  377. - Update to get rid of abbrowser (moved to kdebase)
  378. * Thu Feb 22 2001 Than Ngo <than@redhat.com>
  379. - add missing ldconfig in %post anf %postun again
  380. - clean up specfile
  381. * Wed Feb 21 2001 Than Ngo <than@redhat.com>
  382. - 2.1-respin
  383. - fix dangling symlink
  384. - remove excludearch ia64, some hacks to build on ia64
  385. * Tue Feb 20 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  386. - 2.1
  387. * Mon Feb 5 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  388. - Update
  389. * Tue Jan 22 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  390. - Update
  391. * Wed Dec 20 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  392. - Update to CVS
  393. - Enable building kpilot
  394. - Obsolete kpilot
  395. - Don't exclude ia64, use -O0 on ia64
  396. - Disable building kpilot on ia64 (compiler breakage)
  397. * Mon Oct 23 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  398. - 2.0 final
  399. * Wed Oct 4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  400. - 2.0
  401. * Sun Oct 1 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  402. - new CVS
  403. - fix installation of fonts
  404. * Sat Sep 23 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  405. - new CVS snapshot
  406. - fix up spec file
  407. * Wed Aug 23 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  408. - get rid of the 3d-screensavers package - now that qt-GL is part of qt,
  409. there's no need to keep them separate to avoid the dependency.
  410. * Mon Aug 21 2000 Than Ngo <than@redhat.com>
  411. - fix gnome-session so that KDE2 can be started from gdm
  412. - pam/kde2 instead pam/kde to avoid problem with KDE1
  413. - don't requires qt-GL, It's now in qt
  414. * Sun Aug 20 2000 Than Ngo <than@redhat.com>
  415. - fix dependency problem with KDE1 so that KDE1 and KDE2 can be installed
  416. at the same time
  417. - add missing ldconfig in %post anf %postun
  418. - fix for reading config files in /etc/X11/xdm, add Xsession to requires
  419. * Tue Aug 8 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  420. - Fix keytable in konsole (Bug #15682)
  421. * Sun Aug 6 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  422. - rebuild, now that kdelibs2 works on alpha
  423. - use the same ugly hack to get kdebase to compile
  424. - remove ksysguard on alpha (even more compiler problems)
  425. * Fri Aug 4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  426. - new snapshot (fixed libGL detection in CVS)
  427. * Wed Aug 2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  428. - move to /usr/lib/kde2
  429. - new snapshot
  430. * Sun Jul 23 2000 Nalin Dahyabhai <nalin@redhat.com>
  431. - fix the --xdmdir arg to be correct (oops)
  432. * Fri Jul 21 2000 Nalin Dahyabhai <nalin@redhat.com>
  433. - move kdm config files from /usr/config to /etc/X11 by forcing xdmdir
  434. * Fri Jul 21 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  435. - new snapshot
  436. - some fixes to spec file
  437. * Tue Jul 18 2000 Than Ngo <than@redhat.de>
  438. - rebuilt against glibc-2.1.92-14, gcc-2.96-40
  439. * Sun Jul 16 2000 Than Ngo <than@redhat.de>
  440. - use new snapshot
  441. - disable Motif
  442. * Tue Jul 11 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  443. - use gcc 2.96
  444. - new snapshot
  445. * Sun Jul 2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  446. - Epoch 3
  447. - Update to current
  448. - Use egcs++
  449. * Fri Jun 30 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  450. - Update (I put the fixes directly to CVS rather than collecting them
  451. in the spec)
  452. * Fri Jun 23 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  453. - remove man2html; we get that from man
  454. - new snapshot
  455. * Tue Jun 20 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  456. - new snapshot
  457. - ExcludeArch ia64 for now
  458. - remove gnome .desktop file, we get it from gnome-core now.
  459. * Wed Apr 5 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  460. - remove dependency on xpm (now in XFree86)
  461. * Sat Mar 18 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  462. - new snapshot
  463. - move it to /usr, where it belongs
  464. * Sat Dec 25 1999 Bernhard Rosenkraenzer <bero@redhat.com>
  465. - Build the OpenGL screensavers, and move them to a separate package
  466. - Improve the spec file (BuildPrereqs etc.)
  467. * Thu Dec 16 1999 Bernhard Rosenkraenzer <bero@redhat.com>
  468. - remove patch #3 (obsoleted by kwin)
  469. * Sun Oct 24 1999 Bernhard Rosenkraenzer <bero@redhat.de>
  470. - 2.0 CVS snapshot
  471. - fix compilation
  472. * Thu Sep 23 1999 Preston Brown <pbrown@redhat.com>
  473. - clean up files in /tmp from startkde
  474. - mark doc files as such
  475. * Tue Sep 21 1999 Preston Brown <pbrown@redhat.com>
  476. - start autorun if present in startkde
  477. - check for configured soundcard before running sound services
  478. * Mon Sep 20 1999 Preston Brown <pbrown@redhat.com>
  479. - made kdelnks display Name property if they are of type Link
  480. * Thu Sep 16 1999 Preston Brown <pbrown@redhat.com>
  481. - moved png handling here (from kdelibs)
  482. - changed low color icon directory name to locolor
  483. * Tue Sep 14 1999 Preston Brown <pbrown@redhat.com>
  484. - added optional session management to logout dialog
  485. - include GNOME menus
  486. * Mon Sep 13 1999 Preston Brown <pbrown@redhat.com>
  487. - added link to /etc/X11/applnk, .directory file
  488. - included lowcolor icon sub-package
  489. - enable .desktop file access
  490. * Fri Sep 10 1999 Preston Brown <pbrown@redhat.com>
  491. - customized startkde script to set up user environment if not present.
  492. - mention kthememgr in description.
  493. * Wed Sep 08 1999 Preston Brown <pbrown@redhat.com>
  494. - upgraded to 1.1.2 release
  495. - kvt is back
  496. - kde icon included
  497. - linux console fonts included
  498. * Thu Jul 15 1999 Preston Brown <pbrown@redhat.com>
  499. - PAM console logout problem solved.
  500. * Mon Jul 12 1999 Preston Brown <pbrown@redhat.com>
  501. - now includes screensaver password security fix
  502. * Fri Jun 11 1999 Preston Brown <pbrown@redhat.com>
  503. - snapshot, includes kde 1.1.1 + fixes
  504. - kvt removed for security reasons. It is a steaming pile of...
  505. * Mon Apr 19 1999 Preston Brown <pbrown@redhat.com>
  506. - last snapshot before release
  507. * Fri Apr 16 1999 Preston Brown <pbrown@redhat.com>
  508. - today's snapshot makes kfm a bit nicer and some other fixes
  509. - moved default rc files to kdesupport
  510. * Thu Apr 15 1999 Preston Brown <pbrown@redhat.com>
  511. - SUID bit removed from konsole_grantpty -- not needed w/glibc 2.1
  512. * Wed Apr 14 1999 Preston Brown <pbrown@redhat.com>
  513. - built with today's snapshot -- had to rebuild to fix pam problems.
  514. * Tue Apr 13 1999 Preston Brown <pbrown@redhat.com>
  515. - new snapshot fixes mimetype video/x-flic problem
  516. * Mon Apr 12 1999 Preston Brown <pbrown@redhat.com>
  517. - latest stable snapshot
  518. * Fri Apr 09 1999 Preston Brown <pbrown@redhat.com>
  519. - removed bell.xpm (used to be in fvwm2-icons, don't want installer to see
  520. - this previous connection and autoselect kdebase for upgrade).
  521. * Tue Mar 23 1999 Preston Brown <pbrown@redhat.com>
  522. - moved gdm patch
  523. * Mon Mar 22 1999 Preston Brown <pbrown@redhat.com>
  524. - added gdm session control file
  525. * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com>
  526. - added pam-console stuff to kde pam file
  527. * Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
  528. - Injected new description and group.
  529. * Mon Feb 07 1999 Preston Brown <pbrown@redhat.com>
  530. - upgraded to KDE 1.1 final.
  531. * Tue Jan 19 1999 Preston Brown <pbrown@redhat.com>
  532. - updated macros for RPM 3.0, removed red hat logo.
  533. * Tue Jan 05 1999 Preston Brown <pbrown@redhat.com>
  534. - re-merged from Duncan Haldane's stuff