summaryrefslogtreecommitdiff
blob: e2047949af4fe66753c92c07b7fc31f3caabbbc5 (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
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
# ChangeLog for media-libs/xine-lib
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/xine-lib/ChangeLog,v 1.450 2007/01/29 18:51:49 flameeyes Exp $

  29 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> ChangeLog:
  Sign manifest.

  29 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> xine-lib-1.1.4.ebuild:
  Bump requirement of ffmpeg version, as the new xine-lib requires a new ffmpeg.

  29 Jan 2007; Bryan Østergaard <kloeri@gentoo.org> xine-lib-1.1.4.ebuild:
  Add ~alpha + ~ia64 keywords.

*xine-lib-1.1.4 (28 Jan 2007)

  28 Jan 2007; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.4_pre20070126.ebuild, +xine-lib-1.1.4.ebuild:
  Final 1.1.4 release.

*xine-lib-1.1.4_pre20070126 (26 Jan 2007)

  26 Jan 2007; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2-r2.ebuild, xine-lib-1.1.2-r3.ebuild, xine-lib-1.1.3.ebuild,
  -xine-lib-1.1.4_pre20070119.ebuild, +xine-lib-1.1.4_pre20070126.ebuild:
  Update snapshot, with a new WavPack decoder and a fix for playing files over
  Samba. As Samba was crashing badly before, disable the samba useflag for all
  1.1.2 and 1.1.3 series ebuilds.

*xine-lib-1.1.4_pre20070119 (19 Jan 2007)

  19 Jan 2007; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.4_pre20070117.ebuild, +xine-lib-1.1.4_pre20070119.ebuild:
  Update snapshot; now musepack useflag is used and respected to enable or
  disable musepack support, and libmpcdec is used to decode MusePack files
  rather than the internal code.

*xine-lib-1.1.4_pre20070117 (18 Jan 2007)

  18 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> xine-lib-1.1.3.ebuild,
  -xine-lib-1.1.4_pre20061231.ebuild, +xine-lib-1.1.4_pre20070117.ebuild:
  Update the snapshot to a newer version without linking errors. Also disable
  SyncFB on 1.1.3 and later because it requires a kernel module we don't have
  in portage anyway.

  16 Jan 2007; Jeroen Roovers <jer@gentoo.org> xine-lib-1.1.3.ebuild:
  Stable for HPPA (bug #159054).

  10 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> metadata.xml:
  Add missing email address for herd with name != alias.

  09 Jan 2007; Markus Rothe <corsair@gentoo.org> xine-lib-1.1.3.ebuild:
  Stable on ppc64; bug #159054

  06 Jan 2007; Matti Bickel <mabi@gentoo.org> xine-lib-1.1.3.ebuild:
  ppc stable (bug #159054)

  06 Jan 2007; Michael Cummings <mcummings@gentoo.org>
  xine-lib-1.1.3.ebuild:
  amd64 stable, bug 157814

  05 Jan 2007; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.4_pre20061231.ebuild:
  Require a newer enough version of wavpack so that the pkg-config file is
  installed.

  04 Jan 2007; Christian Faulhammer <opfer@gentoo.org>
  xine-lib-1.1.3.ebuild:
  stable x86, bug #159054

  04 Jan 2007; Gustavo Zacarias <gustavoz@gentoo.org> xine-lib-1.1.3.ebuild:
  Stable on sparc wrt #159054

*xine-lib-1.1.4_pre20061231 (31 Dec 2006)

  31 Dec 2006; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.4_pre20061227.ebuild, +xine-lib-1.1.4_pre20061231.ebuild:
  Bump snapshot to a newer version with way less linking failures.

  27 Dec 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.4_pre20061227.ebuild:
  Actually 1.1.4 version works with flac-1.1.3 finally.

*xine-lib-1.1.4_pre20061227 (27 Dec 2006)

  27 Dec 2006; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.4_pre20061227.ebuild:
  Add a newer preview snapshot, able to play WavPacks (for instance).

  27 Dec 2006; Bryan Østergaard <kloeri@gentoo.org> xine-lib-1.1.3.ebuild:
  Re-add ~alpha and ~ia64 keywords.

  25 Dec 2006; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.3_pre20061129.ebuild, xine-lib-1.1.3.ebuild:
  xine-lib 1.1.3 release does not work that well with flac 1.1.3 (although it
  builds), so depend on 1.1.2; remove old snapshot.

  04 Dec 2006; Diego Pettenò <flameeyes@gentoo.org> xine-lib-1.1.3.ebuild:
  Fix handling of truetype useflag, thanks to Kraml Liu n bug #157097.

*xine-lib-1.1.3 (03 Dec 2006)

  03 Dec 2006; Diego Pettenò <flameeyes@gentoo.org> +xine-lib-1.1.3.ebuild:
  Bump to 1.1.3 final (just a few commits away from latest snapshot).

  02 Dec 2006; Bryan Østergaard <kloeri@gentoo.org>
  xine-lib-1.1.2-r3.ebuild:
  Stable on Alpha + ia64, bug 156645.

  01 Dec 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  xine-lib-1.1.2-r3.ebuild:
  Stable on amd64 wrt bug #156645.

  01 Dec 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.3_pre20061129.ebuild:
  Fix libtheora dependencies.

  01 Dec 2006; Jeroen Roovers <jer@gentoo.org> xine-lib-1.1.2-r3.ebuild,
  xine-lib-1.1.3_pre20061129.ebuild:
  Marked one stable for HPPA (1.1.2-r3, bug #156645) and the other ~hppa
  (1.1.3_pre20061129, bug #155067).

  30 Nov 2006; Markus Rothe <corsair@gentoo.org> xine-lib-1.1.2-r3.ebuild:
  Stable on ppc64; bug #156645

  30 Nov 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  xine-lib-1.1.2-r3.ebuild:
  ppc stable, bug #156645

  01 Dec 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2-r2.ebuild, xine-lib-1.1.2-r3.ebuild,
  xine-lib-1.1.3_pre20061129.ebuild:
  Add the (obvious) libtool dependency as per bug #156734.

  30 Nov 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  xine-lib-1.1.2-r3.ebuild:
  Stable on sparc wrt security #156645

*xine-lib-1.1.2-r3 (29 Nov 2006)

  29 Nov 2006; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.2-r3.ebuild:
  Bump patchset to push out a patch for the possible security issue in libreal.

*xine-lib-1.1.3_pre20061129 (29 Nov 2006)

  29 Nov 2006; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.3_pre20061119.ebuild, +xine-lib-1.1.3_pre20061129.ebuild:
  Update snapshot to fix a couple of serious bugs.

  25 Nov 2006; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.3_pre20061112.ebuild, xine-lib-1.1.3_pre20061119.ebuild:
  Fix typo in econf line, thanks to David Watzke in bug #155463.

*xine-lib-1.1.3_pre20061119 (19 Nov 2006)

  19 Nov 2006; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.3_pre20061119.ebuild:
  New snapshot to fix the issue reported in bug #155630, and re-adding
  ~x86-fbsd keyword.

  18 Nov 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.3_pre20061112.ebuild:
  The snapshot does not build on FreeBSD, will re-keyword on the new one (due
  soon anyway).

  18 Nov 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.3_pre20061112.ebuild:
  Don't restrict the dependency to flac 1.1.2, as the current snapshot works
  with 1.1.3.

  13 Nov 2006; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.3_pre20060929.ebuild, xine-lib-1.1.3_pre20061112.ebuild:
  Remove old version and drop keywords for arches that didn't keyword ffmpeg.

*xine-lib-1.1.3_pre20061112 (12 Nov 2006)

  12 Nov 2006; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.3_pre20061112.ebuild:
  New snapshot from current CVS, fixed a few bugs with FLAC files, improved
  freetype/fontconfig support, and now uses pkg-config to search for Xorg
  libraries rather than linking tests.

  30 Oct 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2-r2.ebuild:
  Add autotools version dependencies.

  26 Oct 2006; Joshua Jackson <tsunam@gentoo.org> xine-lib-1.1.2-r2.ebuild:
  adding a additional filter for -fno-omit per bug #149704

  21 Oct 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2-r2.ebuild:
  As 1.1.2 is the last version without unconditional mp3 support, rename mad
  useflag in mp3 and be done with all the reports of MP3 not working.

  19 Oct 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2-r2.ebuild, xine-lib-1.1.3_pre20060929.ebuild:
  Depend on 1.1.2 version of flac, as the 1.1.3 version changes API.

  13 Oct 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2-r2.ebuild, -xine-lib-1.1.3_pre20060914.ebuild,
  xine-lib-1.1.3_pre20060929.ebuild:
  Remove old snapshot, disable freetype in all these versions as it's not
  working as intended anyway. FreeType/FontConfig support will be present in
  next snapshot.

  05 Oct 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  xine-lib-1.1.2-r2.ebuild:
  Removing references to media-video/nvidia-glx since it is no longer in the
  tree.

  01 Oct 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2-r2.ebuild, xine-lib-1.1.3_pre20060914.ebuild,
  xine-lib-1.1.3_pre20060929.ebuild:
  Remove build-time dependency on xextproto.

  30 Sep 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.3_pre20060929.ebuild:
  Remove the extra --without-pulseaudio parameter, see bug #149587.

*xine-lib-1.1.3_pre20060929 (29 Sep 2006)

  29 Sep 2006; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.3_pre20060929.ebuild:
  New snapshot, with mmap support optional, a lot of Coverity fixes, and
  Shorten files playing in Amarok.

  16 Sep 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2-r2.ebuild, -xine-lib-1.1.3_pre20060831.ebuild,
  xine-lib-1.1.3_pre20060914.ebuild:
  Fix gnome useflag switch, remove old snapshot.

*xine-lib-1.1.3_pre20060914 (14 Sep 2006)

  14 Sep 2006; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.3_pre20060914.ebuild:
  New snapshot, with quite a bit of fixes from upstream.

  10 Sep 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.3_pre20060831.ebuild:
  Drop monolithic X11 support, no more need for VIDEO_CARDS support, XvMCW is
  used every time. Simplify the ebuild notably.

  09 Sep 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.3_pre20060831.ebuild:
  Remove asf useflag and enable it every time, now that a WMV decoder is
  available.

  08 Sep 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2-r2.ebuild:
  Bump patchset to fix again bug #142488.

  05 Sep 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.3_pre20060831.ebuild:
  Correctly disable pulseaudio.

  01 Sep 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.3_pre20060831.ebuild:
  Bump patchset to build again on amd64/x86.

  31 Aug 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.3_pre20060831.ebuild:
  Bump patchset, fix building on non-x86, non-amd64 systems, thanks to Alberto
  Zennaro for reporting.

  31 Aug 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.3_pre20060831.ebuild:
  Fix typo, many thanks to David Watzke in bug #145734.

  31 Aug 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2-r2.ebuild, xine-lib-1.1.3_pre20060831.ebuild:
  Fix visibility patch to export the plugin info for dxr3, thanks to Alejandro
  Homs-Puron in bug #142488.

*xine-lib-1.1.3_pre20060831 (30 Aug 2006)

  30 Aug 2006; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.3_pre20060831.ebuild:
  Add pre-release of xine-lib depending on newer ffmpeg allowing people on
  non-x86 platforms to play WMV files. Bugs still welcome.

  26 Jul 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2-r2.ebuild:
  Make debug build actually be a debug build, by undefining NDEBUG as well as
  defining DEBUG. Bump patchset to fix a build error with debug enabled.

  15 Jul 2006; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.2_pre20060328-r9.ebuild:
  Drop latest vulnerable version.

  15 Jul 2006; Rene Nussbaumer <killerfox@gentoo.org>
  xine-lib-1.1.2-r2.ebuild:
  Stable on hppa. See bug #139319.

  15 Jul 2006; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.1-r3.ebuild, -xine-lib-1.1.2_pre20060328-r11.ebuild,
  -xine-lib-1.1.2_pre20060630-r1.ebuild, -xine-lib-1.1.2.ebuild,
  -xine-lib-1.1.2-r1.ebuild:
  Remove old, vulnerable versions.

  14 Jul 2006; Thomas Cort <tcort@gentoo.org> xine-lib-1.1.2-r2.ebuild:
  Stable on alpha wrt security Bug #139319.

  13 Jul 2006; Jason Wever <weeve@gentoo.org> xine-lib-1.1.2-r2.ebuild:
  Stable on SPARC wrt security bug #139319.

  13 Jul 2006; Aron Griffis <agriffis@gentoo.org> xine-lib-1.1.2-r2.ebuild:
  Mark 1.1.2-r2 stable on ia64

  12 Jul 2006; Markus Rothe <corsair@gentoo.org> xine-lib-1.1.2-r2.ebuild:
  Stable on ppc64; bug #139319

  12 Jul 2006; Joshua Jackson <tsunam@gentoo.org> xine-lib-1.1.2-r2.ebuild:
  Stable x86; security bug #139319

  11 Jul 2006; Luis Medinas <metalgod@gentoo.org> xine-lib-1.1.2-r2.ebuild:
  Stable on amd64. See security bug #139319.

  11 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  xine-lib-1.1.2-r2.ebuild:
  ppc stable, bug #139319

*xine-lib-1.1.2-r2 (11 Jul 2006)

  11 Jul 2006; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.2-r2.ebuild:
  New patch to fix possible heap overflows in MMS code. See bug #139319.

*xine-lib-1.1.2-r1 (11 Jul 2006)

  11 Jul 2006; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.2-r1.ebuild:
  Add the promised always-shared ffmpeg policy, need a version bump as sh does
  not have it keyworded.

*xine-lib-1.1.2 (10 Jul 2006)

  10 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> +xine-lib-1.1.2.ebuild:
  Bump to 1.1.2 release, finally.

  09 Jul 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r3.ebuild, xine-lib-1.1.2_pre20060328-r9.ebuild,
  xine-lib-1.1.2_pre20060328-r11.ebuild,
  xine-lib-1.1.2_pre20060630-r1.ebuild:
  Remove xorg-server fake depend, was an artefact produced by the first dep
  checking scripts.

  09 Jul 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r3.ebuild, xine-lib-1.1.2_pre20060328-r9.ebuild,
  xine-lib-1.1.2_pre20060328-r11.ebuild,
  xine-lib-1.1.2_pre20060630-r1.ebuild:
  Replace einfo with elog.

  07 Jul 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r3.ebuild, xine-lib-1.1.2_pre20060328-r9.ebuild,
  xine-lib-1.1.2_pre20060328-r11.ebuild,
  xine-lib-1.1.2_pre20060630-r1.ebuild:
  Depend on series 6 of virtual/x11 so to not screw up stable users with
  modular setup.

  07 Jul 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  xine-lib-1.1.1-r3.ebuild, xine-lib-1.1.2_pre20060328-r9.ebuild,
  xine-lib-1.1.2_pre20060328-r11.ebuild,
  xine-lib-1.1.2_pre20060630-r1.ebuild:
  Also adding nvidia-legacy-drivers, since they're also proper for older
  nvidia cards.

  07 Jul 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r3.ebuild, xine-lib-1.1.2_pre20060328-r9.ebuild,
  xine-lib-1.1.2_pre20060328-r11.ebuild,
  xine-lib-1.1.2_pre20060630-r1.ebuild:
  Fix dependency to accept nvidia-drivers too.

*xine-lib-1.1.2_pre20060630-r1 (03 Jul 2006)

  03 Jul 2006; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.2_pre20060606-r2.ebuild,
  -xine-lib-1.1.2_pre20060606-r3.ebuild, -xine-lib-1.1.2_pre20060630.ebuild,
  +xine-lib-1.1.2_pre20060630-r1.ebuild:
  Add a patch to fix missing timeout on network streaming, and remove old
  versions.

*xine-lib-1.1.2_pre20060630 (30 Jun 2006)

  30 Jun 2006; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.2_pre20060630.ebuild:
  New snapshot with reduced patchset, near to 1.1.2 final release.

  17 Jun 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2_pre20060606-r3.ebuild:
  Bump patchset with a new patch for 5.1 AAC support.

*xine-lib-1.1.2_pre20060606-r3 (17 Jun 2006)

  17 Jun 2006; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.2_pre20060606-r3.ebuild:
  Add revbump to fix strict-aliasing rules.

*xine-lib-1.1.2_pre20060606-r2 (15 Jun 2006)

  15 Jun 2006; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.2_pre20060606-r1.ebuild,
  +xine-lib-1.1.2_pre20060606-r2.ebuild:
  New revision to fix bug #136870.

  10 Jun 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2_pre20060606-r1.ebuild:
  Bump patchset to fix typo.

  10 Jun 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r3.ebuild, xine-lib-1.1.2_pre20060328-r9.ebuild,
  xine-lib-1.1.2_pre20060328-r11.ebuild:
  Disable nls for all older versions, as it's broken and doesn't work anyway.

*xine-lib-1.1.2_pre20060606-r1 (10 Jun 2006)

  10 Jun 2006; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.2_pre20060606.ebuild, +xine-lib-1.1.2_pre20060606-r1.ebuild:
  Bump revision fixing definitely the i18n issues so that they work.

  09 Jun 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2_pre20060606.ebuild:
  Bump patchset to fix issues with streams after security fix. Use emake for
  install stage.

  07 Jun 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2_pre20060328-r11.ebuild:
  Don't apply both 237 and 240 when using gcc 3.3, better safe than sorry.

  07 Jun 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2_pre20060606.ebuild:
  Remove the patch removal and add support for updating translations.

  07 Jun 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2_pre20060328-r9.ebuild,
  xine-lib-1.1.2_pre20060328-r11.ebuild:
  Don't skip the visibility patch if GCC does not support it, as the
  constantise patch then fails to apply. Stable on -r11 is asked already.

*xine-lib-1.1.2_pre20060606 (06 Jun 2006)

  06 Jun 2006; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.2_pre20060606.ebuild:
  Add new snapshot with new patchset (reduced).

  06 Jun 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  xine-lib-1.1.2_pre20060328-r11.ebuild:
  ppc stable, bug #135734

  06 Jun 2006; Markus Rothe <corsair@gentoo.org>
  xine-lib-1.1.2_pre20060328-r11.ebuild:
  Stable on ppc64; bug #135734

*xine-lib-1.1.2_pre20060328-r11 (05 Jun 2006)

  05 Jun 2006; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.2_pre20060328-r1.ebuild,
  -xine-lib-1.1.2_pre20060328-r10.ebuild,
  +xine-lib-1.1.2_pre20060328-r11.ebuild:
  Add new revision hopefully fixing the Altivec problems on PowerPC, drop old
  revisions.

  05 Jun 2006; Markus Rothe <corsair@gentoo.org>
  xine-lib-1.1.2_pre20060328-r9.ebuild:
  Stable on ppc64; bug #134951

  03 Jun 2006; Rene Nussbaumer <killerfox@gentoo.org>
  xine-lib-1.1.2_pre20060328-r9.ebuild:
  Stable on hppa. See bug #134951.

  03 Jun 2006; Mark Loeser <halcy0n@gentoo.org>
  xine-lib-1.1.2_pre20060328-r9.ebuild:
  Stable on x86; bug #134951

  02 Jun 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  xine-lib-1.1.2_pre20060328-r9.ebuild:
  ppc stable, bug #134951

*xine-lib-1.1.2_pre20060328-r10 (02 Jun 2006)

  02 Jun 2006; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.2_pre20060328-r10.ebuild:
  Add new revision with a fix for stream containing ' character.

  01 Jun 2006; Jason Wever <weeve@gentoo.org>
  xine-lib-1.1.2_pre20060328-r9.ebuild:
  Stable on SPARC wrt security bug #134951.

  01 Jun 2006; Thomas Cort <tcort@gentoo.org>
  xine-lib-1.1.2_pre20060328-r9.ebuild:
  Stable on alpha wrt security Bug #134951.

  01 Jun 2006; Luis Medinas <metalgod@gentoo.org>
  xine-lib-1.1.2_pre20060328-r9.ebuild:
  Stable on amd64 for security bug #134951.

*xine-lib-1.1.2_pre20060328-r9 (31 May 2006)

  31 May 2006; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.2_pre20060328-r6.ebuild,
  -xine-lib-1.1.2_pre20060328-r7.ebuild,
  -xine-lib-1.1.2_pre20060328-r8.ebuild,
  +xine-lib-1.1.2_pre20060328-r9.ebuild:
  Patchset bump to fix the buffer overflow reported in bug #134951. Also
  disable the visibility patch if the compiler does not support
  -fvisibility=hidden.

*xine-lib-1.1.2_pre20060328-r8 (28 May 2006)

  28 May 2006; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.2_pre20060328-r8.ebuild:
  Bump patchset, added patch to fix FLAC reporting no audio (KDE Bug #128217.

  26 May 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2_pre20060328-r7.ebuild:
  Don't force un-parallel make.

  24 May 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2_pre20060328-r7.ebuild:
  Add ~x86-fbsd keyword.

*xine-lib-1.1.2_pre20060328-r7 (22 May 2006)

  22 May 2006; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.2_pre20060328-r7.ebuild:
  Add new revision with a patch to allow playing of m4b files.

  17 May 2006; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.2_pre20060328-r2.ebuild,
  -xine-lib-1.1.2_pre20060328-r5.ebuild:
  Drop old versions.

  14 May 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2_pre20060328-r6.ebuild:
  Filter -fforce-addr in any case, bug #132416.

*xine-lib-1.1.2_pre20060328-r6 (09 May 2006)

  09 May 2006; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.2_pre20060328-r6.ebuild:
  Add patch to play correctly 5.1 AAC streams.

  07 May 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2_pre20060328-r5.ebuild:
  Enable forcefully fast install.

  30 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2_pre20060328-r5.ebuild:
  Drop warning about omitted frame pointer as it's already fixed.

  26 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2_pre20060328-r5.ebuild:
  Remove extra flags handling for x86.

  26 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2_pre20060328-r5.ebuild:
  Bump patchset, to fix visibility of dvdnav plugin.

*xine-lib-1.1.2_pre20060328-r5 (26 Apr 2006)

  26 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.2_pre20060328-r4.ebuild,
  +xine-lib-1.1.2_pre20060328-r5.ebuild:
  Add new revision, restore internal copy of dvdnav or seeking is not
  possible. Bump patchset to fix build with constantize patch.

  26 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2_pre20060328-r4.ebuild:
  Bump patchset version, with an extra patch to mark constant some data
  structures to reduce memory usage, and enforce v4l useflag.

*xine-lib-1.1.2_pre20060328-r4 (26 Apr 2006)

  26 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.2_pre20060328-r3.ebuild,
  +xine-lib-1.1.2_pre20060328-r4.ebuild:
  New experimental revision, this time should build with all the options
  enabled and with minimum symbols.

*xine-lib-1.1.2_pre20060328-r3 (26 Apr 2006)

  26 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.2_pre20060328-r3.ebuild:
  Add experimental revision that changes the FAAD fix with an oculate use of
  -fvisibility=hidden, and also hide all the unneeded symbols on plugins to
  speed up loading. Use external libdvdnav library (as now it works).

*xine-lib-1.1.2_pre20060328-r2 (25 Apr 2006)

  25 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.2_pre20060328-r2.ebuild:
  Bump revision, to fix OSD horizontal lines (bug #131185) and finally bug
  #112921.

  24 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.1-r5.ebuild:
  Remove old version.

  22 Apr 2006; Guy Martin <gmsoft@gentoo.org>
  xine-lib-1.1.2_pre20060328-r1.ebuild:
  Stable on hppa.

  22 Apr 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  xine-lib-1.1.2_pre20060328-r1.ebuild:
  ppc stable, bug #128838

  22 Apr 2006; Thomas Cort <tcort@gentoo.org>
  xine-lib-1.1.2_pre20060328-r1.ebuild:
  Stable on amd64 wrt security Bug #128838.

  22 Apr 2006; Markus Rothe <corsair@gentoo.org>
  xine-lib-1.1.2_pre20060328-r1.ebuild:
  Stable on ppc64

  22 Apr 2006; Mark Loeser <halcy0n@gentoo.org>
  xine-lib-1.1.2_pre20060328-r1.ebuild:
  Stable on x86; bug #128838

  21 Apr 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  xine-lib-1.1.2_pre20060328-r1.ebuild:
  Stable on sparc wrt security #128838

  21 Apr 2006; Thomas Cort <tcort@gentoo.org>
  xine-lib-1.1.2_pre20060328-r1.ebuild:
  Stable on alpha wrt security Bug #128838.

  21 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2_pre20060328-r1.ebuild:
  Remove the mad big fat warning from last ebuild as it doesn't crash players
  anymore.

*xine-lib-1.1.2_pre20060328-r1 (20 Apr 2006)

  20 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.2_pre20060328.ebuild, +xine-lib-1.1.2_pre20060328-r1.ebuild:
  Add patch to fix access to authenticated HTTP streams. Thanks to Mark
  Kretschmann from the amaroK team for reporting and helping tracking it down.

  20 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2_pre20060328.ebuild:
  Bump patchlevel, add patch to fix crashes trying to play mp3s when mad is
  disabled.

  17 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.2_pre20060328.ebuild:
  Bump patchset to fix bug #130217. Fix dependencies over virtual/libintl and
  virtual/libiconv.

  06 Apr 2006; Thomas Cort <tcort@gentoo.org>
  xine-lib-1.1.2_pre20060328.ebuild:
  Added ~alpha keyword.

  06 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.1-r4.ebuild:
  Drop old version.

  06 Apr 2006; Thomas Cort <tcort@gentoo.org> xine-lib-1.1.1-r5.ebuild:
  Added ~alpha keyword wrt Bug #118526.

  06 Apr 2006; Patrick McLean <chutzpah@gentoo.org>
  xine-lib-1.1.1-r4.ebuild, xine-lib-1.1.1-r5.ebuild,
  xine-lib-1.1.2_pre20060328.ebuild:
  Grammar fix for the mad warning in pkg_postinst().

*xine-lib-1.1.2_pre20060328 (28 Mar 2006)

  28 Mar 2006; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.2_pre20060328.ebuild:
  Add CVS snapshot to test AAC support for who still has troubles with 1.1.1-r5.

  28 Mar 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r5.ebuild:
  Bump patchset to fix bug #127821.

  28 Mar 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r5.ebuild:
  Bump patchset with a minor fix.

*xine-lib-1.1.1-r5 (27 Mar 2006)

  27 Mar 2006; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.1-r5.ebuild:
  Add new version that allows to play aac/m4a files on 64-bit systems.

  21 Mar 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r4.ebuild:
  Bump patchset version to fix bug #124802.

  09 Feb 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r4.ebuild:
  Drop has_pic function. Leave at x86 arch team decide what to do.

  04 Feb 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r4.ebuild:
  Change nvidia, i8x0 and cle266 useflags to VIDEO_CARDS values (nvidia, i810
  and via), so that setting that variable is enough to get the right version
  of xvmc (or the wrapper if more than one value is present). Add warning
  about inability to play mp3s with -mad. Remove elibtoolize after
  eautoreconf, that is already took care by autotools.

  29 Jan 2006; Diego Pettenò <flameeyes@gentoo.org>
  -files/CVE-2005-4048.patch, -files/xine-lib-formatstring.patch,
  -xine-lib-1_rc8-r2.ebuild, -xine-lib-1.1.0.ebuild,
  -xine-lib-1.1.1-r2.ebuild, xine-lib-1.1.1-r3.ebuild:
  Drop old versions (dropping ~mips keyword, see bug #111561); remove -*
  keyword from newer ones. Remove orphan patches.

  12 Jan 2006; Markus Rothe <corsair@gentoo.org> xine-lib-1.1.1-r4.ebuild:
  Added ~ppc64

  12 Jan 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r3.ebuild, xine-lib-1.1.1-r4.ebuild:
  Bump also stable version to patchset 24 and allow to actually disable xvmc.

  12 Jan 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r4.ebuild:
  Allow to entirely disable XvMC and XxMC plugins with -xvmc.

  10 Jan 2006; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.0.1-r4.ebuild:
  Remove old version.

*xine-lib-1.1.1-r4 (10 Jan 2006)

  10 Jan 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r3.ebuild, +xine-lib-1.1.1-r4.ebuild:
  Bumped patchset to version 23, with patch to remove automatic detection of
  libmodplug. 1.1.1-r3 will disable modplug entirely, 1.1.1-r4 have modplug
  useflag (so some keywords were dropped).

  09 Jan 2006; Bryan Østergaard <kloeri@gentoo.org
  xine-lib-1.1.1-r3.ebuild:
  Stable on alpha, bug 116181.

  04 Jan 2006; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r3.ebuild:
  Bumped patchset to version 22, fixing bug #113255 (a part ffmpeg).

  03 Jan 2006; Bryan Østergaard <kloeri@gentoo.org
  xine-lib-1.1.1-r3.ebuild:
  ~alpha keyword, bug 116181.

  02 Jan 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  xine-lib-1.1.1-r3.ebuild:
  ppc stable, bug #116181

  01 Jan 2006; Simon Stelling <blubb@gentoo.org> xine-lib-1.1.1-r3.ebuild:
  stable on amd64 wrt bug 116181

  31 Dec 2005; Markus Rothe <corsair@gentoo.org> xine-lib-1.1.1-r3.ebuild:
  Stable on ppc64

  30 Dec 2005; Mark Loeser <halcy0n@gentoo.org> xine-lib-1.1.1-r3.ebuild:
  Stable on x86; bug #116181

  30 Dec 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  xine-lib-1.1.1-r3.ebuild:
  Stable on sparc wrt security #116181

  28 Dec 2005; Guy Martin <gmsoft@gentoo.org> xine-lib-1.1.1-r3.ebuild:
  That one compiles on hppa.

  26 Dec 2005; Luca Barbato <lu_zero@gentoo.org> xine-lib-1_rc8-r2.ebuild:
  oggvorbis Cleanup

  24 Dec 2005; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.0-r5.ebuild:
  Drop version 1.1.0-r5.

  24 Dec 2005; Bryan Østergaard <kloeri@gentoo.org
  xine-lib-1.1.1-r2.ebuild:
  Stable on alpha + ia64, bug 115849.

  20 Dec 2005; Mark Loeser <halcy0n@gentoo.org> xine-lib-1.1.1-r2.ebuild:
  Stable on x86; bug #115849

  19 Dec 2005; Michael Hanselmann <hansmi@gentoo.org>
  xine-lib-1.1.1-r2.ebuild:
  Stable on hppa.

  19 Dec 2005; Luis Medinas <metalgod@gentoo.org> xine-lib-1.1.1-r2.ebuild:
  Stable on amd64. See bug #115849.

  19 Dec 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r2.ebuild, xine-lib-1.1.1-r3.ebuild:
  Bump patchsets to add a build-fix for sparc, and mark sparc stable as per
  bug #115849 on gustavoz's behalf.

  18 Dec 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r3.ebuild:
  Don't use digilander, use Gentoo's mirror instead.

  17 Dec 2005; Michael Hanselmann <hansmi@gentoo.org>
  xine-lib-1.1.1-r2.ebuild:
  Stable on ppc. See bug #115849.

  17 Dec 2005; Markus Rothe <corsair@gentoo.org> xine-lib-1.1.1-r2.ebuild:
  Stable on ppc64; bug #115849

  17 Dec 2005; Luca Barbato <lu_zero@gentoo.org> xine-lib-1_rc8-r2.ebuild:
  Cleanup

  16 Dec 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r3.ebuild:
  Add patch to build fine with latest ffmpeg also when failing because of
  toolchain.

*xine-lib-1.1.1-r3 (16 Dec 2005)
*xine-lib-1.1.1-r2 (16 Dec 2005)

  16 Dec 2005; Diego Pettenò <flameeyes@gentoo.org>
  +files/CVE-2005-4048.patch, -xine-lib-1.1.0-r7.ebuild,
  -xine-lib-1.1.1.ebuild, -xine-lib-1.1.1-r1.ebuild,
  +xine-lib-1.1.1-r2.ebuild, +xine-lib-1.1.1-r3.ebuild:
  Added patch to fix ffmpeg problems, -r2 will always use internal ffmpeg, -r3
  will use the external if +ffmpeg is used. Don't force to not strip, as it
  seems to work fine anyway.

  29 Nov 2005; Jason Wever <weeve@gentoo.org> xine-lib-1.1.1-r1.ebuild:
  Added ~sparc keyword wrt bug #113107.

  23 Nov 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r1.ebuild:
  Update the patchset, disable win32codecs entirely when not requested. Fix
  building on FreeBSD.

  22 Nov 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.0.1-r4.ebuild, xine-lib-1.1.0.ebuild, xine-lib-1.1.0-r5.ebuild,
  xine-lib-1.1.0-r7.ebuild, xine-lib-1.1.1.ebuild, xine-lib-1.1.1-r1.ebuild:
  Use mirror://gentoo/ for patchsets.

  22 Nov 2005; Luca Barbato <lu_zero@gentoo.org> xine-lib-1.1.1-r1.ebuild:
  Marked ~ppc

  22 Nov 2005; Chris White <chriswhite@gentoo.org> xine-lib-1.1.1-r1.ebuild:
  Marked ~x86 xine-lib-1.1.1-r1 for bug #113107.

  21 Nov 2005; Markus Rothe <corsair@gentoo.org> xine-lib-1.1.1-r1.ebuild:
  Added ~ppc64 keyword; bug #113107

  21 Nov 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r1.ebuild:
  Add patch to replace -Os to -O2 to try to fix bug #113159.

  21 Nov 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r1.ebuild:
  Added debug useflag as per bug #112980.

  21 Nov 2005; Herbie Hopkins <herbs@gentoo.org> xine-lib-1.1.1-r1.ebuild:
  Marked ~amd64 wrt bug #113107.

  21 Nov 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r1.ebuild:
  Fix dep as per bug #113125. Repoman let this go :|

  20 Nov 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.1-r1.ebuild:
  Re-state ffmpeg dependency as I forgot to re-add it.

*xine-lib-1.1.1-r1 (20 Nov 2005)

  20 Nov 2005; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.1-r1.ebuild:
  New version with ffmpeg support, and asf dependant on asf useflag (allows to
  play audio of wma/wmv files using ffmpeg on non-x86 arches).

*xine-lib-1.1.1 (15 Nov 2005)

  15 Nov 2005; Diego Pettenò <flameeyes@gentoo.org> +xine-lib-1.1.1.ebuild:
  Updated to latest upstream version. ffmpeg useflag is disabled until a newer
  snapshot of ffmpeg is available, use the internal copy in the mean time.

*xine-lib-1.1.0-r7 (14 Nov 2005)

  14 Nov 2005; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.0-r6.ebuild, +xine-lib-1.1.0-r7.ebuild:
  Append LFS flags, as they seems to be needed for some files that does not
  include config.h as they should. Could fix problems people were having after
  removing optimisations.

  31 Oct 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1_rc8-r2.ebuild:
  Don't install INSTALL file.

  14 Oct 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.0-r6.ebuild:
  Different way to handle XvMC libraries: if more than one support is
  requested, don't enable xvmc at all, don't die.

  11 Oct 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.0-r6.ebuild:
  Don't try to use ffmpeg to decode mp3s if mad is not present, sounds like a
  bad idea at the moment. Might solve the flac problems that someone is
  having, or might not.

  09 Oct 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.0.1-r4.ebuild, xine-lib-1.1.0-r5.ebuild,
  xine-lib-1.1.0-r6.ebuild:
  Re-fix the virtual/os-headers as per bug #108074, the security fixes were
  out-of-sync.

*xine-lib-1.1.0-r6 (08 Oct 2005)
*xine-lib-1.1.0-r5 (08 Oct 2005)
*xine-lib-1.0.1-r4 (08 Oct 2005)
*xine-lib-1_rc8-r2 (08 Oct 2005)

  08 Oct 2005; Diego Pettenò <flameeyes@gentoo.org>
  +files/xine-lib-formatstring.patch, -xine-lib-1_rc8-r1.ebuild,
  +xine-lib-1_rc8-r2.ebuild, -xine-lib-1.0-r2.ebuild,
  -xine-lib-1.0.1-r3.ebuild, +xine-lib-1.0.1-r4.ebuild,
  -xine-lib-1.0.2.ebuild, -xine-lib-1.1.0-r3.ebuild,
  -xine-lib-1.1.0-r4.ebuild, +xine-lib-1.1.0-r5.ebuild,
  +xine-lib-1.1.0-r6.ebuild:
  Added patch wrt #107854.

  04 Oct 2005; Hardave Riar <hardave@gentoo.org> xine-lib-1.1.0.ebuild:
  Keyworded ~mips.

  04 Oct 2005; Diego Pettenò <flameeyes@gentoo.org> xine-lib-1.0-r2.ebuild,
  xine-lib-1.0.1-r3.ebuild, xine-lib-1.0.2.ebuild, xine-lib-1.1.0.ebuild,
  xine-lib-1.1.0-r3.ebuild, xine-lib-1.1.0-r4.ebuild:
  Change linux-headers to virtual/os-headers for v4l dependency. Fixes bug
  #108074.

  14 Sep 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.0-r4.ebuild:
  Fix dependencies for modular Xorg.

  13 Sep 2005; Aron Griffis <agriffis@gentoo.org> xine-lib-1.1.0.ebuild:
  Mark 1.1.0 stable on alpha

  11 Sep 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.0-r4.ebuild:
  Added patch to compile on x86 with GCC4. Closes #104966.

*xine-lib-1.1.0-r4 (08 Sep 2005)

  08 Sep 2005; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.0-r4.ebuild:
  Added new revision with ffmpeg useflag to enable external ffmpeg as it was
  done for 1.0.1. Dropped ~hppa and ~arm keywords as they don't have the
  latest ffmpeg version that is needed.

  05 Sep 2005; Olivier Crête <tester@gentoo.org> xine-lib-1.1.0-r3.ebuild:
  Added strip-flags -momit-leaf-frame-pointer, see bug #104189

  05 Sep 2005; Markus Rothe <corsair@gentoo.org> xine-lib-1.1.0.ebuild:
  Stable on ppc64

  05 Sep 2005; Diego Pettenò <flameeyes@gentoo.org> xine-lib-1.0-r2.ebuild,
  xine-lib-1.0.1-r3.ebuild, xine-lib-1.0.2.ebuild, xine-lib-1.1.0.ebuild,
  xine-lib-1.1.0-r3.ebuild:
  Call elibtoolize after all autotool support is rebuilt.

*xine-lib-1.1.0-r3 (03 Sep 2005)

  03 Sep 2005; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.0-r2.ebuild, +xine-lib-1.1.0-r3.ebuild:
  Added patch to fix internal faad in xine-lib. Thanks to Dan Doel in bug
  #102775.

  02 Sep 2005; Diego Pettenò <flameeyes@gentoo.org> metadata.xml:
  Taking direct maintainership.

  02 Sep 2005; Stefan Briesenick <sbriesen@gentoo.org>
  xine-lib-1.1.0-r2.ebuild:
  filter -fforce-addr on x86, since it breaks ffmpeg module.

  02 Sep 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.0-r2.ebuild:
  Cleanup of eautoreconf call to use the new style AT_M4DIR variable. Use at
  least -O2 on x86 to build. Fix xvmc library name missing, thanks to Torsten
  Tetteroo in bug #104600.

  30 Aug 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.0-r2.ebuild:
  On x86 we need to force a few more flags. Added a workaround section for it
  and a warning about the unusable debug information caused by
  -fomit-frame-pointer.

  29 Aug 2005; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1_rc6-r2.ebuild, xine-lib-1.1.0-r2.ebuild:
  Removed 1_rc6-r2 ebuild now that sparc has a better stable.

*xine-lib-1.1.0-r2 (29 Aug 2005)

  29 Aug 2005; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.1.0-r1.ebuild, +xine-lib-1.1.0-r2.ebuild:
  Added patch to avoid adding extra cflags if user doesn't provide them.
  Removed cflags filtering, as now it should be less picky with them (and most
  of them was related to rc versions). Removed -r1 as that seemed to crash
  pretty badly with some DVDs. With this version it should be possible to have
  useful backtraces, too.

  24 Aug 2005; Aron Griffis <agriffis@gentoo.org> xine-lib-1.1.0.ebuild:
  stable on ia64

  24 Aug 2005; Gustavo Zacarias <gustavoz@gentoo.org> xine-lib-1.1.0.ebuild:
  Stable on sparc wrt #98805 and others

  24 Aug 2005; Aron Griffis <agriffis@gentoo.org> xine-lib-1.0.1-r3.ebuild:
  stable on ia64

  18 Aug 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.1.0-r1.ebuild:
  Added patch to let sdl support compile on FreeBSD.

*xine-lib-1.1.0-r1 (18 Aug 2005)

  18 Aug 2005; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.1.0-r1.ebuild:
  New patch to use external libraries for a52, mad and dts and make them
  optional. Xine built with -mad now will not play mp3s. Ebuild cleanup.

  13 Aug 2005; Diego Pettenò <flameeyes@gentoo.org> xine-lib-1.0-r2.ebuild,
  xine-lib-1.0.1-r3.ebuild, xine-lib-1.0.2.ebuild, xine-lib-1.1.0.ebuild:
  Added use_enable gnome that was missing. Thanks to Petteri Räty in bug
  #102005.

  07 Aug 2005; Diego Pettenò <flameeyes@gentoo.org> xine-lib-1.1.0.ebuild:
  Updated 02_all_pic.patch for hardened toolchain.

  05 Aug 2005; Diego Pettenò <flameeyes@gentoo.org> xine-lib-1.1.0.ebuild:
  Updated dependencies (dropped libpng dependency, added imagemagick with
  imagemagick useflag). Removed dataflow.dia from docs as is present no more.
  Use tc-arch to get the local architecture (fix for G/FBSD). Get rid of [ ]
  in favour of [[ ]].

  31 Jul 2005; Diego Pettenò <flameeyes@gentoo.org>
  -xine-lib-1.0-r3.ebuild, -xine-lib-1.0-r4.ebuild,
  -xine-lib-1.0.1-r1.ebuild, -xine-lib-1.0.1-r2.ebuild:
  Removed old versions.

  30 Jul 2005; Diego Pettenò <flameeyes@gentoo.org> xine-lib-1.1.0.ebuild:
  Exclude two fbsd patches that are going to be dropped in the next patchset.

  28 Jul 2005; Diego Pettenò <flameeyes@gentoo.org> xine-lib-1.1.0.ebuild:
  Updated patches for last version, removed unused patches, added patch for
  Gentoo/FreeBSD compatibility.

  27 Jul 2005; Diego Pettenò <flameeyes@gentoo.org> xine-lib-1.1.0.ebuild:
  Exclude vidix patch as per bug #100434.

*xine-lib-1.1.0 (26 Jul 2005)

  26 Jul 2005; Diego Pettenò <flameeyes@gentoo.org> +xine-lib-1.1.0.ebuild:
  Added upstrea 1.1.0 version, external FFMPEG disabled as it needs a newer
  version than the snapshot we have.

*xine-lib-1.0.2 (26 Jul 2005)

  26 Jul 2005; Diego Pettenò <flameeyes@gentoo.org> +xine-lib-1.0.2.ebuild:
  New upstream version (1.0.2).

  16 Jul 2005; Joseph Jezak <josejx@gentoo.org> xine-lib-1.0.1-r3.ebuild:
  Marked ppc stable for bug #98805.

  13 Jul 2005; Markus Rothe <corsair@gentoo.org> xine-lib-1.0.1-r3.ebuild:
  Stable on ppc64 (bug #98805)

  12 Jul 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.0.1-r3.ebuild:
  Marked stable on amd64.

  01 Jul 2005; Sven Wegener <swegener@gentoo.org> xine-lib-1_rc6-r2.ebuild,
  xine-lib-1_rc8-r1.ebuild:
  QA: Clean up the amd64? ( X? ( ) ) dependencies.

*xine-lib-1.0.1-r3 (29 May 2005)

  29 May 2005; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.0.1-r3.ebuild:
  New revision, with patch to fix 64-bit byteswapping on non-x86 arches.

*xine-lib-1.0.1-r2 (26 May 2005)

  26 May 2005; Diego Pettenò <flameeyes@gentoo.org>
  +xine-lib-1.0.1-r2.ebuild:
  New revision with FreeBSD's ports patches (for compatibility with
  Gentoo/FreeBSD) and external a52dec and libmad (via useflags).

  15 May 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.0.1-r1.ebuild:
  Cleanup of ebuild: using $() syntax for command expansion; better check for
  gcc 3.4 or better (consider gcc 4).

  15 May 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1_rc6-r2.ebuild, xine-lib-1_rc8-r1.ebuild,
  xine-lib-1.0-r2.ebuild, xine-lib-1.0-r3.ebuild, xine-lib-1.0-r4.ebuild,
  xine-lib-1.0.1-r1.ebuild:
  Moved to toolchain-funcs eclass.

  09 May 2005; Aron Griffis <agriffis@gentoo.org> xine-lib-1.0-r2.ebuild:
  stable on ia64

  07 May 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.0.1-r1.ebuild:
  Add patch to fix vidix compilation with gcc4. Fixes #90868.

  30 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1.0.1-r1.ebuild:
  Make xine-lib depend on fame just for dxr3 support.

  29 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  xine-lib-1_rc6-r2.ebuild, xine-lib-1_rc8-r1.ebuild,
  xine-lib-1.0-r2.ebuild, xine-lib-1.0-r3.ebuild, xine-lib-1.0-r4.ebuild,
  xine-lib-1.0.1-r1.ebuild:
  Fixed patchset urls.

  29 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  -files/protect-CFLAGS.patch-1_rc6,
  -files/xine-lib-1_rc6-configure-sparc.patch,
  -files/xine-lib-1_rc6-mmx.patch, -files/xine-lib-1_rc6-2.6.patch,
  -files/xine-lib-1_rc6-pic.patch, -files/xine-lib-1_rc7-2.6.patch,
  -files/xine-lib-1_rc7-configure-sparc.patch,
  -files/xine-lib-1_rc7-mmx.patch, -files/xine-lib-1_rc7-pic.patch,
  -files/xine-lib-1.0-wma.patch, -files/xine-lib-1_rc6-XSA-2004-8.patch,
  -files/xine-lib-1_rc8-configure.ac.patch,
  -files/xine-lib-XSA-2004-8.patch, -files/djb_demux_aiff.patch,
  -files/xine-lib-configure.ac.patch,
  -files/xine-lib-configure-checks.patch,
  -files/xine-lib-configure-xvmc-header.patch, -files/xine-lib-gcc4.patch,
  -files/xine-lib-hardened-mmx.patch, -files/xine-lib-x11.patch,
  xine-lib-1_rc6-r2.ebuild, xine-lib-1_rc8-r1.ebuild,
  xine-lib-1.0-r2.ebuild, xine-lib-1.0-r3.ebuild, xine-lib-1.0-r4.ebuild:
  Removed all the patches from FILESDIR and moved them on patch tarballs.

*xine-lib-1.0.1-r1 (29 Apr 2005)

  29 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  -files/xine-lib-1.0.1-configurebis.patch, -xine-lib-1.0.1.ebuild,
  +xine-lib-1.0.1-r1.ebuild:
  Added a patch to fix that XvMC thing which got more b0rked with 1.0.1 
  release, fixes #90776. Moved patches on an external tarball without 
  having to have them in FILESDIR.

  26 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  -files/xine-lib-0.9.12-r2-directfb.patch, -files/xineconfig.patch-0.9.13,
  -files/xine-lib-0.9.13-kxine.patch, -files/protect-CFLAGS.patch-1_rc2,
  -files/protect-CFLAGS.patch-1_rc3, -files/protect-CFLAGS.patch-1_rc4,
  -files/protect-CFLAGS.patch-1_rc5-r1,
  -files/xine-lib-1-rc4-sparc_missing_include.patch,
  -files/xine-lib-1_rc5-configure-sparc.patch,
  -files/xine-lib-1_rc5-vcd_overflow.patch,
  -files/xine-lib-1_rc6-ffmpeg.patch,
  -files/xine-lib-1rc4-libtool1.5.6.shrext_cmds.patch,
  -files/xine-lib-2.6.patch, -files/configure-64bit-define.patch,
  -files/xine-lib-configure.patch, -files/xine-lib-disable-directfb.patch,
  -files/xine-lib-gcc34.patch:
  Removed unused and unneeded files in FILESDIR.

  26 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  +files/xine-lib-1.0.1-configurebis.patch, -xine-lib-1_rc6-r1.ebuild,
  -xine-lib-1.0.ebuild, -xine-lib-1.0-r1.ebuild, xine-lib-1.0.1.ebuild:
  Added incremental patch to fix my wrong configure patch, fixes #90525.
  Removed old vulnerable versions a part from rc8-r1.

  26 Apr 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  xine-lib-1_rc6-r2.ebuild:
  Stable on sparc wrt #89976

*xine-lib-1.0.1 (26 Apr 2005)

  26 Apr 2005; Diego Pettenò <flameeyes@gentoo.org> +xine-lib-1.0.1.ebuild:
  Added new upstream version 1.0.1, with new configure patch. Dropped patches
  applied upstream. Made speex useflag be honoured.

*xine-lib-1_rc6-r2 (25 Apr 2005)

  25 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  +files/xine-lib-1_rc6-XSA-2004-8.patch, +xine-lib-1_rc6-r2.ebuild:
  Backported XSA-2004-8 patch to 1_rc6 as 1.0 doesn't work on sparc.

  25 Apr 2005; Martin Schlemmer <azarah@gentoo.org>
  files/xine-lib-gcc4.patch:
  Add another hunk required to build with gcc4.

*xine-lib-1.0-r4 (24 Apr 2005)

  24 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  +files/xine-lib-1.0-wma.patch, +xine-lib-1.0-r4.ebuild:
  Added vcd useflag which adds dependency on vcdimager as it's needed to 
  view vcds. Fixes #90176.
  Fixed location of documentation, now everything is installed in the 
  right docdir and /usr/share/doc/xine is gone.
  Added patch to support wma lossless fileformat (using win32codecs). Fixes
  #90086.

  24 Apr 2005; Michael Hanselmann <hansmi@gentoo.org>
  xine-lib-1.0-r2.ebuild:
  Stable on hppa.

  24 Apr 2005; Bryan Østergaard <kloeri@gentoo.org> xine-lib-1.0-r2.ebuild:
  Stable on alpha.

  24 Apr 2005; Markus Rothe <corsair@gentoo.org> xine-lib-1.0-r2.ebuild:
  Stable on ppc64; bug #89976

  23 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  files/xine-lib-gcc4.patch:
  Fixed patch for gcc4 with a bit better pointer arithmetic.

  23 Apr 2005; Jan Brinkmann <luckyduck@gentoo.org> xine-lib-1.0-r2.ebuild:
  stable on x86 wrt #89976

  22 Apr 2005; Simon Stelling <blubb@gentoo.org> xine-lib-1.0-r2.ebuild:
  stable on amd64 wrt bug 89976

  22 Apr 2005; Michael Hanselmann <hansmi@gentoo.org>
  xine-lib-1.0-r2.ebuild:
  Stable on ppc.

*xine-lib-1.0-r3 (22 Apr 2005)

  22 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  +files/xine-lib-gcc4.patch, +xine-lib-1.0-r3.ebuild:
  Added new revision with patch to compile with GCC 4.0.0, fixes #89935.
  Moving to -r3 as -r2 is a stable target for now.

*xine-lib-1.0-r2 (21 Apr 2005)

  21 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  +files/xine-lib-XSA-2004-8.patch, +xine-lib-1.0-r2.ebuild:
  Added new revision with security fix.

  13 Apr 2005; Luca Barbato <lu_zero@gentoo.org> xine-lib-1.0-r1.ebuild:
  useflag oggvorbis deprecated

*xine-lib-1.0-r1 (13 Apr 2005)

  13 Apr 2005; Jan Brinkmann <luckyduck@gentoo.org>
  +files/xine-lib-configure-checks.patch,
  +files/xine-lib-configure-xvmc-header.patch, +xine-lib-1.0-r1.ebuild:
  added 2 patches which were provided Diego Pettenò
  <dgp85@users.sourceforge.net> who seems to be busy as a bee, like always.
  fixes #88869

  11 Apr 2005; Jan Brinkmann <luckyduck@gentoo.org> metadata.xml,
  xine-lib-1.0.ebuild:
  corrected if syntax, fixes #88551. updated maintainer information, chriswhite
  is retired.

  28 Mar 2005; Chris White <chriswhite@gentoo.org> xine-lib-1.0.ebuild:
  Fixed the pic logic that was breaking lots of stuff.

  17 Mar 2005; Sven Wegener <swegener@gentoo.org> xine-lib-1.0.ebuild:
  Fixed invalid atoms in *DEPEND.

  17 Mar 2005; Chris White <chriswhite@gentoo.org> xine-lib-1.0.ebuild:
  Specifically targeted latest ffmpeg as dep target. Regression of ppc64.
  dostrow and corsair are aware of this.

  01 Mar 2005; Chris White <chriswhite@gentoo.org> xine-lib-1.0.ebuild:
  Fixed bug #82571.  Also added in external ffmpeg support.

  17 Feb 2005; Markus Rothe <corsair@gentoo.org> xine-lib-1.0.ebuild:
  Stable on ppc64

  08 Feb 2005; Chris White <chriswhite@gentoo.org> xine-lib-1.0.ebuild:
  Fixed bug #76090 (aalib and libcaca hard links).

  08 Feb 2005; Chris White <chriswhite@gentoo.org> xine-lib-1.0.ebuild,
  xine-lib-1_rc6-r1.ebuild, xine-lib-1_rc8-r1.ebuild:
  Removing symbol stripping as it appears to be the cause of a few ffmpeg
  related packages crashing.

  15 Jan 2005; Jan Brinkmann <luckyduck@gentoo.org> xine-lib-1.0.ebuild,
  xine-lib-1_rc6-r1.ebuild, xine-lib-1_rc8-r1.ebuild:
  changed X dependency to virtual/x11. fixes bug #78046.

*xine-lib-1_rc8-r1 (07 Jan 2005)

  07 Jan 2005; Chris White <chriswhite@gentoo.org> xine-lib-1_rc8-r1.ebuild:
  xv support is patched in xine-lib, and it no longer requires the use flag.
  Removing that as well as the logic, as the logic breaks stuff.

  06 Jan 2005; Jeremy Huddleston <eradicator@gentoo.org>
  -xine-lib-1_rc5-r3.ebuild, -xine-lib-1_rc6.ebuild, -xine-lib-1_rc7.ebuild,
  -xine-lib-1_rc8.ebuild:
  Purging insecure versions from the tree.

  05 Jan 2005; Jeremy Huddleston <eradicator@gentoo.org>
  xine-lib-1_rc6-r1.ebuild:
  Stable sparc for security fix.

*xine-lib-1_rc8 (05 Jan 2005)

  05 Jan 2005; Jeremy Huddleston <eradicator@gentoo.org>
  xine-lib-1.0.ebuild, +xine-lib-1_rc6-r1.ebuild, xine-lib-1_rc6.ebuild,
  xine-lib-1_rc7.ebuild, xine-lib-1_rc8.ebuild:
  Add security fix to a 1_rc6 release dor sparc since we're having problems on
  later versions. Not stable as I haven't been able to test it yet. Removed
  IUSE=pic for conditionally applying the pic fix as it should always be
  applied.