source: projects/specs/branches/6/k/kdebase/kdebase-vl.spec @ 4216

Revision 4216, 39.3 KB checked in by inagaki, 13 years ago (diff)

updated: KDE SC 4.6.4

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