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

Revision 2790, 39.2 KB checked in by inagaki, 13 years ago (diff)

update: kdebase

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