kdepim-vl.spec 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754
  1. Name: kdepim
  2. Summary: PIM (Personal Information Manager) for KDE
  3. Summary(ja): KDE の個人情報管理(PIM)アプリケーション集
  4. Version: 4.9.5
  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. * Wed Jan 02 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.9.5-1
  205. - new upstream release
  206. * Fri Nov 09 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.9.3-1
  207. - new upstream release
  208. * Sun Oct 07 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.9.2-1
  209. - new upstream release
  210. * Wed Sep 05 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.9.1-1
  211. - new upstream release
  212. * Sat Aug 11 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.9.0-1
  213. - new upstream release
  214. - add BuildRequires: prison-devel
  215. - remove old patches
  216. * Sat Aug 6 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.7.0-1
  217. - new upstream release
  218. * Wed Jun 22 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.6.0-1
  219. - new upstream release
  220. - added BR: grantlee-devel
  221. * Sat May 21 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.11.1-1
  222. - new upstream release
  223. * Fri Feb 18 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.10-1
  224. - new upstream release
  225. - added BR: libindicate-qt-devel
  226. * Sat Sep 25 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.6-1
  227. - new upstream release
  228. - built with rpm-4.8.1
  229. * Tue Aug 17 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.5-2
  230. - rebuilt for VineSeed
  231. * Mon Jul 5 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.5-1
  232. - new upstream release
  233. - added Conflicts: kdepim3, kdeutils3
  234. * Fri May 7 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.3-1
  235. - new upstream release
  236. * Mon Apr 12 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.2-1
  237. - new upstream release
  238. * Sun Mar 7 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.1-1
  239. - new upstream release
  240. * Sat Mar 6 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.0-1
  241. - new upstream release
  242. - built with new toolchain
  243. * Sun Oct 25 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.3.2-1
  244. - new upstream release
  245. * Sun Sep 6 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.3.1-1
  246. - new upstream release
  247. - dropped Patch100 (merged into upstream)
  248. - used %%cmake macro
  249. * Thu Aug 20 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.3.0-1
  250. - new upstream release
  251. * Mon May 11 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.5.8-1
  252. - applied new versioning policy, spec in UTF-8
  253. - added Japnaese summary
  254. * Tue Oct 16 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.8-0vl2
  255. - rebuild for VineSeed
  256. * Tue Oct 16 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.8-0vl1
  257. - new upstream release
  258. * Wed Jun 20 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.7-0vl2
  259. - rebuild for VineSeed
  260. * Wed May 23 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.7-0vl1
  261. - new upstream release
  262. - remove all patches
  263. * Mon Apr 23 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.6-0vl1
  264. - new upstream release
  265. - add Patch0, 1 , 2 and 3
  266. * Mon Oct 23 2006 NAKAMURA Kenta <kenta@vinelinux.org> 3.5.5-0vl3
  267. - added --with-qt-libraries and --enable-libsuffix option
  268. * Tue Oct 3 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.5-0vl2
  269. - rebuild for VineSeed
  270. * Tue Oct 3 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.5-0vl1
  271. - new upstream release
  272. * Mon Sep 4 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.4-0vl3
  273. - rebuild with pilot-link-0.12.0-0vl1
  274. * Wed Aug 2 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.4-0vl2
  275. - rebuild for VineSeed
  276. * Wed Aug 2 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.4-0vl1
  277. - new upstream release
  278. * Wed May 31 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.3-0vl2
  279. - rebuild for VineSeed
  280. * Wed May 31 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.3-0vl1
  281. - new upstream release
  282. * Wed Mar 22 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.2-0vl2
  283. - rebuild for VineSeed
  284. * Wed Mar 22 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.2-0vl1
  285. - new upstream release
  286. * Tue Jan 31 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.1-0vl2
  287. - rebuild for VineSeed
  288. * Tue Jan 31 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.1-0vl1
  289. - new upstream release
  290. - delete BuildPrereq: libmal-devel and Requires: libmal
  291. * Thu Dec 8 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.0-0vl2
  292. - rebuild for VineSeed
  293. * Mon Nov 28 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.0-0vl1
  294. - new upstream release
  295. * Mon Nov 14 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.0-0vl0.rc1
  296. - new upstream release
  297. * Mon Oct 17 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.92-0vl1
  298. - new upstream release
  299. - delete all patches
  300. - add Requires: kdeaccessibility >= %%{version}
  301. - add --enable-indexlib to configure option
  302. * Tue Sep 20 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.91-0vl1
  303. - new upstream release
  304. - remove Patch0
  305. - add Patch0 - Patch1
  306. * Tue Aug 2 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.2-0vl2
  307. - rebuild for VineSeed
  308. * Tue Aug 2 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.2-0vl1
  309. - new upstream release
  310. - remove Patch0
  311. - add BuildPrereq: gpgme-devel >= 0.4.5
  312. - add Patch0 (http://bugs.kde.org/show_bug.cgi?id=109003)
  313. * Mon Jul 4 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.1-0vl2
  314. - rebuild for VineSeed
  315. - add --disable-rpath to configure option
  316. * Mon Jun 6 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.1-0vl1
  317. - new upstream release (delete old patch and add new security patch)
  318. - use %%{?_smp_mflags} for make option
  319. * Thu Mar 17 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.0-0vl2
  320. - rebuild for VineSeed
  321. * Wed Mar 16 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.0-0vl1
  322. - new upstream release
  323. - add patch0
  324. * Fri Mar 4 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.0-0vl0.rc1
  325. - new upstream release (3.4.0-rc1)
  326. * Tue Feb 8 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.92-0vl1
  327. - new upstream release
  328. * Wed Feb 2 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.91-0vl1
  329. - new upstream release
  330. * Sat Jan 1 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.2-0vl2
  331. - rebuild for VineSeed
  332. * Sat Jan 1 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.2-0vl1
  333. - new upstream release
  334. * Sun Oct 17 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.1-0vl1
  335. - source upgrade
  336. - update %%files
  337. - all sub-packages are integrated into main package (exclude devel)
  338. * Tue Aug 10 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.3-0vl2
  339. - rebuild with qt32
  340. * Tue Jun 15 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.3-0vl1
  341. - source upgrade
  342. - remove lines about vine26
  343. * Sat May 1 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.2-0vl1
  344. - source upgrade
  345. - update %%files
  346. * Sat Mar 20 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.1-0vl1
  347. - source upgrade
  348. - update %%description
  349. - add Obsoletes: kdenetwork < 3.2.0
  350. * Sat Jan 17 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.5-0vl2
  351. - rebuild for VineSeedPlus
  352. * Sun Jan 11 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.5-0vl1
  353. - source upgrade
  354. - build for VinePlus/2.6
  355. - (VinePlus/2.6) BuildPrereq: autoconf258
  356. - remove Patch
  357. * Sun Dec 28 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.4-0vl3
  358. - build for VineSeed with new toolchain and qt-3.2.3
  359. - add configure option --with-xinerama --enable-final
  360. * Sun Nov 2 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.4-0.26vl2
  361. - rebuild with qt-3.2.1-0.26vl3
  362. * Sun Oct 19 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.4-0vl2
  363. - rebuild with qt-3.2.1-0vl3
  364. * Sat Sep 20 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.4-0vl1
  365. - build with gcc-3.2.3
  366. * Thu Sep 18 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.4-0.26vl1
  367. - source upgrade
  368. - BuildPrereq: qt-devel >= 3.2.1 arts-devel >= 1:1.1.4
  369. * Sat Aug 2 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.3-0.26vl1
  370. - rebuild for Vine2.6
  371. * Mon Jul 21 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.3-0vl1
  372. - source upgrade
  373. - change spec to build with gcc295
  374. - change make option for SMP and add script
  375. - add BuildPrereq: libmal-devel
  376. - add Requires: libmal for pilot
  377. * Sat May 10 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.2-0vl1
  378. - source upgrade
  379. - remove Patch800 (included in this source)
  380. - built with libpng >= 1.2.5 when %%{vine26} is set to 0 (ie VineSeedPlus)
  381. * Sat Apr 5 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.1-0vl1
  382. - source upgrade
  383. - change spec to build both VineSeed and Vine2.5/2.6
  384. - revised description and files section
  385. - remove source900
  386. - add patch0 (http://bugs.kde.org/show_bug.cgi?id=55541)
  387. - add patch800 (Kdeveloper:02753)
  388. * Sat Oct 19 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.0.4-0vl2
  389. - objprelink2 support only ix86 (add %%ifarch %%{ix86} ... )
  390. * Sun Oct 13 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.0.4-0vl1
  391. - source upgrade
  392. * Wed Oct 9 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.0.3-0vl2
  393. - rebuild with qt-3.0.5-0vl1
  394. - BuildPrereq: autoconf253 objprelink2
  395. * Wed Sep 18 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.0.3-0vl1
  396. - source upgrade
  397. * Sun Jul 14 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.0.2-0vl1
  398. - source upgrade
  399. - add BuildPrereq: autoconf252 automake15
  400. * Thu Jul 4 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.0.1-1vl1
  401. - merged with rawhide 3.0.1-1
  402. - change %%doc %%{_docdir}/HTML -> %%doc %%{_datadir}/doc/HTML
  403. - add Requires: for each package
  404. - There is Vine's previous changes, hacked for Vine
  405. -- Sun Mar 17 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 2.2.2-1vl1
  406. - build for VineSeed
  407. - delete Epoch
  408. - objprelink (i386 only)
  409. * Tue Jun 25 2002 Than Ngo <than@redhat.com> 3.0.1-1
  410. - 3.0.1
  411. - fixed bug #67303
  412. * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
  413. - automated rebuild
  414. * Thu May 23 2002 Tim Powers <timp@redhat.com>
  415. - automated rebuild
  416. * Tue Apr 16 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-3
  417. - Rename libraries
  418. * Wed Apr 10 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-2
  419. - Fix #61901
  420. * Fri Mar 29 2002 Than Ngo <than@redhat.com> 3.0.0-1
  421. - final
  422. * Tue Jan 22 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0.0-0.cvs20020122.1
  423. - Update
  424. - Fix build on ia64
  425. * Thu Jul 26 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.2-0.cvs20010726.1
  426. - Update, fixes korganizer (#50006)
  427. * Sun May 13 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  428. - Update to get rid of abbrowser (moved to kdebase)
  429. * Thu Feb 22 2001 Than Ngo <than@redhat.com>
  430. - add missing ldconfig in %post anf %postun again
  431. - clean up specfile
  432. * Wed Feb 21 2001 Than Ngo <than@redhat.com>
  433. - 2.1-respin
  434. - fix dangling symlink
  435. - remove excludearch ia64, some hacks to build on ia64
  436. * Tue Feb 20 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  437. - 2.1
  438. * Mon Feb 5 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  439. - Update
  440. * Tue Jan 22 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  441. - Update
  442. * Wed Dec 20 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  443. - Update to CVS
  444. - Enable building kpilot
  445. - Obsolete kpilot
  446. - Don't exclude ia64, use -O0 on ia64
  447. - Disable building kpilot on ia64 (compiler breakage)
  448. * Mon Oct 23 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  449. - 2.0 final
  450. * Wed Oct 4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  451. - 2.0
  452. * Sun Oct 1 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  453. - new CVS
  454. - fix installation of fonts
  455. * Sat Sep 23 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  456. - new CVS snapshot
  457. - fix up spec file
  458. * Wed Aug 23 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  459. - get rid of the 3d-screensavers package - now that qt-GL is part of qt,
  460. there's no need to keep them separate to avoid the dependency.
  461. * Mon Aug 21 2000 Than Ngo <than@redhat.com>
  462. - fix gnome-session so that KDE2 can be started from gdm
  463. - pam/kde2 instead pam/kde to avoid problem with KDE1
  464. - don't requires qt-GL, It's now in qt
  465. * Sun Aug 20 2000 Than Ngo <than@redhat.com>
  466. - fix dependency problem with KDE1 so that KDE1 and KDE2 can be installed
  467. at the same time
  468. - add missing ldconfig in %post anf %postun
  469. - fix for reading config files in /etc/X11/xdm, add Xsession to requires
  470. * Tue Aug 8 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  471. - Fix keytable in konsole (Bug #15682)
  472. * Sun Aug 6 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  473. - rebuild, now that kdelibs2 works on alpha
  474. - use the same ugly hack to get kdebase to compile
  475. - remove ksysguard on alpha (even more compiler problems)
  476. * Fri Aug 4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  477. - new snapshot (fixed libGL detection in CVS)
  478. * Wed Aug 2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  479. - move to /usr/lib/kde2
  480. - new snapshot
  481. * Sun Jul 23 2000 Nalin Dahyabhai <nalin@redhat.com>
  482. - fix the --xdmdir arg to be correct (oops)
  483. * Fri Jul 21 2000 Nalin Dahyabhai <nalin@redhat.com>
  484. - move kdm config files from /usr/config to /etc/X11 by forcing xdmdir
  485. * Fri Jul 21 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  486. - new snapshot
  487. - some fixes to spec file
  488. * Tue Jul 18 2000 Than Ngo <than@redhat.de>
  489. - rebuilt against glibc-2.1.92-14, gcc-2.96-40
  490. * Sun Jul 16 2000 Than Ngo <than@redhat.de>
  491. - use new snapshot
  492. - disable Motif
  493. * Tue Jul 11 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  494. - use gcc 2.96
  495. - new snapshot
  496. * Sun Jul 2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  497. - Epoch 3
  498. - Update to current
  499. - Use egcs++
  500. * Fri Jun 30 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  501. - Update (I put the fixes directly to CVS rather than collecting them
  502. in the spec)
  503. * Fri Jun 23 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  504. - remove man2html; we get that from man
  505. - new snapshot
  506. * Tue Jun 20 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  507. - new snapshot
  508. - ExcludeArch ia64 for now
  509. - remove gnome .desktop file, we get it from gnome-core now.
  510. * Wed Apr 5 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  511. - remove dependency on xpm (now in XFree86)
  512. * Sat Mar 18 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  513. - new snapshot
  514. - move it to /usr, where it belongs
  515. * Sat Dec 25 1999 Bernhard Rosenkraenzer <bero@redhat.com>
  516. - Build the OpenGL screensavers, and move them to a separate package
  517. - Improve the spec file (BuildPrereqs etc.)
  518. * Thu Dec 16 1999 Bernhard Rosenkraenzer <bero@redhat.com>
  519. - remove patch #3 (obsoleted by kwin)
  520. * Sun Oct 24 1999 Bernhard Rosenkraenzer <bero@redhat.de>
  521. - 2.0 CVS snapshot
  522. - fix compilation
  523. * Thu Sep 23 1999 Preston Brown <pbrown@redhat.com>
  524. - clean up files in /tmp from startkde
  525. - mark doc files as such
  526. * Tue Sep 21 1999 Preston Brown <pbrown@redhat.com>
  527. - start autorun if present in startkde
  528. - check for configured soundcard before running sound services
  529. * Mon Sep 20 1999 Preston Brown <pbrown@redhat.com>
  530. - made kdelnks display Name property if they are of type Link
  531. * Thu Sep 16 1999 Preston Brown <pbrown@redhat.com>
  532. - moved png handling here (from kdelibs)
  533. - changed low color icon directory name to locolor
  534. * Tue Sep 14 1999 Preston Brown <pbrown@redhat.com>
  535. - added optional session management to logout dialog
  536. - include GNOME menus
  537. * Mon Sep 13 1999 Preston Brown <pbrown@redhat.com>
  538. - added link to /etc/X11/applnk, .directory file
  539. - included lowcolor icon sub-package
  540. - enable .desktop file access
  541. * Fri Sep 10 1999 Preston Brown <pbrown@redhat.com>
  542. - customized startkde script to set up user environment if not present.
  543. - mention kthememgr in description.
  544. * Wed Sep 08 1999 Preston Brown <pbrown@redhat.com>
  545. - upgraded to 1.1.2 release
  546. - kvt is back
  547. - kde icon included
  548. - linux console fonts included
  549. * Thu Jul 15 1999 Preston Brown <pbrown@redhat.com>
  550. - PAM console logout problem solved.
  551. * Mon Jul 12 1999 Preston Brown <pbrown@redhat.com>
  552. - now includes screensaver password security fix
  553. * Fri Jun 11 1999 Preston Brown <pbrown@redhat.com>
  554. - snapshot, includes kde 1.1.1 + fixes
  555. - kvt removed for security reasons. It is a steaming pile of...
  556. * Mon Apr 19 1999 Preston Brown <pbrown@redhat.com>
  557. - last snapshot before release
  558. * Fri Apr 16 1999 Preston Brown <pbrown@redhat.com>
  559. - today's snapshot makes kfm a bit nicer and some other fixes
  560. - moved default rc files to kdesupport
  561. * Thu Apr 15 1999 Preston Brown <pbrown@redhat.com>
  562. - SUID bit removed from konsole_grantpty -- not needed w/glibc 2.1
  563. * Wed Apr 14 1999 Preston Brown <pbrown@redhat.com>
  564. - built with today's snapshot -- had to rebuild to fix pam problems.
  565. * Tue Apr 13 1999 Preston Brown <pbrown@redhat.com>
  566. - new snapshot fixes mimetype video/x-flic problem
  567. * Mon Apr 12 1999 Preston Brown <pbrown@redhat.com>
  568. - latest stable snapshot
  569. * Fri Apr 09 1999 Preston Brown <pbrown@redhat.com>
  570. - removed bell.xpm (used to be in fvwm2-icons, don't want installer to see
  571. - this previous connection and autoselect kdebase for upgrade).
  572. * Tue Mar 23 1999 Preston Brown <pbrown@redhat.com>
  573. - moved gdm patch
  574. * Mon Mar 22 1999 Preston Brown <pbrown@redhat.com>
  575. - added gdm session control file
  576. * Fri Mar 19 1999 Preston Brown <pbrown@redhat.com>
  577. - added pam-console stuff to kde pam file
  578. * Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
  579. - Injected new description and group.
  580. * Mon Feb 07 1999 Preston Brown <pbrown@redhat.com>
  581. - upgraded to KDE 1.1 final.
  582. * Tue Jan 19 1999 Preston Brown <pbrown@redhat.com>
  583. - updated macros for RPM 3.0, removed red hat logo.
  584. * Tue Jan 05 1999 Preston Brown <pbrown@redhat.com>
  585. - re-merged from Duncan Haldane's stuff