kdepim-vl.spec 22 KB

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