summaryrefslogtreecommitdiff
blob: 0bd470e8e69f0c04d1e911ef83958c68fe6b4c0b (plain)
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
# ChangeLog for kde-base/arts
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/arts/ChangeLog,v 1.252 2007/05/22 20:19:45 carlo Exp $

  22 May 2007; Carsten Lohrke <carlo@gentoo.org>
  +files/arts-1.5.5-gcc4.3-build-fix.diff, arts-3.5.5.ebuild:
  Apply trivial GCC 4.3 build fix, instead bumping to 3.5.7.

  21 Feb 2007; Simon Stelling <blubb@gentoo.org>
  files/arts-1.5.4-multilib.patch, arts-3.5.5.ebuild:
  emul-libs are no longer installed to /emul/linux/x86/

  05 Feb 2007; Diego Pettenò <flameeyes@gentoo.org>
  -files/1.3.0-jack-configure.in.in.patch, -files/arts-1.2.x.diff,
  -files/arts-1.3.2-alsa-bigendian.patch, -files/arts-1.4-mcopidl.patch,
  -files/arts-3.4.1-configure.patch, -files/arts-3.4.1-cpu-overload.patch:
  Remove unneeded patches.

  04 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> -arts-3.5.2-r1.ebuild:
  Remove old versions.

  18 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> -arts-3.5.6.ebuild:
  Remove arts 3.5.6, as it's just the same as 3.5.5 beside the version number
  change.

*arts-3.5.6 (18 Jan 2007)

  18 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> +arts-3.5.6.ebuild:
  Re-try committing this.

  05 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> arts-3.5.2-r1.ebuild,
  arts-3.5.5.ebuild:
  Convert to use elog.

  11 Dec 2006; <kloeri@gentoo.org> arts-3.5.5.ebuild:
  Stable on ia64.

  06 Dec 2006; <kloeri@gentoo.org> ChangeLog:
  Stable on Alpha.

  06 Dec 2006; <kloeri@gentoo.org> arts-3.5.5.ebuild:
  Stable on Alpha.

  26 Nov 2006; Markus Rothe <corsair@gentoo.org> arts-3.5.5.ebuild:
  Stable on ppc64

  23 Nov 2006; Guy Martin <gmsoft@gentoo.org> arts-3.5.5.ebuild:
  Stable on hppa.

  18 Nov 2006; Diego Pettenò <flameeyes@gentoo.org> -arts-3.5.3-r1.ebuild,
  -arts-3.5.4.ebuild, -arts-3.5.4-r1.ebuild:
  Remove old versions.

  16 Nov 2006; Joseph Jezak <josejx@gentoo.org> arts-3.5.5.ebuild:
  Marked ppc stable for bug #147570.

  14 Nov 2006; Gustavo Zacarias <gustavoz@gentoo.org> arts-3.5.5.ebuild:
  Stable on sparc wrt #147570

  13 Nov 2006; Danny van Dyk <kugelfang@gentoo.org> arts-3.5.5.ebuild:
  Marked stable on amd64 wrt bug #147570.

  13 Nov 2006; Christian Faulhammer <opfer@gentoo.org> arts-3.5.5.ebuild:
  "Stable x86, bug #147570"

*arts-3.5.5 (03 Oct 2006)

  03 Oct 2006; Diego Pettenò <flameeyes@gentoo.org> +arts-3.5.5.ebuild:
  Bump to 3.5.5 (pre-release).

  17 Sep 2006; Carsten Lohrke <carlo@gentoo.org> -arts-3.4.3.ebuild,
  -arts-3.4.3-r1.ebuild:
  Drop KDE 3.4.

  03 Sep 2006; Bryan Østergaard <kloeri@gentoo.org> arts-3.5.2-r1.ebuild:
  Stable on ia64.

*arts-3.5.4-r1 (23 Aug 2006)

  23 Aug 2006; Carsten Lohrke <carlo@gentoo.org>
  +files/arts-1.5.4-multilib.patch, +arts-3.5.4-r1.ebuild:
  Fix bugs #104174 and #144243.

  02 Aug 2006; Diego Pettenò <flameeyes@gentoo.org> arts-3.5.4.ebuild:
  Remove configure file to force regeneration of autotools, and fix quoting.

  28 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> arts-3.5.4.ebuild:
  Use versionator to make the actual version dynamic, so that I won't forget
  about this in the next bump.

  25 Jul 2006; Diego Pettenò <flameeyes@gentoo.org>
  -files/arts-1.3.2-mcopidl.patch, -arts-1.3.2.ebuild,
  -arts-1.3.2-r1.ebuild:
  Drop old arts.

*arts-3.5.4 (25 Jul 2006)

  25 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> +arts-3.5.4.ebuild:
  Bump to 3.5.4 (pre-release).

  15 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> -arts-3.5.2.ebuild,
  -arts-3.5.3.ebuild:
  Remove old vulnerable versions as per bug #140502.

  17 Jun 2006; Carsten Lohrke <carlo@gentoo.org> arts-3.4.3-r1.ebuild,
  arts-3.5.2-r1.ebuild:
  Stable on x86.

  17 Jun 2006; Rene Nussbaumer <killerfox@gentoo.org> arts-3.4.3-r1.ebuild,
  arts-3.5.2-r1.ebuild:
  Stable on hppa. See bug #135970.

  15 Jun 2006; Thomas Cort <tcort@gentoo.org> arts-3.4.3-r1.ebuild,
  arts-3.5.2-r1.ebuild:
  Stable on alpha and amd64 wrt security Bug #135970.

  14 Jun 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  arts-3.4.3-r1.ebuild:
  ppc stable

  14 Jun 2006; Jason Wever <weeve@gentoo.org> arts-3.4.3-r1.ebuild,
  arts-3.5.2-r1.ebuild:
  Stable on SPARC wrt security bug #135970.

  14 Jun 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  arts-3.5.2-r1.ebuild:
  ppc stable

  12 Jun 2006; Markus Rothe <corsair@gentoo.org> arts-3.4.3-r1.ebuild,
  arts-3.5.2-r1.ebuild:
  Stable on ppc64

