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

Revision 813, 38.5 KB checked in by inagaki, 14 years ago (diff)

updated: kdebase, xfce4-settings

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