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

Revision 962, 38.6 KB checked in by inagaki, 14 years ago (diff)

updated: KDE SC 4.4.3

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