kdepim-vl.spec 22 KB

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