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

Revision 521, 38.2 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

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