*arts-3.5.3-r1 (11 Jun 2006)
*arts-3.5.2-r1 (11 Jun 2006)
*arts-3.4.3-r1 (11 Jun 2006)

  11 Jun 2006; Carsten Lohrke <carlo@gentoo.org> +files/arts-1.2.x.diff,
  +arts-3.4.3-r1.ebuild, +arts-3.5.2-r1.ebuild, +arts-3.5.3-r1.ebuild:
  Fix for bug #135970.

  03 Jun 2006; Guy Martin <gmsoft@gentoo.org> arts-3.5.2.ebuild:
  Stable on hppa.

  01 Jun 2006; Thomas Cort <tcort@gentoo.org> arts-3.5.2.ebuild:
  Stable on alpha wrt Bug #132213.

  01 Jun 2006; Diego Pettenò <flameeyes@gentoo.org> arts-3.5.3.ebuild:
  Use the right PN.

*arts-3.5.3 (01 Jun 2006)

  01 Jun 2006; Diego Pettenò <flameeyes@gentoo.org> +arts-3.5.3.ebuild:
  Add aRTs 3.5.3 (to avoid block development of monolithic ebuilds).

  30 May 2006; Joseph Jezak <josejx@gentoo.org> arts-3.5.2.ebuild:
  Marked ppc stable for bug #132213.

  29 May 2006; Jason Wever <weeve@gentoo.org> arts-3.5.2.ebuild:
  Stable on SPARC wrt bug #132213.

  29 May 2006; Diego Pettenò <flameeyes@gentoo.org> -arts-3.4.1-r2.ebuild,
  -arts-3.4.2.ebuild:
  Drop old versions.

  26 May 2006; Markus Rothe <corsair@gentoo.org> arts-3.5.2.ebuild:
  Stable on ppc64

  26 May 2006; Chris Gianelloni <wolf31o2@gentoo.org> arts-3.5.2.ebuild:
  Stable on amd64 wrt bug #132213

  25 May 2006; Chris Gianelloni <wolf31o2@gentoo.org> arts-3.5.2.ebuild:
  Stable on x86 wrt bug #132213

  10 May 2006; Caleb Tennis <caleb@gentoo.org> arts-3.4.3.ebuild,
  arts-3.5.2.ebuild:
  Arts test fails, so just don't run them

  06 May 2006; Diego Pettenò <flameeyes@gentoo.org> arts-3.5.2.ebuild:
  Add ~x86-fbsd keyword.

  05 Apr 2006; Diego Pettenò <flameeyes@gentoo.org> -arts-3.5.0.ebuild,
  -arts-3.5.0-r1.ebuild, -arts-3.5.1.ebuild:
  Removed old 3.5.0/3.5.1 packages.

  23 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> arts-3.5.2.ebuild:
  Fix MY_PV to 1.5.2 instead of 1.5.1.

*arts-3.5.2 (22 Mar 2006)

  22 Mar 2006; Dan Armak <danarmak@gentoo.org> +arts-3.5.2.ebuild:
  KDE 3.5.2. Not yet released upstream, and so package.masked for now.

  07 Feb 2006; Aron Griffis <agriffis@gentoo.org> arts-3.4.3.ebuild:
  Mark 3.4.3 stable on ia64

  01 Feb 2006; Carsten Lohrke <carlo@gentoo.org> arts-3.5.1.ebuild:
  Correct SRC_URI.

*arts-3.5.1 (23 Jan 2006)

  23 Jan 2006; Dan Armak <danarmak@gentoo.org> +arts-3.5.1.ebuild:
  Version 3.5.1. Not yet released upstream, so package.masked for now.

*arts-3.5.1 (22 Jan 2006)

  22 Jan 2006; Dan Armak <danarmak@gentoo.org> +arts-3.5.1.ebuild:
  Version 3.5.1. Not yet released upstream, so package.masked for now.

  04 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org> arts-3.5.0.ebuild,
  arts-3.5.0-r1.ebuild:
  sparc fix, otherwise sound doesn't work right

