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

Revision 9222, 41.2 KB checked in by Takemikaduchi, 9 years ago (diff)

R: rebuild
openbabel: add BR
k3b: new upstream release
others: KDE-4.14.3

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