source: projects/specs/trunk/k/kdebase/kdebase-vl.spec @ 1775

Revision 1775, 38.2 KB checked in by inagaki, 14 years ago (diff)

updated: KDE 4.5.1 stuffs

Line 
1Name: kdebase
2Summary: KDE Core Applications
3Summary(ja): KDE の中心を構成するアプリケーション群
4Version: 4.5.1
5Release: 1%{?_dist_release}
6
7License: GPLv2
8Group: User Interface/Desktops
9URL: http://www.kde.org/
10BuildRoot: %{_tmppath}/%{name}-%{version}-root
11
12Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/kdebase-%{version}.tar.bz2
13
14Patch0:   kdebase-4.1.80-nsplugins-paths.patch
15Patch1:   kdebase-4.1.70-konsole-session.patch
16Patch2:   kdebase-4.2.1-home-icon.patch
17
18Provides:  dolphin = 1.0.2-1
19Provides:  kdebase4 = %{version}-%{release}
20Obsoletes: dolphin < 1.0.2-1
21Obsoletes: d3lphin
22Obsoletes: kdebase4 < %{version}-%{release}
23Obsoletes: %{name}-extras < %{version}-%{release}
24
25Requires: %{name}-libs = %{version}-%{release}
26Requires: eject
27
28# FIXME: remove BRs which are only needed for stuff now in -runtime
29BuildRequires: cmake >= 2.6.2
30BuildRequires: glib2-devel
31BuildRequires: kdelibs4-devel >= %{version}
32BuildRequires: kdepimlibs-devel >= %{version}
33BuildRequires: phonon-devel
34BuildRequires: plasma-devel >= %{version}
35BuildRequires: openssl-devel
36BuildRequires: qimageblitz-devel
37BuildRequires: shared-desktop-ontologies-devel
38BuildRequires: soprano-devel >= 2.0.97
39BuildRequires: strigi-devel >= 0.5.7
40BuildRequires: zlib-devel
41
42# Dolphin needs the ioslaves from kdebase-runtime (#438632)
43Requires: kdebase-runtime
44
45Conflicts: kdebase3
46
47%description
48Core applications for KDE 4.
49
50%description -l ja
51KDE 4 の中心となるアプリケーション集です.
52
53
54%package libs
55Summary: Runtime libraries for %{name}
56Summary(ja): %{name} のランタイムライブラリ
57Group:   System Environment/Libraries
58Requires: kdelibs4 >= %{version}
59Requires: kdepimlibs >= %{version}
60
61%description libs
62%{summary}.
63
64
65%package devel
66Summary:   Development files for %{name}
67Summary(ja): %{name} の開発用ファイル
68Group:     Development/Libraries
69Requires:  %{name}-libs = %{version}-%{release}
70Requires:  kdelibs4-devel
71Requires:  kdepimlibs4-devel
72Provides:  kdebase4-devel = %{version}-%{release}
73Obsoletes: kdebase4-devel < %{version}-%{release}
74
75%description devel
76%{summary}.
77
78
79%prep
80%setup -q -n kdebase-%{version}
81%patch0 -p1 -b .nsplugins-paths
82%patch1 -p1 -b .konsole-session
83%patch2 -p1 -b .home-icon
84
85# fix incorrect assumption that we're building in a combined kdebase tree
86sed -i -e 's/EXISTS "${kdebase_SOURCE_DIR}"/0/g' apps/CMakeLists.txt
87
88
89%build
90mkdir -p %{_target_platform}
91pushd %{_target_platform}
92unset QTDIR || : ; . /etc/profile.d/qt4.sh
93%cmake \
94    -DCMAKE_BUILD_TYPE=release \
95    -DCMAKE_INSTALL_PREFIX:PATH=%{_prefix} \
96    -DDATA_INSTALL_DIR:PATH=%{_datadir}/kde4/apps \
97    -DINCLUDE_INSTALL_DIR:PATH=%{_includedir}/kde4 \
98    -DLIBEXEC_INSTALL_DIR:PATH=%{_libexecdir}/kde4 \
99    -DSYSCONF_INSTALL_DIR:PATH=%{_sysconfdir} \
100    ..
101popd
102
103make %{?_smp_mflags} -C %{_target_platform}
104
105
106%install
107rm -rf %{buildroot}
108make install/fast DESTDIR=%{buildroot} -C %{_target_platform}
109
110# move devel symlinks
111mkdir -p %{buildroot}%{_libdir}/kde4/devel
112pushd %{buildroot}%{_libdir}
113for i in lib*.so
114do
115  case "$i" in
116    libkdeinit4_*.so|libkonsoleprivate.so)
117      ;;
118    *)
119      linktarget=`readlink "$i"`
120      rm -f "$i"
121      ln -sf "../../$linktarget" "kde4/devel/$i"
122      ;;
123  esac
124done
125popd
126# konquerorsu only show in KDE
127echo 'OnlyShowIn=KDE;' >> %{buildroot}%{_datadir}/applications/kde4/konquerorsu.desktop
128
129%clean
130rm -rf %{buildroot}
131
132%post
133touch --no-create %{_datadir}/icons/hicolor &> /dev/null ||:
134
135%posttrans
136gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null ||:
137update-desktop-database -q &> /dev/null ||:
138
139%postun
140if [ $1 -eq 0 ] ; then
141    touch --no-create %{_datadir}/icons/hicolor &> /dev/null ||:
142    gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null ||:
143    update-desktop-database -q &> /dev/null ||:
144fi
145
146%post libs -p /sbin/ldconfig
147
148%postun libs -p /sbin/ldconfig
149
150%files
151%defattr(-,root,root,-)
152%{_bindir}/*
153%{_datadir}/applications/kde4/*
154%{_datadir}/kde4/apps/*
155%{_datadir}/config.kcfg/*
156%{_datadir}/dbus-1/interfaces/*
157#{_datadir}/icons/oxygen/*/*/*
158%{_datadir}/kde4/services/*
159%{_datadir}/kde4/servicetypes/*
160%{_docdir}/HTML/en/*
161%{_libdir}/kde4/*
162%exclude %{_libdir}/kde4/devel/
163%{_mandir}/man1/*
164%{_datadir}/autostart/*
165%{_datadir}/config/*
166%{_datadir}/templates/*
167%{_datadir}/templates/.source/*
168%{_datadir}/icons/hicolor/*/*/*
169%{_libdir}/libkdeinit4_*.so
170%{_libdir}/libkonsoleprivate.so
171
172%files libs
173%defattr(-,root,root,-)
174%{_libdir}/lib*.so.*
175
176%files devel
177%defattr(-,root,root,-)
178%{_includedir}/kde4/*
179%{_libdir}/kde4/devel/lib*.so
180
181%changelog
182* Sun Sep  5 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 4.5.1-1
183- new upstream release
184
185* Tue Aug 17 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 4.5.0-1
186- new upstream release
187
188* Sun Jul  4 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 4.4.5-1
189- new upstream release
190- added Conflicts: kdebase3
191
192* Fri May  7 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.3-1
193- new upstream release
194
195* Sun Apr 11 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.2-1
196- new upstream release
197
198* Sun Mar  7 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.1-1
199- new upstream release
200
201* Tue Mar  2 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.4.0-1
202- new upstream release
203- built with new toolchain
204
205* Sun Nov 23 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.3.3-1
206- new upstream release
207
208* Sat Oct 24 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.3.2-1
209- new upstream release
210
211* Sat Sep  5 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.3.1-1
212- new upstream release
213- used %%cmake macro
214
215* Sun Aug 30 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.3.0-3
216- fixed %%post and %%postun section
217
218* Tue Aug 18 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.3.0-2
219- new upstream release (based on Fedora)
220
221* Sun May 10 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.5.8-1
222- applied new versioning policy
223- added Patch706 based on 77_fix_ftbfs_ucred_redefinition.diff
224  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=520074
225
226* Mon Dec 10 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.8-0vl7
227- rebuild for VineSeed
228
229* Mon Dec 10 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.8-0vl6
230- add Patch1 and 2
231- update Patch705
232
233* Tue Dec  4 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.8-0vl5
234- rebuild for VineSeed
235
236* Tue Dec  4 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.8-0vl4
237- add Patch705 (BTS:564)
238
239* Sun Nov 25 2007 NAKAMURA Kenta <kenta@vinelinux.org> 3.5.8-0vl3
240- dropped obsolete Patch704
241
242* Tue Oct 16 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.8-0vl2
243- rebuild for VineSeed
244
245* Tue Oct 16 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.8-0vl1
246- new upstream release
247- drop Patch1 and Patch2
248
249* Thu Sep 20 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.7-0vl3
250- add Patch1 (CVE-2007-4224, CVE-2007-4225, CVE-2007-3820)
251- add Patch2 (CVE-2007-4569)
252
253* Wed Jul 18 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.7-0vl2
254- build for VineSeed
255- add Patch101
256
257* Wed Jul 18 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.7-0vl1.1
258- add Patch0 (SA26091)
259
260* Sun May 20 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.7-0vl1
261- new upstream release
262- add BuildPrereq: dbus-qt3-devel samba-libsmbclient-devel
263
264* Mon Jan 22 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.6-0vl1
265- new upstream release
266- remove Patch0
267- add Requires: hicolor-icon-theme
268
269* Wed Dec 20 2006 Hideki MIWA <miwa@c.csce.kyushu-u.ac.jp> 3.5.5-0vl5
270- added: Patch704: kdebase-3.5.5-Xsession.patch
271
272* Sat Nov 11 2006 NAKAMURA Kenta <kenta@vinelinux.org> 3.5.5-0vl4
273- updated pam.d setting
274  - dropped: Patch702: kdebase-3.5.1-pam_console.diff
275  - added:   Patch703: kdebase-3.5.5-pamd.patch
276
277* Sat Oct 14 2006 NAKAMURA Kenta <kenta@vinelinux.org> 3.5.5-0vl3
278- added --with-qt-libraries and --enable-libsuffix option
279- removed --libdir=%%{_libdir} option
280
281* Tue Oct 10 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.5-0vl2
282- rebuild for VineSeed
283
284* Tue Oct 10 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.5-0vl1
285- new upstream release
286- add Patch0 from kde.org (SVN commit 593835)
287
288* Tue Sep 05 2006 NAKAMURA Kenta <kenta@vinelinux.org> 3.5.4-0vl4
289- added --libdir=%%{_libdir} configure option
290
291* Sun Aug 27 2006 NAKAMURA Kenta <kenta@vinelinux.org> 3.5.4-0vl3
292- rebuilt with openldap-2.3.27-0vl1
293
294* Tue Jul 25 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.4-0vl2
295- rebuild for VineSeed
296
297* Tue Jul 25 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.4-0vl1
298- new upstream release
299- drop Patch0
300
301* Thu Jun 15 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.3-0vl5
302- rebuild for VineSeed
303
304* Thu Jun 15 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.3-0vl4
305- add Patch0 (CVE-2006-2449)
306
307* Wed Jun 14 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 3.5.3-0vl3
308- rebuilt with gamin-devel in place of fam-devel
309
310* Tue May 30 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.3-0vl2
311- rebuild for VineSeed
312
313* Tue May 30 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.3-0vl1
314- new upstream release
315
316* Fri Apr 21 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.2-0vl4
317- rebuild for VineSeed
318
319* Fri Apr 21 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.2-0vl3
320- remove firefox icon (BTS:33)
321
322* Wed Mar 22 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.2-0vl2
323- rebuild for VineSeed
324
325* Wed Mar 22 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.2-0vl1
326- new upstream release
327- drop Patch0
328
329* Fri Mar 17 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.1-0vl5
330- update Patch702 (support for ldap)
331- drop Patch701
332
333* Thu Feb 16 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.1-0vl4
334- rebuild for VineSeed
335
336* Thu Feb 16 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.1-0vl3
337- add Patch0 (https://bugs.kde.org/show_bug.cgi?id=121087)
338- add %%{_datadir}/doc/kdm/README to %%files
339
340* Tue Jan 24 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.1-0vl2
341- rebuild for VineSeed
342
343* Tue Jan 24 2006 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.1-0vl1
344- new upstream release
345
346* Thu Dec  8 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.0-0vl2
347- rebuild for VineSeed
348
349* Mon Nov 28 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.0-0vl1
350- new upstream release
351
352* Fri Nov 11 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.5.0-0vl0.rc1
353- new upstream release
354
355* Mon Oct 17 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.92-0vl1
356- new upstream release
357- update Patch701 and BuildPrereq (VineSeed-Plus:03341)
358- delete Patch0, 700, and 800
359
360* Mon Sep 12 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.91-0vl1
361- new upstream release
362- remove Patch0
363- update %%files
364- add Patch0
365
366* Fri Sep  9 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.2-0vl6
367- rebuild for VineSeed
368
369* Fri Sep  9 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.2-0vl5
370- add Patch702 (VineSeed-Plus:03276)
371
372* Tue Sep  6 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.2-0vl4
373- rebuild for VineSeed
374
375* Tue Sep  6 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.2-0vl3
376- add Patch0 (CAN-2005-2494)
377
378* Thu Jul 22 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.2-0vl2
379- rebuild for VineSeed
380
381* Thu Jul 22 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.2-0vl1
382- new upstream release
383
384* Thu Jun 30 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.1-0vl2
385- build for VineSeed
386- add --disable-rpath to configure option
387
388* Wed Jun  1 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.1-0vl1
389- new upstream release
390- build for Vine3.1
391- use %%{?_smp_mflags} for make option
392- stop using %%{SOURCE4}
393
394* Wed Mar 16 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.0-0vl2
395- rebuild for VineSeed
396
397* Thu Mar 10 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.0-0vl1
398- new upstream release
399
400* Wed Mar  2 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.4.0-0vl0.rc1
401- new upstream release (3.4.0-rc1)
402- add BuildPrereq: gettext
403
404* Mon Feb  7 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.92-0vl1
405- new upstream release
406
407* Wed Jan 26 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.91-0vl1
408- new upstream release
409
410* Sat Dec 18 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.2-0vl2
411- rebuild for VineSeed
412- remove Patch0
413
414* Sat Dec 18 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.2-0vl1
415- source upgrade
416- build for Vine Linux 3.1
417- add patch0 (http://www.kde.org/info/security/advisory-20041213-1.txt)
418
419* Sat Oct 30 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.1-0vl2
420- add BuildPrereq: cyrus-sasl-devel ncurses-devel
421- add Requires: samba-libsmbclient
422
423* Sat Oct  9 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.1-0vl1
424- source upgrade
425
426* Thu Sep 23 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.3.0-0vl1
427- source upgrade
428- remove patch0
429
430* Mon Aug 16 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.3-0vl3
431- rebuild with qt32
432- add Patch0 from kde.org
433
434* Tue Jun 22 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.3-0vl2
435- replace gdm session file
436
437* Sat Jun  5 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.3-0vl1
438- source upgrade
439- remove lines about vine26
440
441* Sat May  1 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.2-0vl1
442- source upgrade
443
444* Fri Mar 26 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.1-0vl2
445- rebuild with openssl-0.9.7d
446
447* Tue Mar  9 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.1-0vl1
448- source upgrade
449
450* Mon Feb  2 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.2.0-0vl1
451- source upgrade
452- add BuildPrereq: libtiff-devel jasper-devel samba-libsmbclient
453
454* Sat Jan 17 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.5-0vl2
455- rebuild for VineSeedPlus
456
457* Fri Dec 26 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.5-0vl1
458- source upgrade
459- build for VinePlus/2.6
460- (VinePlus/2.6) BuildPrereq: autoconf258
461
462* Sun Dec 21 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.4-0vl3
463- build for VineSeed with new toolchain and qt-3.2.3
464
465* Fri Oct  3 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.4-0.26vl2
466- rebuild for Vine2.6
467
468* Thu Oct  2 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.4-0vl2
469- OOPS! Patch701 did not used
470
471* Wed Sep 17 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.4-0vl1
472- source upgrade
473- build with gcc-3.2.3
474
475* Thu Jul 17 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.3-0vl1
476- source upgrade
477
478* Sat Jul  5 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.2-0vl5
479- change spec to build with gcc295
480- change make option for SMP and add script
481
482* Thu Jun 19 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.2-0vl4
483- change spec to build with g++-2.95.3
484 
485* Sat May 17 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.2-0vl3
486- source upgrade (MD5SUMS = a90feb5273e9f524a2b19d9021ece7a6)
487
488* Tue May 13 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.2-0vl2
489- source upgrade (MD5SUMS = 4019643c77c818d96bf873c91faa9119)
490
491* Sat May 10 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.2-0vl1
492- source upgrade
493- stop using patch700 and patch800 (they do not need, maybe)
494- do not install source8 (this version reads .Xresources)
495- built with libpng >= 1.2.5 when %{vine26} is set to 0 (ie VineSeedPlus)
496- add BuildPrereq: libjpeg-devel
497- remove /etc/skel/.kde (they do not need)
498
499* Thu Apr 10 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.1a-0vl1
500- security release
501- remove patch0, patch1 and patch2 (included in this source)
502
503* Sun Mar 23 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1.1-0vl1
504- source upgrade
505- add patch0 (http://lists.kde.org/?l=kde-cvs&m=104766756731187&w=2)
506- add patch1 and patch2
507  (http://lists.kde.org/?l=kde-cvs&m=104758242610505&w=2)
508- add patch701 for Xsession of kdm
509
510* Sun Feb 16 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1-0vl2
511- change spec to build both VineSeed and Vine2.5/2.6
512
513* Thu Jan 30 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1-0vl1
514- source upgrade to 3.1-stable
515
516* Mon Jan 20 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1-0.rc7vl1
517- source upgrade to 3.1rc7
518
519* Wed Jan 15 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1-0.rc6vl2
520- remove patches except patch1
521
522* Sun Jan 12 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.1-0.rc6vl1
523- source upgrade to 3.1rc6
524- stop using objprelink2, it does not work with gcc3
525- add BuildPrereq: openMotif-devel instead of lesstif-devel
526- add BuildPrereq: openssl-devel libart_lgpl-devel
527- add Requires: openMotif libart_lgpl
528- update and revised patches
529
530* Sat Dec 28 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.0.5a-0vl1
531- source upgrade
532- revised patch0
533
534* Wed Oct 16 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.0.4-0vl2
535- objprelink2 support only i386 (add %ifarch i386 ... again)
536
537* Sun Oct 13 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.0.4-0vl1
538- source upgrade
539- revised patch0
540
541* Tue Oct  8 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.0.3-0vl2
542- rebuild with qt-3.0.5-0vl1
543- BuildPrereq: autoconf253 objprelink2
544
545* Thu Aug 22 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.0.3-0vl1
546- source upgrade
547- revised patch0
548
549* Mon Aug  5 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.0.2-0vl3
550- add kio_httprc to source4 (fix Japanese search at google.co.jp)
551
552* Wed Jul 24 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.0.2-0vl2
553- rebuild with libvorbis-1.0-0vl1
554
555* Thu Jul  4 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.0.2-0vl1
556- source upgrade
557- revised patch0
558- add source8 to read .Xresources
559
560* Fri Jun  7 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.0.1-0vl1
561- source update to 3.0.1
562
563* Mon Apr 15 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.0-1vl2
564- source update to 3.0
565- add patch800 from kde.gr.jp
566- change source4 (default font == kochi-gothic)
567- add BuildPrereq: lesstif-static
568
569* Sat Mar 30 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.0-1vl1
570- merged with rawhide 3.0-0.cvs20020314.4
571- source update to cvs-20020329
572- revised patch0, 1
573- delete patch7
574- add BuildPrereq: autoconf252 automake15
575- There is Vine's previous changes, hacked for Vine
576  -- Sat Mar 16 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 2.2.2-0vl1
577  - source and patch upgrade to 2.2.2
578  - Build with kdelibs-2.2.2-0vl1
579  - add BuildPrereq: pam-devel lesstif-devel
580 -- Wed Nov 28 2001 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 2.2.1-1vl3
581  - Set Charset=jisx0208.1983-0
582  - Build with kdelibs-2.2.1-1vl3
583  - Stop runnning kappfinder and add applnk of kterm
584 -- Thu Oct 18 2001 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 2.2.1-1vl2
585  - Add patches from kde.gr.jp (Thanks for Mr.ASAKI)
586    -- Source 4
587    -- Patch  202, 203
588  - Use objprelink option (i386 only)
589  - Fix spec to run kappfinder
590 -- Sun Oct 14 2001 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 2.2.1-1vl1
591  - Update patches from kde.gr.jp
592
593* Tue Mar 19 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0-0.cvs20020314.4
594- Fix updating from KDE 2.x
595
596* Mon Mar 18 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0-0.cvs20020314.3
597- Add patches from Than to fix up menu i18n and kdm sessions
598- Put back %{?_smp_mflags}
599
600* Tue Mar 12 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0-0.cvs20020314.1
601- Add patch from Than to scale down icons for submenus pointing to legacy
602  applications rather than keeping them at 32x32
603
604* Mon Mar 11 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0-0.cvs20020311.1
605- Add patch to kicker allowing it to display just the app descriptions instead
606  of names
607
608* Fri Mar  1 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0-0.cvs20020301.1
609- Update
610- Remove separate kdm package
611
612* Thu Feb 14 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0-0.cvs20020214.1
613- Build --with-xinerama
614
615* Tue Jan 29 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0-0.cvs20020129.1
616- Manually add Provides: libkateinterfaces.so to work around rpm bug
617
618* Sun Jan 20 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0-0.cvs20020120.1
619- Update to get API changes
620- Clean up old temp files in startkde some more
621
622* Thu Jan 17 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0-0.cvs20020117.2
623- Make sure the correct kdelibs is in the build environment before building
624  kdebase
625
626* Mon Jan  7 2002 Bernhard Rosenkraenzer <bero@redhat.com> 3.0-0.cvs20020107.1
627- Update, sync with kdelibs API changes
628
629* Sat Dec 29 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0-0.cvs20011229.1
630- Update
631
632* Wed Dec 26 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0-0.cvs20011226.1
633- Update
634- Disable ia64 temporarily (because of bug #57833)
635
636* Sat Dec 15 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0-0.cvs20011215.1
637- Update
638- Make kdm a separate package
639
640* Fri Dec 14 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.0-0.cvs20011214.1
641- Update
642- Exclude alpha for now (compiler bugs)
643
644* Sun Aug  5 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.2-0.cvs20010805.1
645- Fix anti-aliased fonts
646- Remove Japanese konsole patch, it breaks changing fonts in all other
647  languages
648- BuildRequire lesstif-devel to make sure recompiled versions of Konqueror
649  support Netscape plugins
650- Remove language detection hacks from startkde, they're now in kpersonalizer
651- Personalize kicker in kpersonalizer
652- Power off when halting the system in kdm (#50847)
653
654* Thu Aug  2 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.2-0.cvs20010802.1
655- Remove Japanese Konsole patch, it breaks other languages (#50619)
656
657* Tue Jul 31 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.2-0.cvs20010731.1
658- Remove some patches that made it into cvs
659- Fix up the Japanese patch, it messed up konsole fonts on "normal"
660  languages
661
662* Mon Jul 30 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.2-0.cvs20010730.1
663- Fix up audiocd ioslave (#50310)
664- Initialize kpersonalizer to $LANG (#50311)
665- Add Japanese patch
666
667* Wed Jul 25 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.2-0.cvs20010725.1
668- Fix error messages on first startup
669
670* Tue Jul 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.2-0.cvs20010724.1
671- remove ia64 workarounds
672- fix default configurations
673- update
674- remove dupes from kdeartwork
675
676* Sun Jul 22 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.2-0.cvs20010722.1
677- rebuild after fixing the build root
678
679* Sat Jul 21 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.2-0.cvs20010721.1
680- rebuild - somehow an application got linked against an older version of
681  itself from the buildroot
682- update
683
684* Fri Jul 20 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.2-0.cvs20010720.1
685- update
686- get rid of some rpmlint warnings
687- remove kappfinder (we maintain /etc/X11/applnk)
688- work around ia64 breakage
689
690* Wed Jun 27 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.2-0.cvs20010627.1
691- update
692- adapt patches
693
694* Sat Jun 16 2001 Alan Eldridge <alane@geeksrus.net> 2.2-0.cvs20010616.1
695- updated for current CVS
696
697* Tue May 22 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.2-0.alpha2.2
698- Work around NFS-mounted home directories residing on servers with
699  ultimately broken OSes (#40711)
700- Fix desktopconv compilation without optimizations (#40144)
701- Move old config files rather than deleting them (#38107)
702- Add explicit requirements on lm_sensors and kdelibs-sound (#32678)
703- Fix doc generation (#40087)
704- s/Copyright:/License:/
705
706* Sun May 20 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.2-0.alpha2.1
707- 2.2 alpha 2
708
709* Sun May 13 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.2-0.cvs20010513.1
710- Fix up default settings; KSpell should use Aspell right away
711- Split out -devel subpackage; with KWin and Kate moving to plugin systems,
712  this is getting big...
713
714* Sat May 12 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.2-0.cvs20010512.1
715- Update, adapt patches
716- Fix up desktop devices patch, we want the "Eject" action for CD-ROMs,
717  CD-Writers, CD-RWs, ZIP and JAZ-Drives and LS120.
718
719* Fri Apr 20 2001 Bernhard Rosenkraenzer <bero@redhat.com>
720- 2.2alpha1
721- kill /usr/share/icons/locolor/16x16/actions/bookmark_folder.png
722  (dupe from kdelibs)
723
724* Tue Apr  3 2001 Bernhard Rosenkraenzer <bero@redhat.com>
725- Fix deadkeys handling in kdm
726- Fix uninitialized variable in konsole, patch
727  from Tim Waugh (#34452)
728
729* Fri Mar 30 2001 Bernhard Rosenkraenzer <bero@redhat.com>
730- Fix rpmfind shortcut (Bugzilla #34057, KDE Bug #21100)
731- Add patch from KDE_2_1_BRANCH to get rid of debug output in
732  the ktar IO slave
733
734* Wed Mar 28 2001 Than Ngo <than@redhat.com>
735- fix a bug in desktopconv (bug #33374)
736
737* Tue Mar 27 2001 Than Ngo <than@redhat.com>
738- fix charmap/encoding problem
739- fix MinimumFontSize in konqueror, default is 10
740- set correct DefaultEncoding for konqueror
741- clean up startkde
742- disable Israel and Thai, it's broken in qt
743
744* Fri Mar 23 2001 Preston Brown <pbrown@redhat.com>
745- remove CD-ROM / Floppy .desktop files, they are generated automatically now
746- remove some other old obsolete default config files
747
748* Thu Mar 22 2001 Preston Brown <pbrown@redhat.com>
749- patch to dynamically create icons for removable/user controllable
750  devices on desktop
751
752* Wed Mar 21 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.1.1-2
753- Log utmp/wtmp correctly in konsole, using utempter
754- Remove setuid state from konsole_grantpty, it's no longer needed now
755  that we use utempter.
756- Fix escaping in the konsole KPart
757- Fix grammar and order in the arts control module
758
759* Tue Mar 21 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.1.1-1
760- 2.1.1
761- Don't crash if kfmexec is invoked without arguments (#32029)
762- Various desktopconv fixes:
763  - Allow removing or ignoring KDE 1.x files
764  - convert the printer icon we had on the desktop by default.
765  - Support i18n
766- Add mailsettings tool (generates sane kcmemail defaults at first
767  startup)
768- Fix up support for Brazil Portuguese and Chinese
769- Fix loading of child panel config files (harald)
770- remove -T and --title in konsole, use instead --caption (#31483) (Than Ngo)
771- More i18n fixes (zh_HK is closer to zh_TW than to zh_CN...)
772
773* Mon Mar 20 2001 Than Ngo <than@redhat.com>
774- fix Login Screen Red Hat logo (Bug #32241)
775- fix kdm background color
776- fix a bug in setting font size (Bug #32258)
777
778* Fri Mar 17 2001 Than Ngo <than@redhat.com> 2.1-11
779- fix placed icons on desktop (Bug #31985)
780- some bugfixes in startkde
781- restore support for Russian (bero)
782- merge bugfix patch from KDE_2_1_BRANCH, Ctrl-U could crash Konqueror
783  under certain circumstances (bero)
784- Fix up the effects patch (if everything was disabled, no radio button
785  was checked by default, rather than the "No effects" button) (bero)
786
787* Thu Mar 15 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.1-10
788- Fix up i18n support
789- Don't use predictable tmp file names in krdb
790- Remove the printer icon from the desktop. It uses klpq which is in kdeutils,
791  so the icon should come from there.
792- fix error.c in kdebase-2.1-fixes.patch, It's broken (Than Ngo)
793- better fix for konsole keyboard mappings (Preston Brown)
794
795* Tue Mar 13 2001 Than Ngo <than@redhat.com>
796- fix default profile for konqueror in webbrowser mode
797- set lucidatypewriter as fixed-width font for konqueror
798 
799* Mon Mar 12 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.1-9
800- Fix locale settings (old versions didn't check the user's locale settings
801  and always started up in English)
802- Fix some braindead code in kwrite
803
804* Sat Mar 10 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.1-8
805- Add option to save backtraces to a file (#30867)
806- Fix kdm looking horrible on 8 bit displays
807- Revert to /usr/share/config with an exception for kdmrc
808- Add /etc/skel/Desktop/.directory (the /etc/skel/Desktop/* glob doesn't include
809  /etc/skel/Desktop/.* ...)
810- Don't apply konsole-noxft patch anymore (workaround for an X bug
811  that was fixed in 11.4)
812
813* Fri Mar  9 2001 Preston Brown <pbrown@redhat.com>
814- fix home and end default mapping in konsole
815
816* Wed Feb 28 2001 Bernhard Rosenkraenzer <bero@redhat.com>
817- /usr/share/config -> /etc/kde
818- Don't throw all config files at every user's home directory; 2.x supports
819  changing global defaults
820- Get rid of bogus "can't find schema named" warning
821- Fix various bugs in konsole (don't connect to a NULL slot, etc.)
822- Cripple kxmlrpcd by default (#23253)
823- Add a sane icon arrangement at first startup (#25026)
824 
825* Tue Feb 27 2001 Bernhard Rosenkraenzer <bero@redhat.com>
826- Add fixes from KDE_2_1_BRANCH:
827  - Fix up cookie handling in konqueror
828  - Fix a potential crash in kcontrol when using config files from
829    cvs snapshots
830  - Fix possible khotkeys segfault
831- Fix up Konqueror User Agent dialog
832- Log in to "default" session by default (#29157)
833
834* Thu Feb 22 2001 Bernhard Rosenkraenzer <bero@redhat.com>
835- 2.1 second (and hopefully last) respin
836
837* Wed Feb 21 2001 Bernhard Rosenkraenzer <bero@redhat.com>
838- 2.1-respin
839- Drop the old anotherlevel session type in kdm (#28593)
840
841* Mon Feb 19 2001 Bernhard Rosenkraenzer <bero@redhat.com>
842- 2.1
843
844* Wed Feb 14 2001 Bernhard Rosenkraenzer <bero@redhat.com>
845- Fix up konsole_grantpty to work with the /dev/pts filesystem and
846  /dev/ptmx rather than the old /dev/ptyXX system
847- Replace ktip logo with Red Hat logo, the old one could be considered
848  offensive by some people
849- Fix build with glibc 2.2.2
850- Turn off icon view in kdm
851- Other minor changes to default config
852
853* Mon Feb 12 2001 Bernhard Rosenkraenzer <bero@redhat.com>
854- desktopconv: Don't strip off .png/.xpm/.gif in Icon= if it is
855  provided as a full pathname
856- Build with --disable-debug
857- Fix a bug causing all icons to appear in the upper-left corner
858- Don't use antialiased fonts in konsole even if they're turned on.
859  Konsole can't deal with them.
860- Don't show the postgres and amanda users in kdm
861- Add rhbug/bz shortcut to Bugzilla
862- Add ftpsearch/fs shortcut to FTP Search
863- Add "Eject" option to CD-ROM icon (RFE #26301)
864- Fix permissions on some files in /etc/skel/Desktop (having them readable
865  by root only is not really useful ;) )
866- Fix PAM exiting (#25232, Patch from Tim Waugh)
867- Fix utmp handling in konsole (Bug #25048)
868- Rewrite desktopconv and run it from startkde, ensures
869  clean updates from KDE 1.x (Bug #25473)
870- Add $HOME/bin to PATH in kdm (Bug #25743)
871
872* Fri Feb  2 2001 Bernhard Rosenkraenzer <bero@redhat.com>
873- Link the greeter into kdm statically, pulling in libpthreads
874  Fixes crash with glibc-2.2.1-3 i686
875
876* Fri Jan 26 2001 Bernhard Rosenkraenzer <bero@redhat.com>
877- exec ksmserver rather than just starting it - there's no need to keep
878  that shell in memory.
879
880* Thu Jan 25 2001 Bernhard Rosenkraenzer <bero@redhat.com>
881- Turn off anti-aliasing by default
882- Restore the turning AA on/off and "apply styles to non-KDE-apps"
883  functionality, someone managed to break them just in time for
884  2.1 beta 2.
885
886* Tue Jan 23 2001 Bernhard Rosenkraenzer <bero@redhat.com>
887- Fix bugs #23136 and #24709
888
889* Mon Jan 22 2001 Bernhard Rosenkraenzer <bero@redhat.com>
890- Kill /usr/share/icons/hicolor/22x22/actions/view_tree.png, it's in
891  kdelibs
892- restore missing /etc/kderc (Bug #24601)
893
894* Sat Jan 20 2001 Bernhard Rosenkraenzer <bero@redhat.com>
895- Fix update if Autostart directory exists, but is empty
896- Fix usage of mktemp in startkde (#24415)
897
898* Fri Jan 19 2001 Bernhard Rosenkraenzer <bero@redhat.com>
899- Update CVS (fixed #24298, #24242)
900- Hack in support for turning anti-aliasing on and off, as requested
901  by Than. Unfortunately, this patch probably won't go into the base 2.1
902  because of the message freeze.
903
904* Wed Jan 17 2001 Bernhard Rosenkraenzer <bero@redhat.com>
905- Update to CVS; I fixed building with OpenLDAP 2.x in there.
906
907* Tue Jan 16 2001 Bernhard Rosenkraenzer <bero@redhat.com>
908- Add kscreensaver pam file (copy the xscreensaver one, don't
909  use the broken one from KDE CVS)
910
911* Thu Jan 11 2001 Bernhard Rosenkraenzer <bero@redhat.com>
912- Don't replace a directory with a symlink (#23671)
913
914* Mon Jan  8 2001 Bernhard Rosenkraenzer <bero@redhat.com>
915- Fix background (#20910)
916
917* Mon Jan  8 2001 Bernhard Rosenkraenzer <bero@redhat.com>
918- kdm shouldn't show gdm and mailnull users (#23136)
919- don't install the konsole fonts, they're now
920  included in XFree86 (#23467)
921- Obsoletes kdebase2 (from 7.0-preview)
922- Add config files (used to be in kdesupport) (#22601)
923
924* Mon Jan  1 2001 Bernhard Rosenkraenzer <bero@redhat.com>
925- Update
926
927* Wed Dec 20 2000 Bernhard Rosenkraenzer <bero@redhat.com>
928- Update
929- Obsolete kdebase-3d-screensavers, kdebase-locolor-icons,
930  kapm kcmlaptop (optional stuff from KDE 1.x)
931
932* Thu Nov  9 2000 Bernhard Rosenkraenzer <bero@redhat.com>
933- Update to HEAD branch
934- s/Prereq/Requires(post,postun)/
935
936* Thu Nov  2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
937- Some fixes to startkde:
938  - if /etc/skel/.kde doesn't exist, don't copy it
939  - remove stale .DCOPserver* files at startup
940- Rebuild with fixed kdoc
941
942* Tue Oct 31 2000 Bernhard Rosenkraenzer <bero@redhat.com>
943- Move include files to /usr/include/kde
944- Don't install any of the mini-lesstif files, we need them at
945  build time only
946- Fix consolehelper config for kappfinder
947
948* Sat Oct 28 2000 Bernhard Rosenkraenzer <bero@redhat.com>
949- Update to KDE_2_0_BRANCH, now that the ".0 release" bugs are fixed
950- Get rid of the Red Hat menu, it's merged now
951- Fix up the gdm session file
952- Fix up kappfinder, run it through consolehelper (Bug #19903)
953- Enable Netscape plugin support, add a stripped down version of lesstif
954  to allow this
955
956* Mon Oct 23 2000 Bernhard Rosenkraenzer <bero@redhat.com>
957- 2.0 final
958
959* Sun Oct  1 2000 Bernhard Rosenkraenzer <bero@redhat.com>
960- new CVS
961- fix installation of fonts
962
963* Sat Sep 23 2000 Bernhard Rosenkraenzer <bero@redhat.com>
964- new CVS snapshot
965- fix up spec file
966
967* Wed Aug 23 2000 Bernhard Rosenkraenzer <bero@redhat.com>
968- get rid of the 3d-screensavers package - now that qt-GL is part of qt,
969  there's no need to keep them separate to avoid the dependency.
970
971* Mon Aug 21 2000 Than Ngo <than@redhat.com>
972- fix gnome-session so that KDE2 can be started from gdm
973- pam/kde2 instead pam/kde to avoid problem with KDE1
974- don't requires qt-GL, It's now in qt
975
976* Sun Aug 20 2000 Than Ngo <than@redhat.com>
977- fix dependency problem with KDE1 so that KDE1 and KDE2 can be installed
978  at the same time
979- add missing ldconfig in %post anf %postun
980- fix for reading config files in /etc/X11/xdm, add Xsession to requires
981
982* Tue Aug  8 2000 Bernhard Rosenkraenzer <bero@redhat.com>
983- Fix keytable in konsole (Bug #15682)
984
985* Sun Aug  6 2000 Bernhard Rosenkraenzer <bero@redhat.com>
986- rebuild, now that kdelibs2 works on alpha
987- use the same ugly hack to get kdebase to compile
988- remove ksysguard on alpha (even more compiler problems)
989
990* Fri Aug  4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
991- new snapshot (fixed libGL detection in CVS)
992
993* Wed Aug  2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
994- move to /usr/lib/kde2
995- new snapshot
996
997* Sun Jul 23 2000 Nalin Dahyabhai <nalin@redhat.com>
998- fix the --xdmdir arg to be correct (oops)
999
1000* Fri Jul 21 2000 Nalin Dahyabhai <nalin@redhat.com>
1001- move kdm config files from /usr/config to /etc/X11 by forcing xdmdir
1002
1003* Fri Jul 21 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1004- new snapshot
1005- some fixes to spec file
1006
1007* Tue Jul 18 2000 Than Ngo <than@redhat.de>
1008- rebuilt against glibc-2.1.92-14, gcc-2.96-40
1009
1010* Sun Jul 16 2000 Than Ngo <than@redhat.de>
1011- use new snapshot
1012- disable Motif
1013
1014* Tue Jul 11 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1015- use gcc 2.96
1016- new snapshot
1017
1018* Sun Jul  2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1019- Epoch 3
1020- Update to current
1021- Use egcs++
1022
1023* Fri Jun 30 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1024- Update (I put the fixes directly to CVS rather than collecting them
1025  in the spec)
1026
1027* Fri Jun 23 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1028- remove man2html; we get that from man
1029- new snapshot
1030
1031* Tue Jun 20 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1032- new snapshot
1033- ExcludeArch ia64 for now
1034- remove gnome .desktop file, we get it from gnome-core now.
1035
1036* Wed Apr  5 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1037- remove dependency on xpm (now in XFree86)
1038
1039* Sat Mar 18 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1040- new snapshot
1041- move it to /usr, where it belongs
1042
1043* Sat Dec 25 1999 Bernhard Rosenkraenzer <bero@redhat.com>
1044- Build the OpenGL screensavers, and move them to a separate package
1045- Improve the spec file (BuildPrereqs etc.)
1046
1047* Thu Dec 16 1999 Bernhard Rosenkraenzer <bero@redhat.com>
1048- remove patch #3 (obsoleted by kwin)
1049
1050* Sun Oct 24 1999 Bernhard Rosenkraenzer <bero@redhat.de>
1051- 2.0 CVS snapshot
1052- fix compilation
1053
1054* Thu Sep 23 1999 Preston Brown <pbrown@redhat.com>
1055- clean up files in /tmp from startkde
1056- mark doc files as such
1057
1058* Tue Sep 21 1999 Preston Brown <pbrown@redhat.com>
1059- start autorun if present in startkde
1060- check for configured soundcard before running sound services
1061
1062* Mon Sep 20 1999 Preston Brown <pbrown@redhat.com>
1063- made kdelnks display Name property if they are of type Link
1064
1065* Thu Sep 16 1999 Preston Brown <pbrown@redhat.com>
1066- moved png handling here (from kdelibs)
1067- changed low color icon directory name to locolor
1068
1069* Tue Sep 14 1999 Preston Brown <pbrown@redhat.com>
1070- added optional session management to logout dialog
1071- include GNOME menus
1072
1073* Mon Sep 13 1999 Preston Brown <pbrown@redhat.com>
1074- added link to /etc/X11/applnk, .directory file
1075- included lowcolor icon sub-package
1076- enable .desktop file access
1077
1078* Fri Sep 10 1999 Preston Brown <pbrown@redhat.com>
1079- customized startkde script to set up user environment if not present.
1080- mention kthememgr in description.
1081
1082* Wed Sep 08 1999 Preston Brown <pbrown@redhat.com>
1083- upgraded to 1.1.2 release
1084- kvt is back
1085- kde icon included
1086- linux console fonts included
1087
1088* Thu Jul 15 1999 Preston Brown <pbrown@redhat.com>
1089- PAM console logout problem solved.
1090
1091* Mon Jul 12 1999 Preston Brown <pbrown@redhat.com>
1092- now includes screensaver password security fix
1093
1094* Fri Jun 11 1999 Preston Brown <pbrown@redhat.com>
1095- snapshot, includes kde 1.1.1 + fixes
1096- kvt removed for security reasons.  It is a steaming pile of...
1097
1098* Mon Apr 19 1999 Preston Brown <pbrown@redhat.com>
1099- last snapshot before release
1100
1101* Fri Apr 16 1999 Preston Brown <pbrown@redhat.com>
1102- today's snapshot makes kfm a bit nicer and some other fixes
1103- moved default rc files to kdesupport
1104
1105* Thu Apr 15 1999 Preston Brown <pbrown@redhat.com>
1106- SUID bit removed from konsole_grantpty -- not needed w/glibc 2.1
1107
1108* Wed Apr 14 1999 Preston Brown <pbrown@redhat.com>
1109- built with today's snapshot -- had to rebuild to fix pam problems.
1110
1111* Tue Apr 13 1999 Preston Brown <pbrown@redhat.com>
1112- new snapshot fixes mimetype video/x-flic problem
1113
1114* Mon Apr 12 1999 Preston Brown <pbrown@redhat.com>
1115- latest stable snapshot
1116
1117* Fri Apr 09 1999 Preston Brown <pbrown@redhat.com>
1118- removed bell.xpm (used to be in fvwm2-icons, don't want installer to see
1119- this previous connection and autoselect kdebase for upgrade).
1120
1121* Tue Mar 23 1999 Preston Brown <pbrown@redhat.com>
1122- moved gdm patch
1123
1124* Mon Mar 22 1999 Preston Brown <pbrown@redhat.com>
1125- added gdm session control file
1126
1127* Fri Mar 19 1999 Preston Brown <pbrown@redhat.com>
1128- added pam-console stuff to kde pam file
1129
1130* Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
1131- Injected new description and group.
1132
1133* Mon Feb 07 1999 Preston Brown <pbrown@redhat.com>
1134- upgraded to KDE 1.1 final.
1135
1136* Tue Jan 19 1999 Preston Brown <pbrown@redhat.com>
1137- updated macros for RPM 3.0, removed red hat logo.
1138
1139* Tue Jan 05 1999 Preston Brown <pbrown@redhat.com>
1140- re-merged from Duncan Haldane's stuff
Note: See TracBrowser for help on using the repository browser.