kdepim-vl.spec 23 KB

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