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

Revision 3006, 39.3 KB checked in by inagaki, 13 years ago (diff)

update: KDE 4.6.1

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