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

Revision 1263, 38.7 KB checked in by inagaki, 14 years ago (diff)

updated: kdebase, kdenetwork, kdeaccessibility, kdesdk

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