1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
|
# ChangeLog for kde-base/kdebase
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdebase/ChangeLog,v 1.212 2005/07/28 13:01:46 greg_g Exp $
*kdebase-3.4.2 (28 Jul 2005)
28 Jul 2005; Gregorio Guidi <greg_g@gentoo.org>
files/kdebase-3.4.1-configure.patch, +kdebase-3.4.2.ebuild:
New version. Add configure patch (#81966).
25 Jul 2005; Guy Martin <gmsoft@gentoo.org> kdebase-3.4.1-r1.ebuild:
Stable on hppa.
14 Jul 2005; Hardave Riar <hardave@gentoo.org> kdebase-3.4.1-r1.ebuild:
Keyworded ~mips
08 Jul 2005; Jason Wever <weeve@gentoo.org> kdebase-3.4.1-r1.ebuild:
Stable on SPARC.
04 Jul 2005; Bryan Østergaard <kloeri@gentoo.org>
kdebase-3.4.1-r1.ebuild:
Add ~alpha keyword.
01 Jul 2005; Hardave Riar <hardave@gentoo.org> kdebase-3.3.2-r3.ebuild:
Stable on mips
01 Jul 2005; Joseph Jezak <josejx@gentoo.org> kdebase-3.4.1-r1.ebuild:
Marked ppc stable for bug #97544.
27 Jun 2005; Gustavo Zacarias <gustavoz@gentoo.org>
kdebase-3.3.2-r3.ebuild:
Stable on sparc
21 Jun 2005; Markus Rothe <corsair@gentoo.org> kdebase-3.3.2-r3.ebuild:
Stable on ppc64
19 Jun 2005; Gregorio Guidi <greg_g@gentoo.org> kdebase-3.3.2-r3.ebuild:
Stable on x86.
12 Jun 2005; Bryan Østergaard <kloeri@gentoo.org>
kdebase-3.3.2-r2.ebuild:
Stable on alpha.
*kdebase-3.3.2-r3 (08 Jun 2005)
08 Jun 2005; Gregorio Guidi <greg_g@gentoo.org>
+files/3.3.2-r3/backgroundrc, +files/3.3.2-r3/kdmrc,
+files/3.3.2-r3/startkde-3.3.2-r3-gentoo.diff, +kdebase-3.3.2-r3.ebuild:
Add fix to avoid losing the KDE menu if a recent Gnome version is installed
(#89870).
*kdebase-3.4.1-r1 (07 Jun 2005)
07 Jun 2005; Gregorio Guidi <greg_g@gentoo.org>
+files/kdebase-3.4.1-configure.patch, +kdebase-3.4.1-r1.ebuild:
Add patch to properly respect USE flags (#81966, #92433).
28 May 2005; Diego Pettenò <flameeyes@gentoo.org> kdebase-3.4.1.ebuild:
Moved dependency to virtual/eject.
*kdebase-3.4.1 (27 May 2005)
27 May 2005; Gregorio Guidi <greg_g@gentoo.org>
+files/kdebase-3.4.1-startkde-gentoo.patch, +kdebase-3.4.1.ebuild:
New version.
19 May 2005; Guy Martin <gmsoft@gentoo.org> kdebase-3.3.2-r2.ebuild:
Stable on hppa.
*kdebase-3.4.0-r1 (11 May 2005)
11 May 2005; Gregorio Guidi <greg_g@gentoo.org>
+files/kdebase-3.4.0-r1-startkde-gentoo.patch, +kdebase-3.4.0-r1.ebuild:
Better handling of config files migration (#40698). Fix conflict with the
menu from gnome 2.10 (#89870).
10 May 2005; Carsten Lohrke <carlo@gentoo.org> kdebase-3.4.0.ebuild:
corrected dbus and hal dependencies, #91903
10 May 2005; Aron Griffis <agriffis@gentoo.org> kdebase-3.4.0.ebuild:
add ~ia64
08 May 2005; Aron Griffis <agriffis@gentoo.org> kdebase-3.3.2-r2.ebuild:
stable on ia64
08 Apr 2005; Markus Rothe <corsair@gentoo.org> kdebase-3.3.2-r2.ebuild:
Stable on ppc64
26 Mar 2005; Jason Wever <weeve@gentoo.org> kdebase-3.3.2-r2.ebuild:
Stable on SPARC.
25 Mar 2005; Gregorio Guidi <greg_g@gentoo.org> kdebase-3.3.2-r2.ebuild:
Stable on x86.
19 Mar 2005; Jeremy Huddleston <eradicator@gentoo.org>
kdebase-3.4.0.ebuild:
Versioned libusb dependency as 0.1.8 doesn't work.
18 Mar 2005; Daniel Goller <morfic@gentoo.org> kdebase-3.4.0.ebuild:
Added to ~ppc
*kdebase-3.4.0 (14 Mar 2005)
14 Mar 2005; Gregorio Guidi <greg_g@gentoo.org>
+files/kdebase-3.4.0-startkde-gentoo.patch, +kdebase-3.4.0.ebuild:
Ebuild for KDE 3.4 final.
07 Mar 2005; Gregorio Guidi <greg_g@gentoo.org> kdebase-3.4.0_rc1.ebuild:
Proper handling of java (#82032).
*kdebase-3.4.0_rc1 (27 Feb 2005)
27 Feb 2005; Gregorio Guidi <greg_g@gentoo.org>
+files/kdebase-3.4.0_rc1-startkde-gentoo.patch, +kdebase-3.4.0_rc1.ebuild:
New version. Add support for hal (#78339). Switch back to the old
system to manage the .kde* directories.
27 Feb 2005; Henrik Brix Andersen <brix@gentoo.org>
kdebase-3.4.0_beta2.ebuild:
Dependency update: sys-apps/lm-sensors -> sys-apps/lm_sensors.
27 Feb 2005; Henrik Brix Andersen <brix@gentoo.org>
kdebase-3.4.0_beta1.ebuild:
Dependency update: sys-apps/lm-sensors -> sys-apps/lm_sensors.
21 Feb 2005; Hardave Riar <hardave@gentoo.org> kdebase-3.3.2-r1.ebuild:
Stable on mips.
15 Feb 2005; Jason Wever <weeve@gentoo.org> kdebase-3.4.0_beta2.ebuild:
Added ~sparc keyword.
10 Feb 2005; Gregorio Guidi <greg_g@gentoo.org>
+files/kicker-visibility.diff, kdebase-3.4.0_beta2.ebuild:
Add patch to fix compilation with gcc 3.4.
*kdebase-3.4.0_beta2 (09 Feb 2005)
09 Feb 2005; Gregorio Guidi <greg_g@gentoo.org> +kdebase-3.4.0_beta2.ebuild:
Version bump. Use kde-base/kdebase-pam to provide files in /etc/pam.d.
08 Feb 2005; Gregorio Guidi <greg_g@gentoo.org>
-files/3.3.0-kwinrules-Makefile.am.diff, -files/3.3.0-sasl-fix.diff,
-files/kdebase-3.2.0-kcontrol.patch, -files/kdebase-3.2.2-genkdmconf.c.diff,
-files/kscreensaver.pam, -kdebase-3.2.0.ebuild, -kdebase-3.2.2.ebuild,
-kdebase-3.3.0.ebuild:
Remove old ebuilds.
*kdebase-3.3.2-r2 (07 Feb 2005)
07 Feb 2005; Gregorio Guidi <greg_g@gentoo.org> +kdebase-3.3.2-r2.ebuild:
Remove KDEDIR from the environment (#33079). Depend on kdebase-pam as a
provider for files in /etc/pam.d (#16022). Set proper permissions on
agent-startup.sh and agent-shutdown.sh (#76719, #76720). Make kdm use
/usr/share/xsessions to list available sessions.
02 Feb 2005; Heinrich Wendel <lanius@gentoo.org> kdebase-3.4.0_beta1.ebuild:
mark ~amd64
23 Jan 2005; Markus Rothe <corsair@gentoo.org> kdebase-3.3.2-r1.ebuild:
Stable on ppc64; bug #78619
17 Jan 2005; Gregorio Guidi <greg_g@gentoo.org> kdebase-3.4.0_beta1.ebuild:
Added missing (optional) dep on lm_sensors.
17 Jan 2005; Dan Armak <danarmak@gentoo.org> kdebase-3.4.0_beta1.ebuild:
Adding missing dep on freetype, bug #78206.
*kdebase-3.4.0_beta1 (14 Jan 2005)
14 Jan 2005; Gregorio Guidi <greg_g@gentoo.org> files/agent-shutdown.sh,
files/agent-startup.sh, +files/3.4.0_beta1/kdmrc,
+files/3.4.0_beta1/startkde-gentoo.diff, +kdebase-3.4.0_beta1.ebuild:
Introducing kde-3.4.0_beta1. Added support for cyrus-sasl. Added support for
logitech-mouse plugin. Fix the kde script to handle the .kde3.3 .kde3.4
migration (#40698). Fix agents-startup and agents-shutdown scripts (#76719,
#76720). Use /usr/share/xsession to list available sessions in kdm. Set the
default kdm face icon.
03 Jan 2005; Guy Martin <gmsoft@gentoo.org> kdebase-3.3.2-r1.ebuild:
Stable on hppa.
29 Dec 2004; Bryan Østergaard <kloeri@gentoo.org>
kdebase-3.3.2-r1.ebuild:
Stable on alpha, bug 72750.
28 Dec 2004; Dylan Carlson <absinthe@gentoo.org> kdebase-3.3.2-r1.ebuild:
Stable on amd64.
27 Dec 2004; Caleb Tennis <caleb@gentoo.org> kdebase-3.3.2-r1.ebuild:
x86 stable
18 Dec 2004; Markus Rothe <corsair@gentoo.org> kdebase-3.3.1-r2.ebuild:
Stable on ppc64
13 Dec 2004; Caleb Tennis <caleb@gentoo.org> -files/detectwidget.cpp.diff,
-files/utils.h.diff, -files/3.3.1-r1/Xsetup, -files/3.3.1-r1/backgroundrc,
-files/3.3.1-r1/kdmrc, -files/3.3.1-r1/startkde-3.3.1-gentoo.diff,
-files/3.3.1-r1/startkde-3.3.1-r1-gentoo.diff, -kdebase-3.2.3-r1.ebuild,
-kdebase-3.2.3-r2.ebuild, -kdebase-3.3.1-r1.ebuild, -kdebase-3.3.1.ebuild,
-kdebase-3.3.2.ebuild:
remove older revisions
*kdebase-3.3.1-r2 (13 Dec 2004)
13 Dec 2004; Caleb Tennis <caleb@gentoo.org>
+files/post-3.2.3-kdebase-htmlframes2.patch,
+files/post-3.3.1-kdebase-htmlframes2.patch,
+files/post-3.3.2-kdebase-htmlframes2.patch, +files/3.2.3-r3/Xsetup,
+files/3.2.3-r3/backgroundrc, +files/3.2.3-r3/kdmrc,
+files/3.2.3-r3/startkde-3.2.3-r3-gentoo.diff, +files/3.3.1-r2/Xsetup,
+files/3.3.1-r2/backgroundrc, +files/3.3.1-r2/kdmrc,
+files/3.3.1-r2/startkde-3.3.1-r2-gentoo.diff, +files/3.3.2-r1/Xsetup,
+files/3.3.2-r1/backgroundrc, +files/3.3.2-r1/kdmrc,
+files/3.3.2-r1/startkde-3.3.2-r1-gentoo.diff, +kdebase-3.2.3-r3.ebuild,
+kdebase-3.3.1-r2.ebuild, +kdebase-3.3.2-r1.ebuild:
Rev bump for security fix bug #73869
*kdebase-3.2.3-r2 (09 Dec 2004)
09 Dec 2004; Caleb Tennis <caleb@gentoo.org>
+files/post-3.2.3-kdebase-smb.diff, +files/post-3.3.1-kdebase-smb.diff,
+files/3.2.3-r2/Xsetup, +files/3.2.3-r2/backgroundrc, +files/3.2.3-r2/kdmrc,
+files/3.2.3-r2/startkde-3.2.3-r1-gentoo.diff,
+files/3.2.3-r2/startkde-3.2.3-r2-gentoo.diff, +files/3.3.1-r1/Xsetup,
+files/3.3.1-r1/backgroundrc, +files/3.3.1-r1/kdmrc,
+files/3.3.1-r1/startkde-3.3.1-gentoo.diff,
+files/3.3.1-r1/startkde-3.3.1-r1-gentoo.diff, +kdebase-3.2.3-r2.ebuild,
+kdebase-3.3.1-r1.ebuild:
Rev bump for security fix bug #72804
08 Dec 2004; Caleb Tennis <caleb@gentoo.org> +files/pgo.desktop:
forgot this file
*kdebase-3.3.2 (08 Dec 2004)
08 Dec 2004; Caleb Tennis <caleb@gentoo.org> +files/kde.desktop,
+files/konsole-3.3.2.patch, +files/3.3.2/Xsetup,
+files/3.3.2/backgroundrc, +files/3.3.2/kdmrc,
+files/3.3.2/startkde-3.3.2-gentoo.diff, +kdebase-3.3.2.ebuild:
Version bump
06 Dec 2004; Jason Huebel <jhuebel@gentoo.org> kdebase-3.3.1.ebuild:
stable on amd64
17 Nov 2004; Bryan ??stergaard <kloeri@gentoo.org> kdebase-3.3.1.ebuild:
Stable on alpha.
08 Nov 2004; Lars Weiler <pylon@gentoo.org> kdebase-3.3.1.ebuild:
Stable on ppc.
04 Nov 2004; Jason Wever <weeve@gentoo.org> kdebase-3.3.1.ebuild:
Stable on sparc wrt security bug #69936.
03 Nov 2004; Bryan ??stergaard <kloeri@gentoo.org> kdebase-3.3.1.ebuild:
~alpha keyword.
03 Nov 2004; Caleb Tennis <caleb@gentoo.org> kdebase-3.3.1.ebuild:
x86 stable
13 Oct 2004; Caleb Tennis <caleb@gentoo.org> files/3.3.1/kdmrc,
files/3.3.1/startkde-3.3.1-gentoo.diff:
Providing a new kdmrc from bug #61499
*kdebase-3.3.1 (12 Oct 2004)
12 Oct 2004; Caleb Tennis <caleb@gentoo.org> +files/3.3.1/Xsetup,
+files/3.3.1/backgroundrc, +files/3.3.1/kdmrc,
+files/3.3.1/startkde-3.3.1-gentoo.diff, +kdebase-3.3.1.ebuild:
Version bump
04 Oct 2004; Guy Martin <gmsoft@gentoo.org> kdebase-3.3.0.ebuild:
Stable on hppa.
19 Sep 2004; Malcolm Lashley <malc@gentoo.org> kdebase-3.3.0.ebuild:
Stable on amd64
14 Sep 2004; Jason Wever <weeve@gentoo.org> kdebase-3.3.0.ebuild:
Stable on sparc.
09 Sep 2004; Caleb Tennis <caleb@gentoo.org> -kdebase-3.2.1.ebuild,
-kdebase-3.2.3.ebuild:
Remove old files, mark 3.3.0 x86 stable
07 Sep 2004; Carsten Lohrke <carlo@gentoo.org> +files/3.3.0-sasl-fix.diff,
kdebase-3.3.0.ebuild:
proper sasl fix
30 Aug 2004; Pieter Van den Abeele <pvdabeel@gentoo.org>
kdebase-3.1.5.ebuild, kdebase-3.2.1.ebuild, kdebase-3.2.3.ebuild,
kdebase-3.3.0.ebuild:
Masked kdebase-3.3.0.ebuild stable for ppc
30 Aug 2004; Pieter Van den Abeele <pvdabeel@gentoo.org>
kdebase-3.1.5.ebuild, kdebase-3.2.1.ebuild, kdebase-3.2.3.ebuild:
Masked kdebase-3.2.3.ebuild stable for ppc
30 Aug 2004; Pieter Van den Abeele <pvdabeel@gentoo.org>
kdebase-3.1.5.ebuild, kdebase-3.2.1.ebuild:
Masked kdebase-3.2.1.ebuild stable for ppc
30 Aug 2004; Pieter Van den Abeele <pvdabeel@gentoo.org>
kdebase-3.1.5.ebuild:
Masked kdebase-3.1.5.ebuild stable for ppc
26 Aug 2004; Caleb Tennis <caleb@gentoo.org> kdebase-3.3.0.ebuild,
files/3.3.0-kwinrules-Makefile.am.diff:
Fix parallel make compilation error
23 Aug 2004; psi29a <psi29a@gentoo.org> kdebase-3.3.0.ebuild:
Added to ~mips
22 Aug 2004; Tom Gall <tgall@gentoo.org> kdebase-3.3.0.ebuild:
stable on ppc64, bug #58181
21 Aug 2004; Carsten Lohrke <carlo@gentoo.org> kdebase-3.3.0.ebuild:
sasl.h fix, #60735
19 Aug 2004; Caleb Tennis <caleb@gentoo.org> kdebase-3.3.0_beta2.ebuild,
files/3.3.0/Xsetup, files/3.3.0/backgroundrc, files/3.3.0/kdmrc,
files/3.3.0/startkde-3.3.0-gentoo.diff, files/3.3.0_beta2/Xsetup,
files/3.3.0_beta2/backgroundrc, files/3.3.0_beta2/kdmrc,
files/3.3.0_beta2/startkde-3.3.0_beta2-gentoo.diff:
3.3.0 final
*kdebase-3.3.0_rc2 (10 Aug 2004)
10 Aug 2004; Caleb Tennis <caleb@gentoo.org> kdebase-3.3.0_rc1.ebuild,
kdebase-3.3.0_rc2.ebuild:
add _rc2, remove _rc1
06 Aug 2004; Caleb Tennis <caleb@gentoo.org> kdebase-3.3.0_rc1.ebuild,
files/agent-shutdown.sh, files/agent-startup.sh:
Add agents.sh files to startup and shutdown
*kdebase-3.2.3-r1 (06 Aug 2004)
06 Aug 2004; Caleb Tennis <caleb@gentoo.org> kdebase-3.2.3-r1.ebuild,
files/post-3.2.3-kdebase-htmlframes.patch, files/3.2.3-r1/Xsetup,
files/3.2.3-r1/backgroundrc, files/3.2.3-r1/kdmrc,
files/3.2.3-r1/startkde-3.2.3-r1-gentoo.diff:
Incorporate a security fix
*kdebase-3.3.0_rc1 (06 Aug 2004)
06 Aug 2004; Caleb Tennis <caleb@gentoo.org> kdebase-3.3.0_beta1.ebuild,
kdebase-3.3.0_rc1.ebuild, files/3.3.0_rc1/Xsetup,
files/3.3.0_rc1/backgroundrc, files/3.3.0_rc1/kdmrc,
files/3.3.0_rc1/startkde-3.3.0_rc1-gentoo.diff:
New _rc1, remove _beta1
*kdebase-3.3.0_beta2 (23 Jul 2004)
23 Jul 2004; Caleb Tennis <caleb@gentoo.org> +files/3.3.0_beta2/Xsetup,
+files/3.3.0_beta2/backgroundrc, +files/3.3.0_beta2/kdmrc,
+files/3.3.0_beta2/startkde-3.3.0_beta2-gentoo.diff,
+kdebase-3.3.0_beta2.ebuild:
new beta
*kdebase-3.3.0_beta1 (08 Jul 2004)
08 Jul 2004; Caleb Tennis <caleb@gentoo.org> +files/detectwidget.cpp.diff,
+files/utils.h.diff, -files/3.3.0_alpha1/Xsetup,
-files/3.3.0_alpha1/backgroundrc, -files/3.3.0_alpha1/kdmrc,
-files/3.3.0_alpha1/startkde-3.3.0_alpha1-gentoo.diff,
+files/3.3.0_beta1/Xsetup, +files/3.3.0_beta1/backgroundrc,
+files/3.3.0_beta1/kdmrc,
+files/3.3.0_beta1/startkde-3.3.0_beta1-gentoo.diff,
-kdebase-3.3.0_alpha1.ebuild, +kdebase-3.3.0_beta1.ebuild:
New beta, remove alpha
07 Jul 2004; Bryan ?stergaard <kloeri@gentoo.org> kdebase-3.2.2.ebuild:
Stable on alpha.
*kdebase-3.2.3 (10 Jun 2004)
10 Jun 2004; Caleb Tennis <caleb@gentoo.org> +files/3.2.3/Xsetup,
+files/3.2.3/backgroundrc, +files/3.2.3/kdmrc,
+files/3.2.3/startkde-3.2.3-gentoo.diff, +kdebase-3.2.3.ebuild:
Version bump
03 Jun 2004; Aron Griffis <agriffis@gentoo.org> kdebase-3.2.0.ebuild,
kdebase-3.2.1.ebuild:
Fix use invocation
01 Jun 2004; Travis Tilley <lv@gentoo.org> kdebase-3.2.2.ebuild:
stable on amd64
01 Jun 2004; Travis Tilley <lv@gentoo.org> kdebase-3.2.2.ebuild:
stable on amd64
*kdebase-3.3.0_alpha1 (25 May 2004)
25 May 2004; Caleb Tennis <caleb@gentoo.org> +kdebase-3.3.0_alpha1.ebuild:
3.3alpha1 - hardmasked
23 May 2004; Daniel Ostrow <dostrow@gentoo.org> kdebase-3.2.2.ebuild:
Stable on ppc.
15 May 2004; Jason Wever <weeve@gentoo.org> kdebase-3.2.2.ebuild:
Stable on sparc.
27 Apr 2004; Aron Griffis <agriffis@gentoo.org> kdebase-3.2.0.ebuild,
kdebase-3.2.1.ebuild, kdebase-3.2.2.ebuild:
Add inherit eutils
*kdebase-3.2.2 (24 Apr 2004)
24 Apr 2004; Bret Curtis <psi29a@gentoo.org> kdebase-3.2.2.ebuild:
Added to ~mips
20 Apr 2004; Caleb Tennis <caleb@gentoo.org>
-files/3.0.5b/kdebase-3.0.5b-nspluginviewer-qt31.diff.gz,
-files/3.0.5b/kdebase-3.0.5b-xft2.0-fix.diff,
-files/3.0.5b/kdebase-3.0.5b-xft_h-fix.diff,
-files/3.0.5b/startkde-3.0.5b-gentoo.diff, -kdebase-3.0.5b.ebuild:
Remove old version
19 Apr 2004; Caleb Tennis <caleb@gentoo.org> :
Version bump
17 Apr 2004; Travis Tilley <lv@gentoo.org> kdebase-3.2.1.ebuild:
marked stable on amd64
15 Mar 2004; Jason Wever <weeve@gentoo.org> kdebase-3.2.1.ebuild:
Marked stable on sparc.
15 Mar 2004; Caleb Tennis <caleb@gentoo.org> kdebase-3.2.1.ebuild:
I'm adding a warning so that people who have their sandbox on and have the
PORTAGE_TMPDIR changed will know that this is a known bug.
12 Mar 2004; Caleb Tennis <caleb@gentoo.org> kdebase-3.1.4.ebuild,
kdebase-3.2.0.ebuild, kdebase-3.2.1.ebuild, files/focus-patch.diff,
files/kdebase-3.1.4-amd64-accessviol.patch, files/konq-crash-patch.diff,
files/3.1.4/backgroundrc, files/3.1.4/kdmrc,
files/3.1.4/startkde-3.1.4-gentoo.diff:
x86 stable and version cleanup
*kdebase-3.2.1 (09 Mar 2004)
09 Mar 2004; Caleb Tennis <caleb@gentoo.org> kdebase-3.2.1.ebuild,
files/3.2.1/Xsetup, files/3.2.1/backgroundrc, files/3.2.1/kdmrc,
files/3.2.1/startkde-3.2.1-gentoo.diff:
Version bump
28 Feb 2004; Jason Wever <weeve@gentoo.org> kdebase-3.1.5.ebuild:
Marked stable on sparc.
15 Feb 2004; Jason Wever <weeve@gentoo.org> kdebase-3.2.0.ebuild:
Marked stable on sparc.
10 Feb 2004; Caleb Tennis <caleb@gentoo.org> kdebase-3.2.0.ebuild:
x86 stable
10 Feb 2004; Lars Weiler <pylon@gentoo.org> kdebase-3.2.0.ebuild:
Stable on ppc.
05 Feb 2004; Luca Barbato <lu_zero@gentoo.org> kdebase-3.2.0.ebuild:
Marked ~ppc
03 Feb 2004; Caleb Tennis <caleb@gentoo.org> kdebase-3.2.0.ebuild,
files/kdebase-3.2.0-kcontrol.patch:
Small patch for compilation/installation
*kdebase-3.2.0 (02 Feb 2004)
02 Feb 2004; Caleb Tennis <caleb@gentoo.org> kdebase-3.2.0.ebuild,
kdebase-3.2.0_rc1.ebuild, files/3.2.0/Xsetup, files/3.2.0/backgroundrc,
files/3.2.0/kdmrc, files/3.2.0/startkde-3.2.0-gentoo.diff,
files/3.2.0_rc1/Xsetup, files/3.2.0_rc1/backgroundrc, files/3.2.0_rc1/kdmrc,
files/3.2.0_rc1/startkde-3.2.0_rc1-gentoo.diff:
New version, remove _rc
29 Jan 2004; Aron Griffis <agriffis@gentoo.org> kdebase-3.1.5.ebuild:
stable on alpha and ia64
*kdebase-3.2.0_rc1 (18 Jan 2004)
18 Jan 2004; Caleb Tennis <caleb@gentoo.org> kdebase-3.0.4-r3.ebuild,
kdebase-3.1.2.ebuild, kdebase-3.2.0_beta1-r1.ebuild,
kdebase-3.2.0_beta2.ebuild, kdebase-3.2.0_rc1.ebuild,
files/3.0.4-r3/kdebase-3.0.4-konsole-qt31.diff,
files/3.0.4-r3/kdebase-3.0.4-nspluginviewer-qt31.diff.gz,
files/3.0.4-r3/kdebase-3.0.4-xft1.1-fix.diff,
files/3.0.4-r3/kdebase-3.0.4-xft_h-fix.diff,
files/3.0.4-r3/startkde-3.0.4-r3-gentoo.diff, files/3.1.2/backgroundrc,
files/3.1.2/fontconfig-2.2-support.patch, files/3.1.2/kdmrc,
files/3.1.2/sftp.patch, files/3.1.2/startkde-3.1.2-gentoo.diff,
files/3.2.0_beta1-r1/Xsetup, files/3.2.0_beta1-r1/backgroundrc,
files/3.2.0_beta1-r1/kdmrc,
files/3.2.0_beta1-r1/startkde-3.2.0_beta1-r1-gentoo.diff,
files/3.2.0_rc1/Xsetup, files/3.2.0_rc1/backgroundrc, files/3.2.0_rc1/kdmrc,
files/3.2.0_rc1/startkde-3.2.0_rc1-gentoo.diff:
New version, removing old versions
16 Jan 2004; Martin Guy <gmsoft@gentoo.org> kdebase-3.1.5.ebuild:
Marked stable on hppa.
*kdebase-3.1.5 (14 Jan 2004)
14 Jan 2004; Caleb Tennis <caleb@gentoo.org> kdebase-3.1.5.ebuild,
files/kdebase-3.1.5-amd64-accessviol.patch, files/3.1.5/backgroundrc,
files/3.1.5/kdmrc, files/3.1.5/startkde-3.1.5-gentoo.diff:
New version.
13 Jan 2004; Aron Griffis <agriffis@gentoo.org> kdebase-3.1.4.ebuild:
stable on alpha
11 Jan 2004; Heinrich Wendel <lanius@gentoo.org> kdebase-3.1.2.ebuild,
kdebase-3.1.4.ebuild, kdebase-3.2.0_beta1-r1.ebuild,
kdebase-3.2.0_beta2.ebuild:
fixed motif dep
04 Jan 2004; Jason Wever <weeve@gentoo.org> kdebase-3.2.0_beta2.ebuild:
Added ~sparc keyword.
27 Dec 2003; Caleb Tennis <caleb@gentoo.org> kdebase-3.1.4.ebuild,
kdebase-3.2.0_beta2.ebuild:
minor dep cleanups
24 Dec 2003; Caleb Tennis <caleb@gentoo.org> kdebase-3.1.4.ebuild,
kdebase-3.2.0_beta2.ebuild:
Change java dep to use either jdk or jre - as noted in bug 28445
24 Dec 2003; Caleb Tennis <caleb@gentoo.org> kdebase-3.2.0_beta2.ebuild:
Dependency cleanups.
*kdebase-3.2.0_beta2 (01 Dec 2003)
01 Dec 2003; Caleb Tennis <caleb@gentoo.org> kdebase-3.2.0_alpha2.ebuild,
kdebase-3.2.0_beta1.ebuild, kdebase-3.2.0_beta2.ebuild,
files/3.2.0_alpha2/backgroundrc, files/3.2.0_alpha2/kdmrc,
files/3.2.0_alpha2/startkde-3.2.0_alpha2-gentoo.diff,
files/3.2.0_beta1/backgroundrc, files/3.2.0_beta1/kdmrc,
files/3.2.0_beta1/startkde-3.2.0_beta1-gentoo.diff:
new beta version, remove older versions
20 Nov 2003; Luca Barbato <lu_zero@gentoo.org> kdebase-3.1.4.ebuild:
Marked ppc
20 Nov 2003; Caleb Tennis <caleb@gentoo.org> kdebase-3.2.0_beta1-r1.ebuild,
files/kde-np.pam:
Add new kde-np pam module for autologin. See bug 33690
29 Nov 2003; Brad House <brad_mssw@gentoo.org> kdebase-3.1.4.ebuild:
mark stable on amd64
12 Nov 2003; Caleb Tennis <caleb@gentoo.org> kdebase-3.2.0_beta1-r1.ebuild:
Fix a couple of lines
*kdebase-3.2.0_beta1-r1 (10 Nov 2003)
10 Nov 2003; Caleb Tennis <caleb@gentoo.org> kdebase-3.2.0_beta1-r1.ebuild,
files/3.2.0_beta1-r1/Xsetup, files/3.2.0_beta1-r1/backgroundrc,
files/3.2.0_beta1-r1/kdmrc,
files/3.2.0_beta1-r1/startkde-3.2.0_beta1-r1-gentoo.diff:
Fixes to make kdm better? see bug #32994
*kdebase-3.2.0_beta1 (01 Nov 2003)
01 Nov 2003; Caleb Tennis <caleb@gentoo.org> kdebase-3.2.0_beta1.ebuild,
files/3.2.0_beta1/backgroundrc, files/3.2.0_beta1/kdmrc,
files/3.2.0_beta1/startkde-3.2.0_beta1-gentoo.diff:
New beta version
07 Oct 2003; Brad House <brad_mssw@gentoo.org> kdebase-3.1.4.ebuild,
files/kdebase-3.1.4-amd64-accessviol.patch:
patch to get rid of access violation during install
on amd64. Based on patch from Andrew Johnson <ajohnson@lastaccess.com>
04 Oct 2003; Brad House <brad_mssw@gentoo.org> kdebase-3.1.4.ebuild:
add ~amd64 flag
28 Sep 2003; Caleb Tennis <caleb@gentoo.org> kdebase-3.1.4.ebuild,
files/konq-crash-patch.diff:
patch from kde bug database to fix a konq crash
27 Sep 2003; Caleb Tennis <caleb@gentoo.org> kdebase-2.2.2-r5.ebuild,
kdebase-2.2.2-r5.ebuild, kdebase-3.1.1a.ebuild, kdebase-3.1.1a.ebuild,
kdebase-3.1.3.ebuild, kdebase-3.1.3.ebuild:
removing stale versions
26 Sep 2003; Caleb Tennis <caleb@gentoo.org> kdebase-3.1.4.ebuild,
files/focus-patch.diff:
add a focus patch that fixes bug #29648 - no revision bump
26 Sep 2003; Jason Wever <weeve@gentoo.org> kdebase-3.1.4.ebuild:
Added sparc keyword.
*kdebase-3.2.0_alpha2 (25 Sep 2003)
25 Sep 2003; Caleb Tennis <caleb@gentoo.org> kdebase-3.2.0_alpha1.ebuild,
kdebase-3.2.0_alpha1.ebuild, kdebase-3.2.0_alpha2.ebuild,
files/3.2.0_alpha1/backgroundrc, files/3.2.0_alpha1/kdmrc,
files/3.2.0_alpha1/startkde-3.2.0_alpha1-gentoo.diff:
new alpha version
*kdebase-3.1.4 (25 Sep 2003)
25 Sep 2003; Caleb Tennis <caleb@gentoo.org> kdebase-3.1.4.ebuild:
marking x86 stable
16 Sep 2003; Jason Wever <weeve@gentoo.org> kdebase-3.1.3.ebuild:
Marked stable for sparc.
15 Sep 2003; Caleb Tennis <caleb@gentoo.org> kdebase-3.2.0_alpha1.ebuild:
Fix startkde patch from bug #28642
*kdebase-3.2.0_alpha1 (12 Sep 2003)
12 Sep 2003; Jason Wever <weeve@gentoo.org> kdebase-3.2.0_alpha1.ebuild:
Marking as unusable as not all dependecies are met and hasn't been tested yet.
07 Sep 2003; Caleb Tennis <caleb@gentoo.org> kdebase-3.1.3.ebuild:
x86 stable
08 Aug 2003; Caleb Tennis <caleb@gentoo.org> kdebase-3.1.3.ebuild:
Add a function that scans and replaces instances of "head -1" with "head -n 1"
(in kde-functions.eclass), but this ebuild uses it.
*kdebase-3.1.3 (20 Jul 2003)
20 Jul 2003; Caleb Tennis <caleb@gentoo.org> kdebase-3.1.3.ebuild:
New version.
21 Jun 2003; Caleb Tennis <caleb@gentoo.org>:
Removing old ebuilds: 2.2.2-r4, 3.0.5, 3.0.5-r2, 3.1, 3.1-r1, 3.1.1, 3.1.1-r1
16 Jun 2003; Will Woods <wwoods@gentoo.org> kdebase-3.1.2.ebuild:
Marked stable for alpha
20 May 2003; Jason Wever <weeve@gentoo.org> kdebase-3.1.2.ebuild:
Changed ~sparc keyword to sparc.
*kdebase-3.1.2 (19 May 2003)
19 May 2003; Dan Armak <danarmak@gentoo.org> kdebase-3.1.2.ebuild:
New version of KDE.
16 Mai 2003; Lars Weiler <pylon@gentoo.org> kdebase-3.1.1a.ebuild:
Set ppc in KEYWORDS
28 Apr 2003; Lars Weiler <pylon@gentoo.org> kdebase-3.1.1-r1.ebuild:
Set ppc in KEYWORDS
11 Apr 2003; Dan Armak <danarmak@gentoo.org> kdebase-3.1.1a.ebuild:
Add notice about mtools (bug #4934). See the notice at the end of the ebuild
for more info.
*kdebase-2.2.2-r5 (11 Apr 2003)
11 Apr 2003; Hannes Mehnert <hannes@gentoo.org> kdebase-2.2.2-r5.ebuild,
files/2.2.2-r5/startkde-2.2.2-r5-gentoo:
The same security fixes for 2.2.2.
*kdebase-3.1.1a (08 Apr 2003)
11 Apr 2003; Jason Wever <weeve@gentoo.org> kdebase-3.1.1a.ebuild:
Changed ~sparc keyword to sparc.
08 Apr 2003; Hannes Mehnert <hannes@gentoo.org> kdebase-3.1.1a.ebuild,
files/3.1.1a/*:
The same security fixes for kde 3.1.1.
*kdebase-3.0.5b (08 Apr 2003)
08 Apr 2003; Hannes Mehnert <hannes@gentoo.org> kdebase-3.0.5b.ebuild,
files/3.0.5b/kdebase-3.0.5b-xft2.0-fix.diff,
files/3.0.5b/kdebase-3.0.5b-xft_h-fix.diff,
files/3.0.5b/startkde-3.0.5b-gentoo.diff:
A security patch release fixing a kghostview vulnerability. See GLSA.
Also includes misc other fixes.
01 Apr 2003; danrmaak <danarmak@gentoo.org> kdebase-3.1.1-r1.ebuild:
Added stable x86 keyword.
*kdebase-3.1.1-r1 (22 Mar 2003)
22 Mar 2003; Dan Armak <danarmak@gentoo.org> kdebase-3.1.1-r1.ebuild, files/3.1.1-r1/*:
Added two patches from kde cvs which fix two issues with QT 3.1.2.
See http://www.kde.org/info/3.1.1.php for info on the patches.
21 Mar 2003; Hannes Mehnert <hannes@gentoo.org> kdebase-3.0.4-r3.ebuild,
kdebase-3.0.5a.ebuild, kdebase-3.0.5a-r2.ebuild, kdebase-3.1.ebuild,
kdebase-3.1-r1.ebuild, kdebase-3.1.1.ebuild:
added sys-apps/eject to RDEPEND, thanks to bsolar <bsolar@bluewin.ch>
(bug #17577)
18 Mar 2003; Dan Armak <danarmak@gentoo.org> kdebase-3.1-r1.ebuild:
Fix bug #17429 by accepting kdelibs 3.1-r3.
*kdebase-3.1.1 (14 Mar 2003)
19 Mar 2003; Jason Wever <weeve@gentoo.org> kdebase-3.1.1.ebuild:
Changed ~sparc keyword to sparc.
14 Mar 2003; Hannes Mehnert <hannes@gentoo.org> kdebase-3.1.1.ebuild,
files/3.1.1/backgroundrc, files/3.1.1/kdmrc,
files/3.1.1/startkde-3.1.1-gentoo.diff:
version bump
08 Mar 2003; Jason Wever <weeve@gentoo.org> kdebase-3.0.5a-r2.ebuild,kdebase-3.1-r1.ebuild:
Changed ~sparc keywords to sparc.
15 Feb 2003; Jason Wever <weeve@gentoo.org> kdebase-3.1-r1.ebuild:
Added ~sparc to keywords.
15 Feb 2003; Jason Wever <weeve@gentoo.org> kdebase-3.1.ebuild:
Changed ~sparc keyword to sparc.
28 Feb 2003; Will Woods <wwoods@gentoo.org> kdebase-3.1-r1.ebuild:
Added ~alpha keyword
12 Feb 2003; Hannes Mehnert <hannes@gentoo.org> kdebase-2.2.2-r3.ebuild,
kdebase-3.0.2.ebuild, kdebase-3.0.3.ebuild, kdebase-3.0.3-r1.ebuild,
kdebase-3.0.4.ebuild, kdebase-3.0.4-r2.ebuild, kdebase-3.0.5a-r1.ebuild,
kdebase-3.1-r1.ebuild: removed old ebuilds
06 Feb 2003; Hannes Mehnert <hannes@gentoo.org> kdebase-3.1-r1.ebuild:
added upstream patch for bug #15198 (kpager doesn't compile)
05 Feb 2003; Hannes Mehnert <hannes@gentoo.org> kdebase-3.1-r1.ebuild:
changed dep on motif to virtual/motif (lesstif also works), changed dep
to kdelibs-3.1-r2 (closes bug #15182, thanks to throstur@bylur.net)
01 Feb 2003; Jack Morgan <jmorgan@gentoo.org> kdebase-3.1.ebuild:
added ~sparc to keywords
31 Jan 2003; Dan Armak <danarmak@gentoo.org> kdebase-3.0.5a-r2.ebuild :
Fix bug #12705: add missing Xreset, Xstartup, Xsetup files to the kdm
config dir.
30 Jan 2003; Dan Armak <danarmak@gentoo.org> ChangeLog :
Change ebuilds to use kde_src_unpack() instead of base_src_unpack(). This
does not affect in any way the compiled output, or any ebuild not suffering
rfom the 'languageChange undeclared' bug, which it fixes.
*kdebase-3.1-r1, 3.0.5a-r2 (28 Jan 2003)
28 Jan 2003; Dan Armak <danarmak@gentoo.org> ChangeLog :
New revisions to fix bug #7179. This part of the fix removes the hardcoded
KDEDIRS setting from startkde, allowing the env.d files from kde-env to
set it. This is a bug/fix almost noone cares about, so no need to upgrade
unless you know what this is. Masked at first for initial testing.
27 Jan 2003; Dan Armak <danarmak@gentoo.org> files/3.1/startkde-3.1-gentoo.diff :
Change mv, ls, cp, mkdir invocations to /bin/mv, /bin/cp etc. avoiding
problems in cases where the user has redefined 'mv' (via alias) in his
shell. Fixes bug #12475.
*kdebase-2.2.2-r4 (17 Jan 2003)
17 Jan 2003; Hannes Mehnert <hannes@gentoo.org> kdebase-2.2.2-r4.ebuild:
new version, fixes #12520
08 Jan 2003; Mark Guertin <gerk@gentoo.org> kde-3.1_rc6.ebuild:
added ~ppc to keywords
*kdebase-3.1_rc6 (05 Jan 2003)
05 Jan 2003; Hannes Mehnert <hannes@gentoo.org> kdebase-3.1_rc6.ebuild:
version bump
25 Dec 2002; Martin Schlemmer <azarah@gentoo.org> kdebase-3.0.5a-r1.ebuild :
Fix sandbox issue ... Get rid of kdmrc.orig.
25 Dec 2002; Martin Schlemmer <azarah@gentoo.org> kdebase-3.0.5a-xft2.0-fix.diff :
Fix segfault if compiled agaist Xft2, and the user clicked on:
System->Font Installer->Anti-Alias->Advanced
25 Dec 2002; Martin Schlemmer <azarah@gentoo.org> kscreensaver.pam :
Fix kscreensaver's pam.d file to use pam_stack.so again (bug #12596).
*kdebase-3.0.5a-r1 (24 Dec 2002)
06 Jan 2003; Jason Wever <weeve@gentoo.org> kdebase-3.0.5a-r1.ebuild:
Added ~sparc keyword
24 Dec 2002; Martin Schlemmer <azarah@gentoo.org> kdebase-3.0.5a-r1.ebuild,
kdebase-3.0.5a-xft2.0-fix.diff :
Patch kdebase-3.0.5a to compile with Xft2.0 installed. Also add a function to
detect if we have Xft1 or Xft2 installed, and against what QT was compiled.
The System->Font Installer->Anti-Alias->Advanced do crash though, will see if
I can get this fixed. This should close bug #9423 again.
*kdebase-3.0.5a (21 Dec 2002)
06 Jan 2003; Jason Wever <weeve@gentoo.org> kdebase-3.0.5a.ebuild:
Added ~sparc keyword
21 Dec 2002; Hannes Mehnert <hannes@gentoo.org> kdebase-3.0.5a.ebuild:
version bump
08 Dec 2002; Jack Morgan <jmorgan@gentoo.org> kdebase-3.1_rc5.ebuild :
Added sparc keyword
06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
04 Dec 2002; Olivier Reisch <doctomoe@gentoo.org> kdebase-3.1.ebuild:
Added ppc keyword
26 Nov 2002; Hannes Mehnert <hannes@gentoo.org> kdebase-3.1.ebuild:
added java use flag to IUSE, depend and myconf
*kdebase-3.0.4-r3 (22 Nov 2002)
22 Nov 2002; Hannes Mehnert <hannes@gentoo.org> kdebase-3.0.4-r3.ebuild:
added fix for konsole crashing when using qt-3.1 (bug #10978 and #10796)
*kdebase-3.1_rc3 (12 Nov 2002)
12 Nov 2002; Hannes Mehnert <hannes@gentoo.org> ChangeLog:
kde-3.1_rc3
11 Nov 2002; Hannes Mehnert <hannes@gentoo.org> ChangeLog:
the path to startkde-patch was wrong in kdebase-3.0.4-r2, changed this.
Thanks to suka_at@yahoo.de (suka) for submission (bug #10541)
*kdebase-3.1_rc2-r1 (10 Nov 2002)
10 Nov 2002; Dan Armak <danarmak@gentoo.org> ChangeLog :
This new revision has a static kdmrc file that enables several faetures
not pesent in the default one we had before. Among them are antialiasing
being turned on by default and making kdm use the scripts in /etc/X11/xdm.
*kdebase-3.1_rc2 (04 Nov 2002)
04 Nov 2002; Hannes Mehnert <hannes@gentoo.org> ChangeLog:
kde-3.1_rc2
04 Nov 2002; Mark Guertin <gerk@gentoo.org> kdebase-2.0.4-r2.ebuild :
My bad, set back as ppc (xfree-4.2.1 is upgraded already)
04 Nov 2002; Mark Guertin <gerk@gentoo.org> kdebase-2.0.4-r2.ebuild :
set ~ppc in keywords, this is not required (yet) on ppc until xfree-4.2.1
is set to stable, no sense making users upgrade
04 Nov 2002; Hannes Mehnert <hannes@gentoo.org> kdebase-3.0.4-r2.ebuild:
uses kdebase-3.0.4-nspluginviewer-qt31.diff.gz by default. This fixes
#10062
*kdebase-3.0.4-r1 (29 Oct 2002)
29 Oct 2002; Dan Armak <danarmak@gentoo.org> ChangeLog :
A new version that adds a patch described in comment #20 of bug #9423
(kfontinst not compiling with xfree 4.2.1) in an attempt to fix that bug.
*kdebase-3.0.4 (09 Oct 2002)
09 Oct 2002; Dan Armak <danarmak@gentoo.org> ChangeLog :
KDE 3.0.4, the latest bugfix release. This incorporates all the fixes from
kdebase-3.0.3-r1, which wasn't unmasked.
05 Oct 2002; Dan Armak <danarmak@gentoo.org> ChangeLog :
Make the default kdmrc use /etc/X11/xdm/Xsetup_0. It was using the
genkdmconf-generated Xsetup, which didn't know about our /etc/X11/Sessions
files.
*kdebase-3.0.3-r1 (01 Oct 2002)
01 Oct 2002; Dan Armak <danarmak@gentoo.org> ChangeLog :
Fix bug #6519 (ksplash-ml installation problems). See the bugzilla page for
full info. Briefly, you can set $KSPLASH in your profile to the full path
of a ksplash-replacement binary of your choice. By default, ksplash-ml
is used if installed (actually it sets $KSPLASH in env.d), otherwise the
default kde ksplash. You will need the latest revision of ksplash-ml and
ksplash-ml-themes as well. All this is masked for now.
Also fix the remaining part of bug #5953 - use a new and better kde.pam
file. See the bugzilla page for details.
29 Aug 2002; Martin Schlemmer <azarah@gentoo.org> kscreensaver.pam :
Update to use system-auth. Bug #5953.
29 Aug 2002; Dan Armak <danarmak@gentoo.org> ChangeLog :
Fix the sed on kdmrc so that it expands kde- into e.g. kde-3.0.3, and
desn't add a literal '' to the session list.
23 Aug 2002; Dan Armak <danarmak@gentoo.org> ChangeLog :
Remove patch that was included in the mainline sources for 3.0.3.
*kdebase-3.0.3 (19 Aug 2002)
19 Aug 2002; Dan Armak <danarmak@gentoo.org> ChangeLog :
New bugfix release. Enjoy!
13 Aug 2002; Dan Armak <danarmak@gentoo.org> ChangeLog :
Add explicit >=media-libs/freetype-2 dep until I can figure out the issue
more fully. HTH, it certainly can't do harm.
27 Jul 2002; Dan Armak <danarmak@gentoo.org> ChangeLog :
Fix bug #3594: remove optimization flag -fomit-frame-pointer from the
kdm/kfrontend subdirectory's makefiles.
*kdebase-3.0.2 (03 Jul 2002)
01 Aug 2002; Mark Guertin <gerk@gentoo.org> kde-3.0.2.ebuild :
Added ppc to keywords
03 Jul 2002; Dan Armak <danarmak@gentoo.org> ChangeLog : : : : :
New stability release.
10 Jun 2002; Dan Armak <danarmak@gentoo.org> changelog:
Fix the startkde patch to be correct for the global case of any $KDEDIR.
*kdebase-3.0.1.20020604 (4 Jun 2002)
4 Jun 2002; Dan Armak <danarmak@gentoo.org> Changelog :
This is a snapshot of the KDE CVS's KDE_3_0_x branch from June 6th.
This branch contains only bugfixes to the 3.0 release (the 3.0.1 release
was also of this kind).
*kdebase-3.0.1 (24 May 2002)
24 May 2002; Dan Armak <danarmak@gentoo.org> Changelog :
Bugfix release (KDE 3.0.1). Ebuild cleanup. Add dep on samba, conditional
on samba use flag.
14 May 2002; Bart Verwilst <verwilst@gentoo.org> Changelog:
Create a backup copy of the default splashscreen images so that they can be
put back after merging and unmerging e.g. mosfet (which overwrite them).
(Logged by Dan Armak)
5 May 2002; Dan Armak <danarmak@gentoo.org> changelog:
Don't abort when creating the emptydir if it already exists; use mkdir -p.
*kdebase-3.0-r3 (4 May 2002)
4 May 2002; Dan Armak <danarmak@gentoo.org> Changelog :
Fix bug #1978 ($KDEDIR/share/templates/.soure/emptydir disappearing on remerge).
*kdebase-3.0-r2 (30 Apr 2002)
30 Apr 2002; Dan Armak <danarmak@gentoo.org> Changelog :
Fix bug #2093 (files being installed into /var/tmp).
13 Apr 2002; Bart Verwilst <verwilst@gentoo.org>: Ok, just copied the
icons inside the pics dir to the /usr/share/pixmaps first :o) you never
know somebody _might_ add some more icons over time..
13 Apr 2002; Bart Verwilst <verwilst@gentoo.org>: Make sure the gnome
icons are visible when choosing a new icon (under 'other icons'),
instead of 3 ugly kde-icons. I won't change the revision for something
as trivial as this though :o)
13 Apr 2002; Dan Armak <danarmak@gentoo.org>: add KDEDIRS to the 2.x
startkde as well (new revision 2.2.2-r3).
12 Apr 2002; Seemant Kulleen <seemant@gentoo.org> kdebase-3.0-r1.ebuild
kdebase-3.0.ebuild kdebase-2.2.2-r2.ebuild :
Changed the vorbis USE flag to oggvorbis.
*kdebase-3.0-r1 (9 Apr 2002)
9 Apr 2002; Dan Armak <danarmak@gentoo.org> Changelog :
Added KDEDIRS and KDEMAINDIR variables to startkde. Hope it helps some people.
*kdebase-3.0 (4 Apr 2002)
4 Apr 2002; Dan Armak <danarmak@gentoo.org> Changelog :
KDE 3.0 ebuilds. Based on the well-tested kde3pre ebuild set.
16 Mar 2002; Dan Armak <danarmak@gentoo.org> changelog:
Made sure that $KDEDIR/share/templates/.source/emptydir gets installed,
and isn't ever unmerged, and is really empty. Closes bug #846.
10 Mar 2002; Dan Armak <danarmak@gentoo.org> changelog:
Added missing media-libs/lcms dep as notified on gentoo-dev.
*kdebase-2.2.2-r2 (1 Feb 2002)
2 Mar 2002; Dan Armak <danarmak@gentoo.org> changelog:
Fixed bug #846, which prevented the /usr/kde/2/share/templates/.source/emptydir
directory from bein merged. This directory is needed for konqueror's New Directory
command.
1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
Added initial ChangeLog which should be updated whenever the package is
updated in any way. This changelog is targetted to users. This means that the
comments should well explained and written in clean English. The details about
writing correct changelogs are explained in the skel.ChangeLog file which you
can find in the root directory of the portage repository.
|