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

Revision 560, 38.4 KB checked in by inagaki, 14 years ago (diff)

2010-03-13 Ryoichi INAGAKI <ryo1@…>

updated for KDE 4.4.1

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