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

Revision 7105, 40.5 KB checked in by Takemikaduchi, 12 years ago (diff)

KDE-4.9.3, etc

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