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

Revision 2774, 38.9 KB checked in by inagaki, 13 years ago (diff)

update: KDE 4.6.0
NEW: nepomukcontroller, openal-soft

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