*arts-3.5.0-r1 (21 Dec 2005)

  21 Dec 2005; Diego Pettenò <flameeyes@gentoo.org>
  +files/arts-1.5.0-check_tmp_dir.patch, +arts-3.5.0-r1.ebuild:
  Add fedora patch to fix libao crashes, see bug #116290.

  10 Dec 2005; Bryan Østergaard <kloeri@gentoo.org arts-3.4.3.ebuild:
  Stable on alpha, bug 112842.

  10 Dec 2005; Chris White <chriswhite@gentoo.org> arts-3.4.3.ebuild:
  Marked x86 stable for bug #112842.

  09 Dec 2005; Diego Pettenò <flameeyes@gentoo.org>
  +files/arts-1.5.0-bindnow.patch, arts-3.5.0.ebuild:
  Add patch (and export) to make use of non-lazy bindings on artswrapper as
  that can be marked setuid, see bug #113934. Also use test-flags instead of
  test_flag as this one is deprecated.

  06 Dec 2005; Joseph Jezak <josejx@gentoo.org> arts-3.4.3.ebuild:
  Marked ppc stable for bug #112842.

  29 Nov 2005; Gregorio Guidi <greg_g@gentoo.org> arts-1.3.2.ebuild,
  arts-1.3.2-r1.ebuild:
  Change oggvorbis flag into vorbis (#94254).

  27 Nov 2005; Guy Martin <gmsoft@gentoo.org> arts-3.4.3.ebuild:
  Stable on hppa.

  24 Nov 2005; Marcus D. Hanwell <cryos@gentoo.org> arts-3.4.3.ebuild:
  Stable on amd64, bug 112842.

  24 Nov 2005; Markus Rothe <corsair@gentoo.org> arts-3.4.3.ebuild:
  Stable on ppc64

*arts-3.5.0 (22 Nov 2005)

  22 Nov 2005; Dan Armak <danarmak@gentoo.org> +arts-3.5.0.ebuild:
  Ebuilds for KDE 3.5.0 final. It is not yet released, and is package.masked.

  21 Nov 2005; Gustavo Zacarias <gustavoz@gentoo.org> arts-3.4.3.ebuild:
  Stable on sparc wrt #112842

  13 Nov 2005; Diego Pettenò <flameeyes@gentoo.org> arts-3.5.0_rc1.ebuild:
  Use an alternative to alsa-1.4-mcopidl, testing the flags supported for
  disabling stack protector. This allows to build arts with vanilla GCC and
  GCC 4.1 (and non-GCC too, probably).

*arts-3.5.0_rc1 (12 Nov 2005)

  12 Nov 2005; Dan Armak <danarmak@gentoo.org> +arts-3.5.0_rc1.ebuild:
  Ebuild for new version 3.5.0_rc1.

*arts-3.5.0_beta2 (14 Oct 2005)

  14 Oct 2005; Dan Armak <danarmak@gentoo.org> +arts-3.5.0_beta2.ebuild:
  New version.

*arts-3.4.3 (13 Oct 2005)

  13 Oct 2005; Dan Armak <danarmak@gentoo.org> +arts-3.4.3.ebuild:
  New version.

*arts-3.4.3 (12 Oct 2005)

  12 Oct 2005; Gregorio Guidi <greg_g@gentoo.org> +arts-3.4.3.ebuild:
  New version.

*arts-3.5_beta1-r1 (25 Sep 2005)

  25 Sep 2005; Diego Pettenò <flameeyes@gentoo.org> -arts-3.5_beta1.ebuild,
  +arts-3.5_beta1-r1.ebuild:
  Make patches non-conditional, drop hardened useflag. Revbump to force
  rebuilding this without visibility enabled, or it crashes badly when using
  qt 3.3.5.

*arts-3.5_beta1 (21 Sep 2005)

  21 Sep 2005; Gregorio Guidi <greg_g@gentoo.org> +arts-3.5_beta1.ebuild:
  New version.

  18 Sep 2005; Caleb Tennis <caleb@gentoo.org> arts-3.4.1-r2.ebuild,
  arts-3.4.2.ebuild, arts-3.5_alpha1.ebuild:
  Change jack dep to >= 0.90

  11 Sep 2005; Aron Griffis <agriffis@gentoo.org> arts-3.4.1-r2.ebuild:
  Mark 3.4.1-r2 stable on alpha

  23 Aug 2005; Aron Griffis <agriffis@gentoo.org> arts-3.4.1-r2.ebuild:
  stable on ia64

*arts-3.5_alpha1 (24 Aug 2005)

  24 Aug 2005; Gregorio Guidi <greg_g@gentoo.org> +arts-3.5_alpha1.ebuild:
  KDE 3.5 prerelease.

  29 Jul 2005; Dan Armak <danarmak@gentoo.org> arts-3.4.2.ebuild:
  Apply the cpu overload patch in 3.4.2 too.

*arts-3.4.2 (28 Jul 2005)

  28 Jul 2005; Gregorio Guidi <greg_g@gentoo.org> +arts-3.4.2.ebuild:
  New version. Add support for nas (#97030).

  25 Jul 2005; Guy Martin <gmsoft@gentoo.org> arts-3.4.1-r2.ebuild:
  Stable on hppa.

  25 Jul 2005; Caleb Tennis <caleb@gentoo.org> arts-1.2.3.ebuild,
  arts-1.3.2.ebuild, arts-1.3.2-r1.ebuild, arts-3.4.0.ebuild,
  arts-3.4.1.ebuild, arts-3.4.1-r1.ebuild, arts-3.4.1-r2.ebuild:
  Change qt dep per bug #100235

  08 Jul 2005; Jason Wever <weeve@gentoo.org> arts-3.4.1-r2.ebuild:
  Stable on SPARC.

  04 Jul 2005; Bryan Østergaard <kloeri@gentoo.org> arts-3.4.1-r2.ebuild:
  Add ~alpha keyword.

  01 Jul 2005; Markus Rothe <corsair@gentoo.org> arts-3.4.1.ebuild,
  arts-3.4.1-r1.ebuild, arts-3.4.1-r2.ebuild:
  3.4.1-r2 stable on ppc64; removed dublicate keywords.. however they got in
  there..

  01 Jul 2005; Lars Weiler <pylon@gentoo.org> arts-3.4.1-r2.ebuild:
  Stable on ppc; Bug #97544.

  01 Jul 2005; Markus Rothe <corsair@gentoo.org> arts-3.4.1-r1.ebuild:
  Stable on ppc64 (bug #97544)

  01 Jul 2005; Joseph Jezak <josejx@gentoo.org> arts-3.4.1.ebuild,
  arts-3.4.1-r1.ebuild:
  Marked ppc stable for bug #97544.

  12 Jun 2005; Bryan Østergaard <kloeri@gentoo.org> arts-1.3.2-r1.ebuild:
  Stable on alpha.

*arts-3.4.1-r2 (08 Jun 2005)

  08 Jun 2005; Gregorio Guidi <greg_g@gentoo.org>
  +files/arts-3.4.1-cpu-overload.patch, +arts-3.4.1-r2.ebuild:
  Add patch to fix amd64 cpu overload (#95356).

*arts-3.4.1-r1 (07 Jun 2005)

  07 Jun 2005; Gregorio Guidi <greg_g@gentoo.org>
  +files/arts-3.4.1-configure.patch, +arts-3.4.1-r1.ebuild:
  Add patch to properly respect USE flags (#81966, #74121). Better support for
  amd64 multilib (#94872).

  26 May 2005; Gregorio Guidi <greg_g@gentoo.org> arts-3.4.1.ebuild:
  Change flag 'oggvorbis' into 'vorbis' (#89592), 'mad' into 'mp3' (#94045).

*arts-3.4.1 (25 May 2005)

  25 May 2005; Dan Armak <danarmak@gentoo.org> +arts-3.4.1.ebuild:
  Ebuilds for KDE 3.4.1. These are package.masked until 3.4.1 is actually
  released. You can't get the tarballs yet.

  19 May 2005; Guy Martin <gmsoft@gentoo.org> arts-1.3.2-r1.ebuild:
  Stable on hppa.

  09 May 2005; Aron Griffis <agriffis@gentoo.org> arts-3.4.0.ebuild:
  add ~ia64

  27 Apr 2005; Markus Rothe <corsair@gentoo.org> arts-3.4.0.ebuild:
  Added ~ppc64 to KEYWORDS

  21 Apr 2005; Michael Hanselmann <hansmi@gentoo.org> arts-1.3.2-r1.ebuild:
  Stable on ppc.

  08 Apr 2005; Markus Rothe <corsair@gentoo.org> arts-1.3.2-r1.ebuild:
  Stable on ppc64

  07 Apr 2005; Simon Stelling <blubb@gentoo.org> arts-1.3.2-r1.ebuild:
  stable on amd64

  26 Mar 2005; Jason Wever <weeve@gentoo.org> arts-1.3.2-r1.ebuild:
  Stable on SPARC.

  25 Mar 2005; Gregorio Guidi <greg_g@gentoo.org> arts-1.3.2-r1.ebuild:
  Stable on x86.

  18 Mar 2005; Daniel Goller <morfic@gentoo.org> arts-3.4.0.ebuild:
  Added to ~ppc

  15 Mar 2005; Jason Wever <weeve@gentoo.org> arts-3.4.0.ebuild:
  Added ~sparc keyword as it was mistakenly dropped in the version bump.

  13 Mar 2005; Marcus D. Hanwell <cryos@gentoo.org> arts-3.4.0.ebuild:
  Marked ~amd64, keywording KDE split ebuilds, bug 80944.

  13 Mar 2005; Dan Armak <danarmak@gentoo.org> arts-3.4.0.ebuild:
  KDE 3.4.0 ebuilds. Note that the tarballs won't be officially released for a
  few more days.

  02 Mar 2005; Marcus D. Hanwell <cryos@gentoo.org> arts-3.4.0_rc1.ebuild:
  Marked ~amd64.

  27 Feb 2005; Dan Armak <danarmak@gentoo.org> :
  Ebuild for 3.4.0 RC1.

  27 Feb 2005; Jason Wever <weeve@gentoo.org> arts-3.4.0_rc1.ebuild:
  Added ~sparc keyword as it was dropped in the version bump.

*arts-3.4.0_rc1 (26 Feb 2005)

  26 Feb 2005; Dan Armak <danarmak@gentoo.org> +arts-3.4.0_rc1.ebuild:
  Arts 3.4.0_rc1 (not yet released, and masked).

  15 Feb 2005; Jason Wever <weeve@gentoo.org> arts-3.4.0_beta2.ebuild:
  Added ~sparc keyword.

  08 Feb 2005; Gregorio Guidi <greg_g@gentoo.org>
  -files/arts-1.2.2-buffer.patch, -arts-1.2.0.ebuild, -arts-1.2.2.ebuild,
  arts-1.2.3.ebuild, -arts-1.3.0.ebuild:
  Remove old ebuilds.

*arts-1.3.2-r1 (07 Feb 2005)

  07 Feb 2005; Gregorio Guidi <greg_g@gentoo.org> +arts-1.3.2-r1.ebuild:
  Remove KDEDIR form the environment (#33079).

*arts-3.4.0_beta2 (05 Feb 2005)

  05 Feb 2005; Dan Armak <danarmak@gentoo.org> +arts-3.4.0_beta2.ebuild:
  Ebuild for 3.4.0_beta2. Note that beta2 has NOT been released as of this
  date. This ebuild is for inside testing by the KDE team, and is of course
  package.masked.

  23 Jan 2005; Markus Rothe <corsair@gentoo.org> arts-1.3.2.ebuild:
  Stable on ppc64; bug #78619

  15 Jan 2005; Dan Armak <danarmak@gentoo.org> arts-3.4.0_beta1.ebuild:
  Updated mcopidl patch for hardened configurations to apply cleanly with 3.4.
  Actually, Gregorio updated the patch earlier, but apprently he forgot to
  update the ebuild itself.

*arts-3.4.0_beta1 (13 Jan 2005)

  13 Jan 2005; Gregorio Guidi <greg_g@gentoo.org> +arts-3.4.0_beta1.ebuild:
  Introducing kde-3.4.0_beta1. Remove the file setting KDEDIR in /etc/env.d,
  since it is obsoleted.

  03 Jan 2005; Guy Martin <gmsoft@gentoo.org> arts-1.3.2.ebuild:
  Stable on hppa.

  29 Dec 2004; Bryan Østergaard <kloeri@gentoo.org> arts-1.3.2.ebuild:
  Stable on alpha, bug 72750.

  29 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> :
  Change encoding to UTF-8 for GLEP 31 compliance

  28 Dec 2004; Dylan Carlson <absinthe@gentoo.org> arts-1.3.2.ebuild:
  Stable on amd64.

  27 Dec 2004; Caleb Tennis <caleb@gentoo.org> arts-1.3.2.ebuild:
  x86 stable

  18 Dec 2004; Markus Rothe <corsair@gentoo.org> arts-1.3.1.ebuild:
  Stable on ppc64

  09 Dec 2004; Caleb Tennis <caleb@gentoo.org> arts-1.3.2.ebuild:
  Only use the hardened patch if it's necessary

  09 Dec 2004; Caleb Tennis <caleb@gentoo.org> arts-1.3.2.ebuild:
  Add a patch to apply -fno-stack-protector so arts doesn't die for some people

*arts-1.3.2 (08 Dec 2004)

  08 Dec 2004; Caleb Tennis <caleb@gentoo.org>
  +files/arts-1.3.2-alsa-bigendian.patch, +arts-1.3.2.ebuild:
  Version bump

  17 Nov 2004; Bryan Østergaard <kloeri@gentoo.org> arts-1.3.1.ebuild:
  Stable on alpha.

  14 Nov 2004; Luca Barbato <lu_zero@gentoo.org>
  +files/arts-1.3.1-alsa-bigendian.patch, arts-1.3.1.ebuild:
  Make arts use the proper alsa default on bigendian

  08 Nov 2004; Joseph Jezak <josejx@gentoo.org> arts-1.3.1.ebuild:
  Marked ppc stable.

  04 Nov 2004; Jason Wever <weeve@gentoo.org> arts-1.3.1.ebuild:
  Stable on sparc wrt security bug #69936.

  03 Nov 2004; Bryan Østergaard <kloeri@gentoo.org> arts-1.3.1.ebuild:
  ~alpha keyword.

  03 Nov 2004; Caleb Tennis <caleb@gentoo.org> arts-1.3.1.ebuild:
  x86 stable

*arts-1.3.1 (12 Oct 2004)

  12 Oct 2004; Caleb Tennis <caleb@gentoo.org> +arts-1.3.1.ebuild:
  Version bump

  04 Oct 2004; Guy Martin <gmsoft@gentoo.org> arts-1.3.0.ebuild:
  Stable on hppa.

  19 Sep 2004; Malcolm Lashley <malc@gentoo.org> arts-1.3.0.ebuild:
  Stable on amd64

  14 Sep 2004; Jason Wever <weeve@gentoo.org> arts-1.3.0.ebuild:
  Stable on sparc.

  12 Sep 2004; Bryan Østergaard <kloeri@gentoo.org> arts-1.2.3.ebuild:
  Stable on alpha.

  09 Sep 2004; Caleb Tennis <caleb@gentoo.org> :
  x86 stable

  31 Aug 2004; Caleb Tennis <caleb@gentoo.org> arts-1.3.0.ebuild:
  dep change : jack -> jack-audio-connection-kit

  30 Aug 2004; Pieter Van den Abeele <pvdabeel@gentoo.org> arts-1.1.5.ebuild,
  arts-1.2.1.ebuild, arts-1.3.0.ebuild:
  Masked arts-1.3.0.ebuild stable for ppc

  30 Aug 2004; Pieter Van den Abeele <pvdabeel@gentoo.org> arts-1.1.5.ebuild,
  arts-1.2.1.ebuild:
  Masked arts-1.2.2.ebuild stable for ppc

  30 Aug 2004; Pieter Van den Abeele <pvdabeel@gentoo.org> arts-1.1.5.ebuild,
  arts-1.2.1.ebuild:
  Masked arts-1.2.1.ebuild stable for ppc

  30 Aug 2004; Pieter Van den Abeele <pvdabeel@gentoo.org> arts-1.1.5.ebuild:
  Masked arts-1.1.5.ebuild stable for ppc

  26 Aug 2004; Caleb Tennis <caleb@gentoo.org> arts-1.3.0.ebuild,
  files/1.3.0-jack-configure.in.in.patch:
  Add a patch which allows use to setup a dependency on jack

  22 Aug 2004; Tom Gall <tgall@gentoo.org> arts-1.3.0.ebiuld:
  stable on ppc64

*arts-1.3.0 (19 Aug 2004)

  19 Aug 2004; Caleb Tennis <caleb@gentoo.org> arts-1.3.0.ebuild,
  arts-1.3.0_beta2.ebuild:
  1.3.0 final

*arts-1.3.0_rc2 (10 Aug 2004)

  10 Aug 2004; Caleb Tennis <caleb@gentoo.org> arts-1.3.0_rc1.ebuild,
  arts-1.3.0_rc2.ebuild:
  remove _rc1, add _rc2

*arts-1.3.0_rc1 (06 Aug 2004)

  06 Aug 2004; Caleb Tennis <caleb@gentoo.org> arts-1.3.0_beta1.ebuild,
  arts-1.3.0_rc1.ebuild:
  Add new rc, remove beta1

  28 Jul 2004; Tom Gall <tgall@gentoo.org> arts-1.2.3.ebuild:
  stable on ppc64, bug #55076

*arts-1.3.0_beta2 (23 Jul 2004)

  23 Jul 2004; Caleb Tennis <caleb@gentoo.org> +arts-1.3.0_beta2.ebuild:
  Add beta2

*arts-1.3.0_beta1 (08 Jul 2004)

  08 Jul 2004; Caleb Tennis <caleb@gentoo.org> -arts-1.3.0_alpha1.ebuild,
  +arts-1.3.0_beta1.ebuild:
  New beta, remove alpha

  07 Jul 2004; Bryan Østergaard <kloeri@gentoo.org> arts-1.2.2.ebuild:
  Stable on alpha.

  20 Jun 2004; Tom Gall <tgall@gentoo.org> arts-1.2.3.ebuild:
  ~ppc64, bug #54147

  10 Jun 2004; Travis Tilley <lv@gentoo.org> arts-1.2.3.ebuild:
  fixed epatch line so that it tries to use a patch that actually exists

*arts-1.2.3 (09 Jun 2004)

  09 Jun 2004; Caleb Tennis <caleb@gentoo.org> arts-1.2.3.ebuild: 
  Version bump

  03 Jun 2004; Aron Griffis <agriffis@gentoo.org> arts-1.1.5.ebuild,
  arts-1.2.0.ebuild, arts-1.2.1.ebuild:
  Fix use invocation

  01 Jun 2004; Travis Tilley <lv@gentoo.org> arts-1.2.2.ebuild:
  stable on amd64

*arts-1.3.0_alpha1 (25 May 2004)

  25 May 2004; Caleb Tennis <caleb@gentoo.org> +arts-1.3.0_alpha1.ebuild:
  3.3alpha1 - hardmasked

  23 May 2004; Daniel Ostrow <dostrow@gentoo.org> arts-1.2.2.ebuild:
  Stable on ppc.

  15 May 2004; Jason Wever <weeve@gentoo.org> arts-1.2.2.ebuild:
  Stable on sparc.

  04 May 2004; Travis Tilley <lv@gentoo.org> +files/arts-vorbis-fix.dif,
  arts-1.2.1.ebuild, arts-1.2.2.ebuild:
  added a patch to fix arts suddenly jumping to 100% cpu usage and staying there
  for mp3 or vorbis streams at least, a bug that is particularly annoying on
  amd64

  27 Apr 2004; Aron Griffis <agriffis@gentoo.org> arts-1.2.1.ebuild,
  arts-1.2.2.ebuild:
  Add inherit eutils

  24 Apr 2004; Bret Curtis,,, <psi29a@gentoo.org> arts-1.2.2.ebuild:
  added to ~mips

  20 Apr 2004; Caleb Tennis <caleb@gentoo.org> -files/tmp-mcop-user-fix.patch,
  -arts-1.0.5b.ebuild:
  Remove old version

  19 Apr 2004; Jon Hood <squinky86@gentoo.org> arts-1.2.2.ebuild:
  fix SRC_URI

*arts-1.2.2 (19 Apr 2004)

  19 Apr 2004; Caleb Tennis <caleb@gentoo.org> +files/arts-1.2.2-buffer.patch:
  Version Bump

  17 Apr 2004; Travis Tilley <lv@gentoo.org> arts-1.2.1.ebuild:
  stable on amd64

  07 Apr 2004; Jeremy Huddleston <eradicator@gentoo.org> arts-1.2.1.ebuild:
  filter -fomit-frame-pointer on sparc to close bug #41980

  24 Mar 2004; Jason Huebel <jhuebel@gentoo.org> files/arts-1.2.1-buffer.patch,
  arts-1.2.1.ebuild
  Patch to fix sound problems with arts on amd64. Contributed by coolo at SUSE.

  15 Mar 2004; Jason Wever <weeve@gentoo.org> arts-1.2.1.ebuild:
  Marked stable on sparc.

  12 Mar 2004; Caleb Tennis <caleb@gentoo.org> arts-1.1.4.ebuild,
  arts-1.2.1.ebuild, files/arts-1.1.4-alsafix.diff,
  files/arts-1.1.4-amd64.patch:
  x86 stable and old cleanups

*arts-1.2.1 (09 Mar 2004)

  09 Mar 2004; Caleb Tennis <caleb@gentoo.org> arts-1.2.1.ebuild:
  Version bump

  28 Feb 2004; Jason Wever <weeve@gentoo.org> arts-1.1.5.ebuild:
  Marked stable on sparc.

  15 Feb 2004; Jason Wever <weeve@gentoo.org> arts-1.2.0.ebuild:
  Marked stable on sparc.

  10 Feb 2004; Caleb Tennis <caleb@gentoo.org> arts-1.2.0.ebuild:
  x86 stable

  10 Feb 2004; Lars Weiler <pylon@gentoo.org> arts-1.2.0.ebuild:
  Stable on ppc.

  08 Feb 2004; Mike Frysinger <vapier@gentoo.org> :
  Move a lot of code out of global scope since it shouldnt be there ;).

  05 Feb 2004; Luca Barbato <lu_zero@gentoo.org> arts-1.2.0.ebuild:
  Marked ~ppc

*arts-1.2.0 (02 Feb 2004)

  02 Feb 2004; Caleb Tennis <caleb@gentoo.org> arts-1.2.0.ebuild,
  arts-1.2.0_rc1.ebuild:
  New version, remove _rc.

  29 Jan 2004; Aron Griffis <agriffis@gentoo.org> arts-1.1.5.ebuild:
  stable on alpha and ia64

  16 Jan 2004; Martin Guy <gmsoft@gentoo.org> arts-1.1.5.ebuild:
  Marked stable on hppa.

*arts-1.1.5 (14 Jan 2004)

  14 Jan 2004; Caleb Tennis <caleb@gentoo.org> arts-1.1.5.ebuild:
  New version.  Removing patches as they shouldn't be needed for this version.
  Marking x86 stable, and unstable on all other arches present in 1.1.4

  10 Jan 2004; Aron Griffis <agriffis@gentoo.org> arts-1.1.4.ebuild:
  stable on alpha

  04 Jan 2004; Jason Wever <weeve@gentoo.org> arts-1.2.0_beta2.ebuild:
  Added ~sparc keyword.

  03 Jan 2004; Caleb Tennis <caleb@gentoo.org> arts-1.1.4.ebuild,
  arts-1.2.0_beta2.ebuild, files/arts-1.1.4-alsafix.diff,
  files/arts-1.2.0_beta2-alsafix.diff:
  Add a patch to let arts work with alsa 1.0

  03 Jan 2004; Caleb Tennis <caleb@gentoo.org> arts-1.1.4.ebuild,
  arts-1.2.0_beta2.ebuild:
  Alsa dep <= 0.9.8

  27 Dec 2003; Caleb Tennis <caleb@gentoo.org> arts-1.1.4.ebuild,
  arts-1.2.0_beta2.ebuild:
  more minor dep changes

  24 Dec 2003; Caleb Tennis <caleb@gentoo.org> arts-1.2.0_beta2.ebuild:
  ebuild cleanup - add esound as a optional dependency

*arts-1.2.0_beta2 (01 Dec 2003)

  01 Dec 2003; Caleb Tennis <caleb@gentoo.org> arts-1.2.0_alpha2.ebuild,
  arts-1.2.0_beta1.ebuild, arts-1.2.0_beta2.ebuild:
  New beta version, remove older alphas and betas

  20 Nov 2003; Luca Barbato <lu_zero@gentoo.org> arts-1.1.4.ebuild:
  Marked ppc

  20 Nov 2003; Luca Barbato <lu_zero@gentoo.org> arts-1.1.4.ebuild:
  Marked ppc

*arts-1.2.0_beta1 (01 Nov 2003)

  01 Nov 2003; Caleb Tennis <caleb@gentoo.org> arts-1.2.0_beta1.ebuild:
  New beta version

  28 Sep 2003; Caleb Tennis <caleb@gentoo.org> arts-1.1.4.ebuild,
  files/arts-1.1.4-amd64.patch:
  patch for compilation of amd64, add ~amd64

  26 Sep 2003; Jason Wever <weeve@gentoo.org> arts-1.1.4.ebuild:
  Added sparc keyword.

*arts-1.2.0_alpha2 (25 Sep 2003)

  25 Sep 2003; Caleb Tennis <caleb@gentoo.org> arts-1.2.0_alpha1.ebuild,
  arts-1.2.0_alpha1.ebuild, arts-1.2.0_alpha2.ebuild:
  new alpha version

  25 Sep 2003; Caleb Tennis <caleb@gentoo.org> arts-1.1.4.ebuild:
  marking x86 stable

  16 Sep 2003; Jason Wever <weeve@gentoo.org> arts-1.1.3.ebuild:
  Marked stable for sparc.

*arts-1.1.4 (19 Sep 2003)

  19 Sep 2003; Caleb Tennis <caleb@gentoo.org> arts-1.1.4.ebuild:
  readd in head -1 fix

  12 Sep 2003; Caleb Tennis <caleb@gentoo.org> arts-1.1.3.ebuild:
  Compile fix for coreutils users

*arts-1.2.0_alpha1 (12 Sep 2003)

  12 Sep 2003; Jason Wever <weeve@gentoo.org> arts-1.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> arts-1.1.3.ebuild:
  x86 stable

  29 Jul 2003; Paul de Vrieze <pauldv@gentoo.org> arts-1.1.3.ebuild:
  Fix some braindamage in the automake detection script, so that we can apply
  our patch again

*arts-1.1.3 (20 Jul 2003)

  20 Jul 2003; Caleb Tennis <caleb@gentoo.org> arts-1.1.3.ebuild:
  Version bump of ebuild for kde 3.1.3.  Commented out the arts and 
  oggvorbis patch support as it causes it not to compile (at least on my 
  machine).  Will require more testing.

  19 Jul 2003; Nick Hadaway <raker@gentoo.org> arts-1.1.2-r1.ebuild:
  Changed mads dep back to media-sound/mad

*arts-1.1.2-r1 (18 Jul 2003)

  18 Jul 2003; Nick Hadaway <raker@gentoo.org> arts-1.1.2-r1.ebuild:
  Changed media-sound/mad to media-libs/{libmad,libid3tag).  Also
  implemented the mad USE variable.

  30 Jun 2003; Brad Laue <brad@gentoo.org> arts-1.1.1.ebuild,
  arts-1.1.2.ebuild:
  Really disable alsa if not specified in USE flags. (we mean it this time!)

  21 Jun 2003; Caleb Tennis <caleb@gentoo.org>:
  Removing old ebuilds: 1.0.5a, 1.1.0, 1.1.0-r1

  16 Jun 2003; Will Woods <wwoods@gentoo.org> arts-1.1.2.ebuild:
  Marked stable for alpha

  20 May 2003; Jason Wever <weeve@gentoo.org> arts-1.1.2.ebuild:
  Changed ~sparc keyword to sparc.

  19 May 2003; Dan Armak <danarmak@gentoo.org> arts-1.1.2.ebuild:
  Use correct version number in the name of the env.d file.

*arts-1.1.2 (19 May 2003)

  19 May 2003; Dan Armak <danarmak@gentoo.org> arts-1.1.2.ebuild:
  New version that comes with kde 3.1.2.

*arts-1.0.5b (08 Apr 2003)

  08 Apr 2003; Hannes Mehnert <hannes@gentoo.org> arts-1.0.5b.ebuild:
  A security patch release fixing a kghostview vulnerability. See GLSA.
  Also includes misc other fixes.

  14 Mar 2003; Dan Armak <danarmak@gentoo.org> arts-1.0.5a.ebuild:
  
  Add fix for #16329 to this versionn as well, without creating a new revision.
  Added matching change to latest revision of kdelibs-3.0.5a.

*arts-1.1.1 (14 Mar 2003)

  28 Apr 2003; Lars Weiler <pylon@gentoo.org> arts-1.1.1.ebuild:
  Set ppc in KEYWORDS

  20 Mar 2003; Jason Wever <weeve@gentoo.org> arts-1.1.1.ebuild:
  Changed ~sparc keyword to sparc.

  14 Mar 2003; Hannes Mehnert <hannes@gentoo.org> arts-1.1.1.ebuild:
  version bump

*arts-1.1.0-r1 (11 Mar 2003)

  16 Mar 2003; Mark Guertin <gerk@gentoo.org> arts-1.1.0-r1.ebuild:
  set ppc in keywords

  11 Mar 2003; Dan Armak <danarmak@gentoo.org> arts-1.1.0-r1.ebuild:
  Fix bug #16329 (arts not added to paths without kdelibs); goes together
  with the new kdelibs-3.1-r3.
  Also, add an informational message about making artswrapper suid root
  (cf bug #7883).

  28 Feb 2003; Hannes Mehnert <hannes@gentoo.org> arts-1.1.0.ebuild:
  Fix bug #13453: filter out the -foptimize-sibling-calls optimization flag,
  which causes a segfault in the compilation process.

  15 Feb 2003; Jason Wever <weeve@gentoo.org> arts-1.1.0.ebuild:
  Changed ~sparc keyword to sparc.

*arts-1.1.0 (14 Jan 2003)

  28 Feb 2003; Will Woods <wwoods@gentoo.org> arts-1.1.0.ebuild :
  Added ~alpha keyword

  12 Feb 2003; Hannes Mehnert <hannes@gentoo.org> arts-1.0.2.ebuild,
  arts-1.0.2-r1.ebuild, arts-1.0.3.ebuild, arts-1.0.4.ebuild,
  arts-1.1.0_rc6.ebuild: removed old versions

  01 Feb 2003; Jack Morgan <jmorgan@gentoo.org> arts-1.1.0.ebuild:
  added ~sparc to keywords

  01 Feb 2003; Dan Armak <danarmak@gentoo.org> arts-1.0.5a.ebuild  :

  Fix bug #13453: filter out the -foptimize-sibling-calls optimization flag,
  which causes a segfault in the compilation process.

  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.

  28 Jan 2003; Jon Nall <nall@gentoo.org> arts-1.1.0.ebuild :
  changed ~ppc to ppc

  14 Jan 2003; Hannes Mehnert <hannes@gentoo.org> arts-1.1.0.ebuild:
  fixed for kde-3.1.final

  08 Jan 2003; Mark Guertin <gerk@gentoo.org> arts-1.1.0_rc6.ebuild:
  added ~ppc to keywords

*arts-1.1.0_rc6 (05 Jan 2003)

  05 Jan 2003; Hannes Mehnert <hannes@gentoo.org> arts-1.1.0_rc6.ebuild:
  version bump

*arts-1.0.5a (21 Dec 2002)

  06 Jan 2003; Jason Wever <weeve@gentoo.org> arts-1.0.5a.ebuild:
  Added ~sparc to keywords.

  21 Dec 2002; Hannes Mehnert <hannes@gentoo.org> arts-1.0.5a.ebuild:
  version bump

*arts-1.1.0_rc5 (16 Dec 2002)

  16 Dec 2002; Hannes Mehnert <hannes@gentoo.org> arts-1.1.0_rc5-r1.ebuild:
  added patch which fixes bug #11860

*arts-1.0.4-r1 (15 Dec 2002)

  15 Dec 2002; Hannes Mehnert <hannes@gentoo.org> arts-1.0.4-r1.ebuild:
  added patch which should fix bug #10338

  08 Dec 2002; Jack Morgan <jmorgan@gentoo.org> arts-1.1.0_rc5 :
  Added sparc keyword

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
  08 Dec 2002; Hannes Mehnert <hannes@gentoo.org> arts-1.1.0.x.ebuild:
  renamed arts-1.1.0.3 to arts-1.1.0_rc3, 1.1.0.5 to 1.1.0_rc5 and 1.1.0.4
  to 1.1.0

  04 Dec 2002; Olivier Reisch <doctomoe@gentoo.org> arts-1.1.0.4.ebuild:
  Added ppc keyword

*arts-1.1.0.3 (12 Nov 2002)

  12 Nov 2002; Hannes Mehnert <hannes@gentoo.org> ChangeLog:
  kde-3.1_rc3

*arts-1.1.0.2 (04 Nov 2002)

  04 Nov 2002; Hannes Mehnert <hannes@gentoo.org> ChangeLog:
  kde-3.1_rc2

*arts-3.0.4 (09 Oct 2002)

  09 Oct 2002; Dan Armak <danarmak@gentoo.org> ChangeLog  :

  aRts 1.0.4 from KDE 3.0.4, the latest bugfix release.

  04 Oct 2002; Dan Armak <danarmak@gentoo.org> ChangeLog  :

  Fix bug #8175: force make -j1 in arts-1.0.3.

*arts-1.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 HOMEPAGE=multimedia.kde.org.

*arts-1.0.2-r1 (08 Jul 2002) Bart Verwilst <verwilst@gentoo.org>:

  Fixes newly discovered root exploit in artswrapper.

*arts-1.0.2 (03 Jul 2002)

  01 Aug 2002; Mark Guertin <gerk@gentoo.org> :
  Added ppc to keywords

  03 Jul 2002; Dan Armak <danarmak@gentoo.org> ChangeLog  :

  New stability release (comes with kde 3.0.2).

*arts-1.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).
	
  Update <verwilst>: Filter out "-fomit-frame-pointer" and 
  -fstrength-reduce" on gentoo 1.3+ systems. Arts seems very unstable 
  otherwise (Even compiling something shuts it down )

*arts-1.0.1 (24 May 2002)

  24 May 2002; Dan Armak <danarmak@gentoo.org> Changelog :

  Bugfix release (part of KDE 3.0.1).

*arts-1.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.

*kde-2.2.2-r1 (1 Feb 2002)

  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.