summaryrefslogtreecommitdiff
blob: 1251ad57afa1e002ecc2d10a2bb394b5815471e8 (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
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
# ChangeLog for media-video/mplayer
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/media-video/mplayer/ChangeLog,v 1.949 2015/08/02 09:01:50 pacho Exp $

  02 Aug 2015; Pacho Ramos <pacho@gentoo.org>
  mplayer-1.2_pre20150214-r1.ebuild:
  sparc stable wrt bug #551972

*mplayer-1.2_pre20150730 (30 Jul 2015)

  30 Jul 2015; Alexis Ballier <aballier@gentoo.org>
  +mplayer-1.2_pre20150730.ebuild, mplayer-9999.ebuild:
  bump a new snapshot, fixing bug #538186

  27 Jul 2015; Jeroen Roovers <jer@gentoo.org>
  mplayer-1.2_pre20150214-r1.ebuild:
  Stable for PPC64 (bug #551972).

  25 Jul 2015; Pacho Ramos <pacho@gentoo.org> mplayer-1.2_pre20150214-r1.ebuild:
  amd64 stable, bug #551972

  23 Jul 2015; Pacho Ramos <pacho@gentoo.org>
  mplayer-1.2_pre20150214-r1.ebuild:
  ppc stable wrt bug #551972

  16 Jul 2015; Tobias Klausmann <klausman@gentoo.org>
  mplayer-1.2_pre20150214-r1.ebuild:
  Stable on alpha, bug 551972

  11 Jul 2015; Markus Meier <maekke@gentoo.org>
  mplayer-1.2_pre20150214-r1.ebuild:
  arm stable, bug #551972

  22 Jun 2015; Pacho Ramos <pacho@gentoo.org> mplayer-1.2_pre20150214-r1.ebuild:
  Needs to be rebuilt with ffmpeg subslot bumps

  14 Jun 2015; Markus Meier <maekke@gentoo.org> mplayer-1.2_pre20150214.ebuild:
  arm stable, bug #547668

*mplayer-1.2_pre20150214-r1 (13 Jun 2015)

  13 Jun 2015; Pacho Ramos <pacho@gentoo.org>
  +files/mplayer-1.2_pre20150214-pulseaudio-6.0.patch,
  +mplayer-1.2_pre20150214-r1.ebuild:
  Let it work with pulseaudio-6.0, bug #549680 by Matthew Stapleton

  29 May 2015; Jeroen Roovers <jer@gentoo.org> mplayer-1.2_pre20150214.ebuild:
  Stable for HPPA (bug #547668).

  15 May 2015; Pacho Ramos <pacho@gentoo.org> mplayer-1.2_pre20150214.ebuild:
  amd64/ppc/ppc64/x86 stable, bug #547668

  05 May 2015; Jeroen Roovers <jer@gentoo.org> mplayer-1.2_pre20130729.ebuild:
  Stable for PPC64 (bug #517692).

  15 Mar 2015; Ulrich Müller <ulm@gentoo.org> mplayer-1.1.1-r1.ebuild,
  mplayer-1.2_pre20130729.ebuild, mplayer-1.2_pre20141011.ebuild,
  mplayer-1.2_pre20150214.ebuild, mplayer-9999.ebuild, metadata.xml:
  Add conditional bindist restriction and remove bindist USE flag, bug 541594.

  02 Mar 2015; Agostino Sarubbo <ago@gentoo.org> mplayer-1.2_pre20130729.ebuild:
  Stable for ppc, wrt bug #517692

  14 Feb 2015; Alexis Ballier <aballier@gentoo.org>
  mplayer-1.2_pre20150214.ebuild, mplayer-9999.ebuild:
  fix libpng dep

*mplayer-1.2_pre20150214 (14 Feb 2015)

  14 Feb 2015; Alexis Ballier <aballier@gentoo.org>
  +mplayer-1.2_pre20150214.ebuild, files/dump_ffmpeg.sh:
  bump a new snapshot that fixes bug #540062

  30 Jan 2015; Michał Górny <mgorny@gentoo.org> metadata.xml,
  mplayer-1.1.1-r1.ebuild, mplayer-1.2_pre20130729.ebuild,
  mplayer-1.2_pre20141011.ebuild, mplayer-9999.ebuild:
  Convert to CPU_FLAGS_X86.

  15 Dec 2014; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  update for recent upstream changes on internal dvd libs, bug #528706 by Dan
  Douglas

  15 Dec 2014; Alexis Ballier <aballier@gentoo.org>
  mplayer-1.2_pre20141011.ebuild:
  drop keywords on arches that are 6+ months late in ffmpeg rekeywording, which
  version is needed by this snapshot

  02 Nov 2014; Sven Vermeulen <swift@gentoo.org> mplayer-1.2_pre20130729.ebuild,
  mplayer-1.2_pre20141011.ebuild, mplayer-9999.ebuild:
  Remove sec-policy/selinux-* dependency from DEPEND but keep in RDEPEND (bug
  #527698)

  17 Oct 2014; Tobias Klausmann <klausman@gentoo.org>
  mplayer-1.2_pre20130729.ebuild:
  Stable on alpha, bug 517692

  12 Oct 2014; Alexis Ballier <aballier@gentoo.org>
  mplayer-1.2_pre20141011.ebuild, mplayer-9999.ebuild:
  require ffmpeg on latest versions as it doesnt build with libav, bug #525070

*mplayer-1.2_pre20141011 (11 Oct 2014)

  11 Oct 2014; Alexis Ballier <aballier@gentoo.org>
  +mplayer-1.2_pre20141011.ebuild:
  bump a new snapshot, bug #524570

  11 Oct 2014; Alexis Ballier <aballier@gentoo.org> files/dump_ffmpeg.sh:
  dump_ffmpeg.sh: no need for x86_cpu.h nor lavf/internal.h anymore

  01 Sep 2014; Michał Górny <mgorny@gentoo.org> mplayer-1.2_pre20130729.ebuild,
  mplayer-9999.ebuild:
  Remove := subslot operator from || () block since it is meaningless and
  broken.

  31 Jul 2014; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.2_pre20130729.ebuild:
  amd64/x86 stable wrt #517692

  31 Jul 2014; Jeroen Roovers <jer@gentoo.org> mplayer-1.2_pre20130729.ebuild:
  Stable for HPPA (bug #517692).

  29 Jul 2014; Markus Meier <maekke@gentoo.org> mplayer-1.2_pre20130729.ebuild:
  arm stable, bug #517692

  28 Jul 2014; Patrick Lauer <patrick@gentoo.org> metadata.xml,
  mplayer-1.1.1-r1.ebuild, mplayer-1.2_pre20130729.ebuild:
  Prune dxr3 useflag as em8300-libraries is on the way out

  27 Jul 2014; Pacho Ramos <pacho@gentoo.org> mplayer-9999.ebuild:
  Drop dxr3 due bug #414903

  23 Jul 2014; Rick Farina <zerochaos@gentoo.org>
  mplayer-1.2_pre20130729.ebuild, mplayer-9999.ebuild:
  adding := to libass dep

  21 Jul 2014; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.2_pre20130729.ebuild, mplayer-9999.ebuild:
  Fix building by moving replacing of LINGUAS="zh" to LINGUAS="zh_CN" from
  src_compile() to src_configure() wrt #482968 by "Hamlet"
  However, should port strip-linguas() from eutils.eclass to mplayer's ebuild
  because LINGUAS="zh zh_CN" works but LINGUAS="zh_CN zh" ends up as
  LINGUAS="zh_CN_CN zh" which isn't fatal but will prevent installation
  of documentation.

  21 Jul 2014; Rick Farina <zerochaos@gentoo.org>
  mplayer-1.2_pre20130729.ebuild, mplayer-9999.ebuild:
  adding := to libmng with permissions from ssuominen

  17 May 2014; Sven Vermeulen <swift@gentoo.org> mplayer-1.1.1-r1.ebuild,
  mplayer-1.2_pre20130729.ebuild, mplayer-9999.ebuild:
  Fix bug #509740 - Add USE=selinux dependency to sec-policy/selinux-mplayer

  06 Feb 2014; Michael Palimaka <kensington@gentoo.org> mplayer-1.1.1-r1.ebuild,
  mplayer-1.2_pre20130729.ebuild, mplayer-9999.ebuild:
  Pin virtual/jpeg to SLOT 0.

  25 Sep 2013; Justin Lecher <jlec@gentoo.org> mplayer-1.2_pre20130729.ebuild,
  mplayer-9999.ebuild, metadata.xml:
  Fix typo

  11 Aug 2013; Alexis Ballier <aballier@gentoo.org>
  mplayer-1.2_pre20130729.ebuild, mplayer-9999.ebuild:
  depend on ffmpeg:0

*mplayer-1.2_pre20130729 (29 Jul 2013)

  29 Jul 2013; Alexis Ballier <aballier@gentoo.org>
  +mplayer-1.2_pre20130729.ebuild, +files/mplayer-1.2_pre20130729-compat.patch:
  Bump a snapshot. Should fix bug #478154 and bug #476502.

  29 Jul 2013; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  allow snapshots named _pre

  29 Jul 2013; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  Add a warning for libav users.

  29 Jul 2013; Alexis Ballier <aballier@gentoo.org> files/prepare_mplayer.sh:
  Fix ffmpeg clone URL and bump version in the snapshotter.

  29 Jul 2013; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  Drop some more default enabled useflags.

  29 Jul 2013; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  do not default enable rtc, by Nikoli, bug #476316

  29 Jul 2013; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  remove comment about win32codecs

  29 Jul 2013; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  Sort alphabetically REQUIRED_USE entries and make enca require iconv, by
  Nikoli, bug #476322.

  29 Jul 2013; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  EAPI5, add slot dep on ffmpeg, x264 and libav. Fix ffmpeg dep.

  28 Jul 2013; Alexis Ballier <aballier@gentoo.org> mplayer-1.1.1-r1.ebuild,
  mplayer-9999.ebuild:
  keyword ~amd64-fbsd, bug #477750

  02 Jul 2013; Alexis Ballier <aballier@gentoo.org> -mplayer-1.1-r1.ebuild,
  -mplayer-1.1.1.ebuild:
  remove old

  29 Jun 2013; Agostino Sarubbo <ago@gentoo.org> mplayer-1.1.1-r1.ebuild:
  Stable for ppc, wrt bug #473236

  29 Jun 2013; Agostino Sarubbo <ago@gentoo.org> mplayer-1.1.1-r1.ebuild:
  Stable for sparc, wrt bug #473236

  26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> mplayer-1.1.1-r1.ebuild:
  Stable for arm, wrt bug #473236

  26 Jun 2013; Jeroen Roovers <jer@gentoo.org> mplayer-1.1.1-r1.ebuild:
  Stable for HPPA (bug #473236).

  26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> mplayer-1.1.1-r1.ebuild:
  Stable for ia64, wrt bug #473236

  26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> mplayer-1.1.1-r1.ebuild:
  Stable for alpha, wrt bug #473236

  25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> mplayer-1.1.1-r1.ebuild:
  Stable for amd64, wrt bug #473236

  25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> mplayer-1.1.1-r1.ebuild:
  Stable for x86, wrt bug #473236

  25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> mplayer-1.1.1-r1.ebuild:
  Stable for ppc64, wrt bug #473236

*mplayer-1.1.1-r1 (14 Jun 2013)

  14 Jun 2013; Alexis Ballier <aballier@gentoo.org> +mplayer-1.1.1-r1.ebuild,
  files/mplayer-1.1-libav-9.patch, +files/mplayer-1.1.1-avcodecidsubrip.patch,
  +files/mplayer-1.1.1-codecidsubrip.patch:
  Fix subtitles in mkv with recent ffmpeg, bug #463588. Also fix a wrong hunk
  in the libav-9 patch.

  13 Jun 2013; Ulrich Müller <ulm@gentoo.org> mplayer-1.1-r1.ebuild,
  mplayer-1.1.1.ebuild, metadata.xml:
  Remove real USE flag, bug 473206.

  13 Jun 2013; Michael Weber <xmw@gentoo.org> mplayer-1.1-r1.ebuild,
  mplayer-1.1.1.ebuild, mplayer-9999.ebuild:
  Depend on SLOT=0 of media-libs/openjpeg (bug 440086)

  16 May 2013; Ulrich Müller <ulm@gentoo.org> mplayer-1.1-r1.ebuild,
  mplayer-1.1.1.ebuild, mplayer-9999.ebuild:
  Remove win32codecs USE flag, bug 468406.

*mplayer-1.1.1 (08 May 2013)

  08 May 2013; Alexis Ballier <aballier@gentoo.org> +mplayer-1.1.1.ebuild:
  Version bump, bug #468880. Not many changes for us: playlist fixes and safety
  measures.

  13 Apr 2013; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  trunk now requires ffmpeg 1.1, reported in bug #463588 by foux

  21 Mar 2013; Samuli Suominen <ssuominen@gentoo.org> mplayer-1.1-r1.ebuild,
  mplayer-9999.ebuild:
  Use /dev/cdrom instead of /dev/dvd as default DVD device:
  http://forums.gentoo.org/viewtopic-t-954272-highlight-.html

  14 Feb 2013; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  It seems fine with libav-9 so allow it in the deps

  08 Feb 2013; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  Merge all binary codec support under win32codecs useflag

  08 Feb 2013; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  disable libilbc for the same reason as libopus: it is for internal ffmpeg
  only.

  08 Feb 2013; Alexis Ballier <aballier@gentoo.org> mplayer-1.1-r1.ebuild,
  mplayer-9999.ebuild:
  let mplayer find by itself the binary codec dir, should fix bug #320087

  08 Feb 2013; Alexis Ballier <aballier@gentoo.org> metadata.xml:
  describe bindist as enforcing REQUIRED_USE, bug #369251

  08 Feb 2013; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  disable opus since it only controls opus support in internal ffmpeg which we
  do not use, bug #434258

  08 Feb 2013; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  fix and simplify tremor and vorbis useflags by using external tremor, bug
  #437594

  08 Feb 2013; Alexis Ballier <aballier@gentoo.org>
  -mplayer-1.0_rc4_p20110322-r1.ebuild,
  -files/mplayer-1.0_rc4_p20110322-gcc46.patch,
  -files/mplayer-1.0_rc4_p20110322-sami_subtitle_parsing.patch:
  remove old

  17 Jan 2013; Alexis Ballier <aballier@gentoo.org>
  -mplayer-1.0_rc4_p20120213.ebuild, -mplayer-1.0_rc4_p20120405.ebuild,
  -files/ffmpeg.patch, -files/ffmpeg2.patch:
  remove old

  17 Jan 2013; Alexis Ballier <aballier@gentoo.org> mplayer-1.1-r1.ebuild,
  +files/mplayer-1.1-missingbreak.patch:
  Addendum to the planar formats support patch from upstream

  17 Jan 2013; Alexis Ballier <aballier@gentoo.org> mplayer-1.1-r1.ebuild:
  we need ffmpeg-1.1 for the libav-9 patch

  17 Jan 2013; Alexis Ballier <aballier@gentoo.org> mplayer-1.1-r1.ebuild,
  +files/mplayer-1.1-planaraudio.patch:
  Add support for planar audio with ffmpeg-1 or libav-9, this should fix AC3
  decoding with ffmpeg and as a consequence bug #452052

  17 Jan 2013; Alexis Ballier <aballier@gentoo.org> mplayer-1.1-r1.ebuild:
  Apply only conditionally the libav-9 patch since it breaks with all
  non-masked version of ffmpeg or libav...

  17 Jan 2013; Luca Barbato <lu_zero@gentoo.org> mplayer-1.1-r1.ebuild,
  +files/mplayer-1.1-libav-9.patch:
  Add support for libav-9 as well.

  16 Jan 2013; Tomáš Chvátal <scarabeus@gentoo.org>
  +files/mplayer-1.1-libav-0.8.patch, mplayer-1.1-r1.ebuild:
  Build with system libav-0.8. Still fails a bit with libav9.

  16 Jan 2013; Samuli Suominen <ssuominen@gentoo.org> mplayer-1.1-r1.ebuild:
  Fix compability with dev-libs/libcdio-paranoia.

  26 Nov 2012; Tomáš Chvátal <scarabeus@gentoo.org> metadata.xml:
  Update to global useflag.

  25 Nov 2012; Raúl Porcel <armin76@gentoo.org> mplayer-1.1-r1.ebuild:
  alpha/ia64/sparc stable wrt #394809

  25 Oct 2012; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  internal mp3lib is gone, no need to disable it anymore

  21 Oct 2012; Anthony G. Basile <blueness@gentoo.org> mplayer-1.1-r1.ebuild:
  stable ppc ppc64, bug #394809

  18 Oct 2012; Andreas Schuerch <nativemad@gentoo.org> mplayer-1.1-r1.ebuild:
  x86 stable, see bug 394809

  18 Oct 2012; Anthony G. Basile <blueness@gentoo.org> mplayer-1.1-r1.ebuild:
  Keyword ~ppc ~ppc64 in anticipation of stabilization, bug #394809

  17 Oct 2012; Markus Meier <maekke@gentoo.org> mplayer-1.1-r1.ebuild:
  arm stable, bug #394809

  17 Oct 2012; Jeroen Roovers <jer@gentoo.org> mplayer-1.1-r1.ebuild:
  Stable for HPPA (bug #394809).

  17 Oct 2012; Agostino Sarubbo <ago@gentoo.org> mplayer-1.1-r1.ebuild:
  Stable for amd64, wrt bug #394809

  08 Sep 2012; Alexis Ballier <aballier@gentoo.org> files/dump_ffmpeg.sh:
  fix dump_ffmpeg script with latest ffmpeg git

  22 Aug 2012; Alexis Ballier <aballier@gentoo.org> mplayer-1.1-r1.ebuild,
  +files/mplayer-1.1-codecid.patch:
  add upstream build fix against ffmpeg git master

  01 Aug 2012; Fabian Groffen <grobian@gentoo.org> mplayer-1.1-r1.ebuild:
  aqua is also sufficient for opengl and osdmenu

  21 Jun 2012; Ben de Groot <yngwin@gentoo.org>
  mplayer-1.0_rc4_p20120405.ebuild, mplayer-1.1-r1.ebuild, mplayer-9999.ebuild:
  Fix libass usage, bug #422251

  17 Jun 2012; Ben de Groot <yngwin@gentoo.org> metadata.xml,
  mplayer-1.0_rc4_p20110322-r1.ebuild, mplayer-1.0_rc4_p20120213.ebuild,
  mplayer-1.0_rc4_p20120405.ebuild, mplayer-1.1-r1.ebuild, mplayer-9999.ebuild:
  Move USE=ass usage to new global libass useflag (bug #328245)

*mplayer-1.1-r1 (11 Jun 2012)

  11 Jun 2012; Alexis Ballier <aballier@gentoo.org> -mplayer-1.1.ebuild,
  +mplayer-1.1-r1.ebuild:
  Push previous changes in a new revision.

  11 Jun 2012; Alexis Ballier <aballier@gentoo.org> mplayer-1.1.ebuild,
  +files/mplayer-1.1-ffmpeg.patch, mplayer-9999.ebuild, files/dump_ffmpeg.sh:
  Do not let it use bundled ffmpeg headers for releasees, bug #420601. Fix
  build with ffmpeg 0.10.3 with now unbundled headers. Let dump_ffmpeg.sh work
  with releases tarballs. Bump ffmpeg deps in -9999.

*mplayer-1.1 (10 Jun 2012)

  10 Jun 2012; Alexis Ballier <aballier@gentoo.org> +mplayer-1.1.ebuild,
  mplayer-9999.ebuild:
  version bump and sync with -9999

  05 May 2012; Jeff Horelick <jdhore@gentoo.org>
  mplayer-1.0_rc4_p20110322-r1.ebuild, mplayer-1.0_rc4_p20120213.ebuild,
  mplayer-1.0_rc4_p20120405.ebuild, mplayer-9999.ebuild:
  dev-util/pkgconfig -> virtual/pkgconfig

  08 Apr 2012; Raúl Porcel <armin76@gentoo.org>
  mplayer-1.0_rc4_p20120213.ebuild, mplayer-1.0_rc4_p20120405.ebuild:
  Add ~alpha/~arm/~ia64/~sparc wrt #394805

  05 Apr 2012; Mike Frysinger <vapier@gentoo.org>
  mplayer-1.0_rc4_p20120405.ebuild, +files/mplayer-1.0_rc4-pkg-config.patch:
  Fix pkg-config handling with libdvd{nav,read} #410189.

  05 Apr 2012; Alexis Ballier <aballier@gentoo.org>
  mplayer-1.0_rc4_p20120405.ebuild, mplayer-9999.ebuild:
  bump ffmpeg deps: 9999 requires 9999 and ~arch requires 0.10.2

*mplayer-1.0_rc4_p20120405 (05 Apr 2012)

  05 Apr 2012; Alexis Ballier <aballier@gentoo.org> +files/ffmpeg2.patch,
  +mplayer-1.0_rc4_p20120405.ebuild:
  bump a new snapshot

  18 Mar 2012; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.0_rc4_p20110322-r1.ebuild, mplayer-1.0_rc4_p20120213.ebuild,
  mplayer-9999.ebuild:
  Remove USE="esd" because media-sound/esound isn't in tree anymore.

  19 Feb 2012; Alexis Ballier <aballier@gentoo.org>
  -mplayer-1.0_rc4_p20111215.ebuild, -mplayer-1.0_rc4_p20120105.ebuild,
  -mplayer-1.0_rc4_p20120109.ebuild, -mplayer-1.0_rc4_p20120128.ebuild,
  -files/swedish.patch:
  remove old

  15 Feb 2012; Joerg Bornkessel <hd_brummy@gentoo.org>
  mplayer-1.0_rc4_p20110322-r1.ebuild, mplayer-1.0_rc4_p20111215.ebuild,
  mplayer-1.0_rc4_p20120105.ebuild, mplayer-1.0_rc4_p20120109.ebuild,
  mplayer-1.0_rc4_p20120128.ebuild, mplayer-1.0_rc4_p20120213.ebuild,
  mplayer-9999.ebuild:
  fix media-tv to virtual/linuxtv-dvb-headers, bug #403929

  13 Feb 2012; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  trunk does not build with ffmpeg 0.10, bump dep

  13 Feb 2012; Alexis Ballier <aballier@gentoo.org> metadata.xml:
  typos in real use flag description, bug #400963

*mplayer-1.0_rc4_p20120213 (13 Feb 2012)

  13 Feb 2012; Alexis Ballier <aballier@gentoo.org>
  +mplayer-1.0_rc4_p20120213.ebuild, +files/ffmpeg.patch:
  bump a new snapshot, should fix bugs #402235 and #401315

  05 Feb 2012; Thomas Kahle <tomka@gentoo.org>
  mplayer-1.0_rc4_p20120128.ebuild:
  marked ~x86 per bug 394805

*mplayer-1.0_rc4_p20120128 (28 Jan 2012)

  28 Jan 2012; Alexis Ballier <aballier@gentoo.org>
  +mplayer-1.0_rc4_p20120128.ebuild, mplayer-9999.ebuild:
  bump a new snapshot for ffmpeg 0.10

*mplayer-1.0_rc4_p20120109 (09 Jan 2012)

  09 Jan 2012; Alexis Ballier <aballier@gentoo.org>
  +mplayer-1.0_rc4_p20120109.ebuild:
  bump a new snapshot that should fix bug #397789

*mplayer-1.0_rc4_p20120105 (05 Jan 2012)

  05 Jan 2012; Alexis Ballier <aballier@gentoo.org>
  +mplayer-1.0_rc4_p20120105.ebuild:
  bump a new snapshot with accumulated fixes from 9999, working with ffmpeg
  0.9.1 release

  02 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> +ChangeLog-2008:
  Split ChangeLog.

  22 Dec 2011; Alexis Ballier <aballier@gentoo.org> files/swedish.patch:
  add a note that patch has been applied upstream

  22 Dec 2011; Alexis Ballier <aballier@gentoo.org>
  mplayer-1.0_rc4_p20111215.ebuild, +files/swedish.patch:
  fix build of swedish help, by larkang@gmail.com, bug #395677

  19 Dec 2011; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  improve a warning

  19 Dec 2011; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  dvdnav requires dvd, no need to protect the deps

  19 Dec 2011; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  Simplify X checks in ebuild: use REQUIRED_USE instead of silently disabling
  features, people enabling X related features should know they will require X.
  Remove video_cards_vesa useflag that does nothing.

  19 Dec 2011; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  some new formats have been added after ffmpeg 0.9 which mplayer trunk now
  requires, bump ffmpeg dep

  18 Dec 2011; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  mp3lib failed to build on x86 with -O0 and frame-pointer, since we dropped
  internal mp3lib we can also avoid messing with CFLAGS and let people build
  with the -O flag they wish.

  18 Dec 2011; Alexis Ballier <aballier@gentoo.org> files/dump_ffmpeg.sh:
  allfilters.c is also checked, inlude it too

  17 Dec 2011; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  cosmetics

  17 Dec 2011; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  dvdnav requires dvd, simplifying ebuild

  17 Dec 2011; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  reflect some inter use flag dependencies by REQUIRED_USE

  17 Dec 2011; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  cosmetics

  17 Dec 2011; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  remove custom-cpuopts option: if anything breaks the build we can disallow it
  with REQUIRED_USE

  17 Dec 2011; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  remove dead code: faac + bindist is disallowed by REQUIRED_USE

  17 Dec 2011; Alexis Ballier <aballier@gentoo.org>
  mplayer-1.0_rc4_p20111215.ebuild, mplayer-9999.ebuild:
  fix build with USE=doc, by Martin von Gagern in bug #394907

  16 Dec 2011; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  use libmpg123 for mp3 decoding and remove internal mp3lib, bug #384849 by
  Samuli Suominen

  16 Dec 2011; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  generate on the fly a snapshot version for live ebuilds and use that file for
  generating a VERSION file that advertises it is a Gentoo build as suggested
  by Reimar Döffinger in bug #328817

  16 Dec 2011; Alexis Ballier <aballier@gentoo.org> files/prepare_mplayer.sh:
  generate snapshot_version the same way as upstream version.sh and use printf
  which should be more portable

  16 Dec 2011; Alexis Ballier <aballier@gentoo.org> files/prepare_mplayer.sh:
  create a snapshot_version file in snapshots to get svn revision

  16 Dec 2011; Alexis Ballier <aballier@gentoo.org>
  mplayer-1.0_rc4_p20111215.ebuild, mplayer-9999.ebuild:
  bump libbluray dep, bug #387935

  15 Dec 2011; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  sync with snapshot

*mplayer-1.0_rc4_p20111215 (15 Dec 2011)

  15 Dec 2011; Alexis Ballier <aballier@gentoo.org>
  +mplayer-1.0_rc4_p20111215.ebuild:
  bump a new snapshot using system ffmpeg

  15 Dec 2011; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  depend on ffmpeg 0.9, bug #392405

  15 Dec 2011; Alexis Ballier <aballier@gentoo.org> files/prepare_mplayer.sh:
  update the prepare_mplayer script to use ffmpeg instead of libav and use
  dump_ffmpeg.sh for dumping unused files

  02 Nov 2011; Alexis Ballier <aballier@gentoo.org> files/dump_ffmpeg.sh:
  riff.h isnt needed anymore

  31 Oct 2011; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.0_rc4_p20110322-r1.ebuild, mplayer-9999.ebuild:
  Rename USE="v4l2" to USE="v4l" while removing support for video4linux 1.x wrt
  #385241

  15 Oct 2011; Tim Harder <radhermit@gentoo.org>
  -mplayer-1.0_rc4_p20101114.ebuild, -mplayer-1.0_rc4_p20110322.ebuild:
  Remove old, insecure versions.

  12 Oct 2011; Raúl Porcel <armin76@gentoo.org>
  mplayer-1.0_rc4_p20110322-r1.ebuild:
  alpha/ia64/sparc stable wrt #379297

  09 Oct 2011; Kacper Kowalik <xarthisius@gentoo.org>
  mplayer-1.0_rc4_p20110322-r1.ebuild:
  ppc/ppc64 stable wrt #379297

  09 Oct 2011; Jeroen Roovers <jer@gentoo.org>
  mplayer-1.0_rc4_p20110322-r1.ebuild:
  Stable for HPPA (bug #379297).

  09 Oct 2011; Markus Meier <maekke@gentoo.org>
  mplayer-1.0_rc4_p20110322-r1.ebuild:
  arm stable, bug #379297

  08 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  mplayer-1.0_rc4_p20110322-r1.ebuild:
  x86 stable wrt security bug #379297

  06 Oct 2011; Steve Dibb <beandog@gentoo.org>
  mplayer-1.0_rc4_p20110322-r1.ebuild:
  amd64 stable, security bug 379297

*mplayer-1.0_rc4_p20110322-r1 (06 Oct 2011)

  06 Oct 2011; Samuli Suominen <ssuominen@gentoo.org>
  +mplayer-1.0_rc4_p20110322-r1.ebuild,
  +files/mplayer-1.0_rc4_p20110322-sami_subtitle_parsing.patch:
  Fix security bug (SAMI Subtitle Parsing Buffer Overflow) #379297 by Agostino
  Sarubbo

  24 Sep 2011; Matt Turner <mattst88@gentoo.org>
  mplayer-1.0_rc4_p20110322.ebuild,
  +files/mplayer-1.0_rc4_p20110322-gcc46.patch:
  Add patch to work-around high pitched sounds produced when compiled with
  gcc-4.6, bug 377837

  15 Jul 2011; Matt Turner <mattst88@gentoo.org>
  mplayer-1.0_rc4_p20110322.ebuild:
  Added ~mips, bug 304931

  08 Jul 2011; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.0_rc4_p20101114.ebuild, mplayer-1.0_rc4_p20110322.ebuild,
  mplayer-9999.ebuild:
  Convert from "hasq" to "has".

  23 Jun 2011; Alexis Ballier <aballier@gentoo.org>
  -mplayer-1.0_rc4_p20091026-r1.ebuild,
  -files/mplayer-1.0_rc4_p20091026-arm_neon.patch:
  remove old

  23 Jun 2011; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  use git-2.eclass for ffmpeg

  23 Jun 2011; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  do not default enable faac, its non free, not compatible with binary
  distribution, and ffmpeg has an encoder now

  08 Jun 2011; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  fix variable quoting

  08 Jun 2011; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  remove useless CFLAGS variable assignment

  08 Jun 2011; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild,
  +files/dump_ffmpeg.sh, metadata.xml:
  Always use system ffmpeg, use only the required internal headers from ffmpeg,
  bug #361731

  22 May 2011; Joseph Jezak <josejx@gentoo.org>
  mplayer-1.0_rc4_p20101114.ebuild:
  Marked ppc stable for bug #343977.

  03 Apr 2011; Tomáš Chvátal <scarabeus@gentoo.org> mplayer-9999.ebuild:
  Set egit project properly.

  03 Apr 2011; Tomáš Chvátal <scarabeus@gentoo.org> mplayer-9999.ebuild:
  Drop useless egit_project definition

  26 Mar 2011; Tomáš Chvátal <scarabeus@gentoo.org> mplayer-9999.ebuild:
  Depend on virtual/ffmpeg

  22 Mar 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  mplayer-1.0_rc4_p20110322.ebuild, mplayer-9999.ebuild:
  Revert required use usage.

*mplayer-1.0_rc4_p20110322 (22 Mar 2011)

  22 Mar 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  -mplayer-1.0_rc4_p20101219.ebuild, -mplayer-1.0_rc4_p20110302.ebuild,
  +mplayer-1.0_rc4_p20110322.ebuild, mplayer-9999.ebuild,
  files/prepare_mplayer.sh:
  Add new snapshot (update snapshot creator to use libav).

  20 Mar 2011; Tomáš Chvátal <scarabeus@gentoo.org> mplayer-9999.ebuild,
  files/prepare_mplayer.sh:
  Move to use libav in live mplayer ebuild and snapshot preparator.

  20 Mar 2011; Raúl Porcel <armin76@gentoo.org>
  mplayer-1.0_rc4_p20101114.ebuild:
  arm/ia64/sparc stable wrt #343977

  06 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org>
  mplayer-1.0_rc4_p20101114.ebuild:
  ppc64 stable wrt #343977

*mplayer-1.0_rc4_p20110302 (02 Mar 2011)

  02 Mar 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  +mplayer-1.0_rc4_p20110302.ebuild, mplayer-9999.ebuild,
  files/prepare_mplayer.sh:
  Add new snapshot so we have something matching to latest release. Cleanup
  src_install a bit.

  01 Mar 2011; Tomáš Chvátal <scarabeus@gentoo.org> mplayer-9999.ebuild:
  Update ebuild per bug #354023 and #354625. Thanks to reporters for patches.

  30 Jan 2011; Tomáš Chvátal <scarabeus@gentoo.org> mplayer-9999.ebuild:
  Clone the ffmpeg from git as svn external was removed.

  30 Jan 2011; Tomáš Chvátal <scarabeus@gentoo.org> mplayer-9999.ebuild:
  Update live verison to eapi4 and use_required syntax. Fix default
  configuration section, some settings were eaten for me otherwise.

  30 Jan 2011; Tomáš Chvátal <scarabeus@gentoo.org> mplayer-9999.ebuild:
  Fix dependency on vdpau (it specificaly check for headers in libvdpau). Per
  bug #352422.

  26 Jan 2011; Jeroen Roovers <jer@gentoo.org>
  mplayer-1.0_rc4_p20101114.ebuild:
  Stable for HPPA (bug #343977).

  22 Jan 2011; Markos Chandras <hwoarang@gentoo.org>
  mplayer-1.0_rc4_p20101114.ebuild:
  Stable on amd64 wrt bug #343977

  22 Jan 2011; Christian Faulhammer <fauli@gentoo.org>
  mplayer-1.0_rc4_p20101114.ebuild:
  stable x86, bug 343977

  14 Jan 2011; Fabian Groffen <grobian@gentoo.org> mplayer-9999.ebuild:
  Simplify and generalise too few registers logic for all x86 hosts, bug
  #351588

  02 Jan 2011; Tobias Klausmann <klausman@gentoo.org>
  mplayer-1.0_rc4_p20101114.ebuild:
  Stable on alpha, bug #343977

  02 Jan 2011; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  The internal copy of faad2 is gone, bug #350316

*mplayer-1.0_rc4_p20101219 (19 Dec 2010)

  19 Dec 2010; Tomáš Chvátal <scarabeus@gentoo.org>
  -mplayer-1.0_rc4_p20100506.ebuild, -mplayer-1.0_rc4_p20100612.ebuild,
  -mplayer-1.0_rc4_p20101107.ebuild, +mplayer-1.0_rc4_p20101219.ebuild,
  mplayer-9999.ebuild:
  Version bump (add new snapshot that should fix vorbis failiture). Drop old.
  Sort keywords in live ebuild.

*mplayer-1.0_rc4_p20101114 (14 Nov 2010)

  14 Nov 2010; Lars Wendler <polynomial-c@gentoo.org>
  +mplayer-1.0_rc4_p20101114.ebuild:
  non-maintainer commit: New snapshot to fix bug #345155. Permission kindly
  granted by scarabeus.

  07 Nov 2010; Alexis Ballier <aballier@gentoo.org> metadata.xml:
  update description of the vpx useflag, bug #337690

  07 Nov 2010; Jory A. Pratt <anarchy@gentoo.org>
  mplayer-1.0_rc4_p20091026-r1.ebuild, mplayer-1.0_rc4_p20100506.ebuild,
  mplayer-1.0_rc4_p20100612.ebuild, mplayer-1.0_rc4_p20101107.ebuild,
  mplayer-9999.ebuild:
  Convert media-libs/jpeg to virtual/jpeg

*mplayer-1.0_rc4_p20101107 (07 Nov 2010)

  07 Nov 2010; Tomáš Chvátal <scarabeus@gentoo.org>
  +mplayer-1.0_rc4_p20101107.ebuild, mplayer-9999.ebuild,
  +files/prepare_mplayer.sh:
  Add new snapshot and add tool that create them to files/

  01 Nov 2010; Tomáš Chvátal <scarabeus@gentoo.org> mplayer-9999.ebuild,
  metadata.xml:
  Fix mga videocard check per bug #341171. Add missing options per bug #334793.

  10 Oct 2010; Tomáš Chvátal <scarabeus@gentoo.org> mplayer-9999.ebuild,
  metadata.xml:
  Replace rtmpdump with rtmp useflag. As is done in ffmpeg and xbmc.

  10 Oct 2010; Tomáš Chvátal <scarabeus@gentoo.org> mplayer-9999.ebuild:
  EAPI3fy for prefix support.

  10 Oct 2010; Tomáš Chvátal <scarabeus@gentoo.org> mplayer-9999.ebuild:
  Introduce gsm useflag. Adds support for the gsm lossy speech compression
  codec.

  10 Oct 2010; Tomáš Chvátal <scarabeus@gentoo.org> mplayer-9999.ebuild:
  Always disable internal libmpeg2.

  10 Oct 2010; Tomáš Chvátal <scarabeus@gentoo.org> mplayer-9999.ebuild,
  metadata.xml:
  Ebuild cleanup. Drop gmplayer useflag. Introduce rtmpdump useflag. Thanks
  to Andrew Savchenko. Fixes bug #336021 and bug #337284.

  01 Oct 2010; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  fix configure options for external ffmpeg

  18 Jul 2010; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  network configure option has been renamed to networking

  17 Jul 2010; Steve Dibb <beandog@gentoo.org> mplayer-9999.ebuild:
  Revert libass change; Always use external versions where possible

  17 Jul 2010; Steve Dibb <beandog@gentoo.org> mplayer-9999.ebuild,
  metadata.xml:
  Add support for external libass libraries, bug 327733

  17 Jul 2010; Steve Dibb <beandog@gentoo.org> mplayer-9999.ebuild:
  Add bluray use flag for playback through libbluray

  30 Jun 2010; Tomáš Chvátal <scarabeus@gentoo.org> mplayer-9999.ebuild:
  Drop svga useflag.

  30 Jun 2010; Fabio Erculiani <lxnay@gentoo.org>
  mplayer-1.0_rc4_p20091026-r1.ebuild, mplayer-1.0_rc4_p20100506.ebuild,
  mplayer-1.0_rc4_p20100612.ebuild, mplayer-9999.ebuild:
  fix automagic dependency against svgalib, add --disable-svgalib
  --disable-svgalib_helper

  27 Jun 2010; Raúl Porcel <armin76@gentoo.org>
  mplayer-1.0_rc4_p20100612.ebuild:
  Re-add ~alpha/~arm/~ia64/~sparc

  25 Jun 2010; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.0_rc4_p20100612.ebuild, mplayer-9999.ebuild:
  Missing gcc-specs-pie check wrt #325517 by Toralf Förster and Magnus
  Granberg.

  25 Jun 2010; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  propagate enca useflag to libass, by Alexey Shildyakov
  <ashl1future@gmail.com>, bug #321863

  25 Jun 2010; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  disable faac with use bindist, by Nikoli <nikoli@lavabit.com>, bug #323353

  13 Jun 2010; Dror Levin <spatz@gentoo.org>
  mplayer-1.0_rc4_p20100612.ebuild:
  Dropping keywords pending keywording of media-libs/libvpx, bug 323727.

*mplayer-1.0_rc4_p20100612 (12 Jun 2010)

  12 Jun 2010; Dror Levin <spatz@gentoo.org>
  +mplayer-1.0_rc4_p20100612.ebuild:
  Roll new snapshot with VP8 support.

  12 Jun 2010; Dror Levin <spatz@gentoo.org> mplayer-9999.ebuild,
  metadata.xml:
  Add vpx support via media-libs/libvpx.

  11 Jun 2010; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  fix the configure options building with mencoder disabled, bug #323097

  02 Jun 2010; Luca Barbato <lu_zero@gentoo.org> mplayer-9999.ebuild:
  Ebuild improvements from Nikoli <nikoli@lavabit.com> see bug #322377

  01 Jun 2010; Luca Barbato <lu_zero@gentoo.org> mplayer-9999.ebuild:
  Change doc deps as reported in bug #317559

  31 May 2010; Luca Barbato <lu_zero@gentoo.org> mplayer-9999.ebuild:
  make sure sed line is safe as suggested by Nikoli on #gentoo-media

  20 May 2010; Jeroen Roovers <jer@gentoo.org>
  mplayer-1.0_rc4_p20100506.ebuild:
  Marked ~hppa (bug #317459).

  19 May 2010; Raúl Porcel <armin76@gentoo.org>
  mplayer-1.0_rc4_p20100506.ebuild:
  Readd ~ia64 wrt #317459

  09 May 2010; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  internal a52dec support has been dropped, use external one

*mplayer-1.0_rc4_p20100506 (06 May 2010)

  06 May 2010; Tomáš Chvátal <scarabeus@gentoo.org>
  -files/mplayer-1.0_rc2_p20090322-fix-undeclared-spudec.patch,
  -files/mplayer-1.0_rc2_p20090530-fix-mp3lib-use-local-labels-2.patch,
  -files/mplayer-1.0_rc2_p20090731-linguas.patch,
  -mplayer-1.0_rc4_p20100213-r1.ebuild, -mplayer-1.0_rc4_p20100427.ebuild,
  +mplayer-1.0_rc4_p20100506.ebuild,
  -files/mplayer-1.0_rc4_p20091124-r1-libtheora.patch:
  Rollup new snapshot. Drop old. This should be stable candidate.

  05 May 2010; Tomáš Chvátal <scarabeus@gentoo.org> mplayer-9999.ebuild:
  Remove emake call from src_compile, is already run by base eclass.

  01 May 2010; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  iconv should be in RDEPEND too

  01 May 2010; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  Add missing dep on app-text/docbook-xml-dtd by Scott Burgess
  <scottburgess@diamondkey.com>, bug #317559

  29 Apr 2010; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.0_rc4_p20100427.ebuild, mplayer-9999.ebuild:
  Fix liba52 handling wrt #317797 by Simone Scanzoni.

  28 Apr 2010; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.0_rc4_p20100427.ebuild, mplayer-9999.ebuild:
  Revert SRC_URI change for svgalib_helper; mirrors still ship the broken
  copy.

*mplayer-1.0_rc4_p20100427 (27 Apr 2010)

  27 Apr 2010; Samuli Suominen <ssuominen@gentoo.org>
  +mplayer-1.0_rc4_p20100427.ebuild:
  Version (snapshot) bump.

  24 Apr 2010; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  fix x264 deps

  24 Apr 2010; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  drop now unneeded append-flags

  24 Apr 2010; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  Build and install html documentation into the correct location, based on
  the LINGUAS variable, from on a patch by Andrew Savchenko in bug #299405

  24 Apr 2010; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  dont depend on cdparanoia if cdio is enabled, we wont use it; patch by
  Andrew Savchenko, bug #299405

  24 Apr 2010; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  remove aac useflag: let faad and faac useflags handle it; otherwise there
  is support in ffmpeg; always use system libfaad

  24 Apr 2010; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  Disable opencore-amr support with bindist, Apache-2.0 vs GPL-2 issues,
  https://bugs.gentoo.org/show_bug.cgi?id=299405#c6

  24 Apr 2010; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  allow ass and truetype without X, by Andrew Savchenko, bug #299405

  24 Apr 2010; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  use system libass, require freetype 2.2.1 at least

  24 Apr 2010; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  fix opencore-amr automagic dep

  24 Apr 2010; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  Fix codecsdir handling; default to real ones, the default can be overriden
  with codecpath=somewhere in cli or config file, bug #310389 and bug
  #309931

  23 Apr 2010; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.0_rc4_p20091026-r1.ebuild, mplayer-1.0_rc4_p20100213-r1.ebuild,
  mplayer-9999.ebuild, metadata.xml:
  Rename USE opencore-amr to amr.

  07 Apr 2010; Tomáš Chvátal <scarabeus@gentoo.org>
  mplayer-1.0_rc4_p20091026-r1.ebuild, mplayer-1.0_rc4_p20100213-r1.ebuild,
  mplayer-9999.ebuild:
  Drop unrar-gpl dep. Since it is useless.

  26 Mar 2010; Dror Levin <spatz@gentoo.org>
  mplayer-1.0_rc4_p20091026-r1.ebuild, mplayer-1.0_rc4_p20100213-r1.ebuild,
  mplayer-9999.ebuild:
  Convert font deps to virtual/ttf-fonts wrt bug 282754.

  26 Mar 2010; Dror Levin <spatz@gentoo.org> mplayer-9999.ebuild:
  Remove dvbhead configure argument, bug 307951.

  15 Mar 2010; Fabio Erculiani <lxnay@gentoo.org>
  mplayer-1.0_rc4_p20100213-r1.ebuild, mplayer-9999.ebuild:
  fine tune USE="vdpau" dependencies

  15 Mar 2010; Fabio Erculiani <lxnay@gentoo.org>
  mplayer-1.0_rc4_p20100213-r1.ebuild, mplayer-9999.ebuild:
  there is no need to depend against x11-drivers/nvidia-drivers for
  USE="vdpau", x11-libs/libvdpau is enough

  09 Mar 2010; Steve Dibb <beandog@gentoo.org> mplayer-9999.ebuild:
  Drop dvbhead argument, bug 307951

  02 Mar 2010; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.0_rc4_p20100213-r1.ebuild, mplayer-9999.ebuild:
  Append -nopie to LDFLAGS wrt #93862 and only filter -fPIC -fPIE on x86.

*mplayer-1.0_rc4_p20100213-r1 (27 Feb 2010)

  27 Feb 2010; Sebastian Pipping <sping@gentoo.org>
  -mplayer-1.0_rc4_p20100213.ebuild, +mplayer-1.0_rc4_p20100213-r1.ebuild,
  mplayer-9999.ebuild:
  Fix bug #307039:
  - Add missing build dep dev-util/pkgconfig
  - Fix "for i in uses; do" (should be ${uses})

  26 Feb 2010; Sebastian Pipping <sping@gentoo.org>
  mplayer-1.0_rc4_p20100213.ebuild, mplayer-9999.ebuild:
  Restore lost dependencies (bug #287993)
  - opencore-amr? ( media-libs/opencore-amr )
  - bs2b? ( media-libs/libbs2b )

  26 Feb 2010; Sebastian Pipping <sping@gentoo.org> mplayer-9999.ebuild:
  Copy latest to 9999 before proceeding

  13 Feb 2010; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.0_rc4_p20100213.ebuild, metadata.xml:
  Rename local USE flag openjpeg to global USE flag jpeg2k.

*mplayer-1.0_rc4_p20100213 (13 Feb 2010)

  13 Feb 2010; Steve Dibb <beandog@gentoo.org>
  +mplayer-1.0_rc4_p20100213.ebuild, metadata.xml:
  Snapshot bump; Add OpenJPEG support; Drop ~mips due to openjpeg lib, bug
  304931

  11 Feb 2010; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.0_rc2_p20090731.ebuild:
  Remove mips keyword wrt #280281.

  02 Feb 2010; Tomáš Chvátal <scarabeus@gentoo.org> mplayer-9999.ebuild:
  Add arm to 9999 ebuild too.

  01 Feb 2010; Raúl Porcel <armin76@gentoo.org>
  mplayer-1.0_rc4_p20091026-r1.ebuild, mplayer-1.0_rc4_p20091124-r1.ebuild:
  Add ~arm

  31 Jan 2010; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.0_rc4_p20091026-r1.ebuild,
  +files/mplayer-1.0_rc4_p20091026-arm_neon.patch:
  Fix building with ARM NEON wrt #302073 by Raúl Porcel.

  31 Jan 2010; Raúl Porcel <armin76@gentoo.org>
  mplayer-1.0_rc4_p20091026-r1.ebuild:
  alpha/ia64/sparc stable

  24 Jan 2010; Tobias Klausmann <klausman@gentoo.org>
  mplayer-1.0_rc4_p20091026-r1.ebuild:
  Stable on alpha, bug #297846

  09 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
  mplayer-1.0_rc4_p20091026-r1.ebuild:
  stable x86, bug 297846

  07 Jan 2010; Brent Baude <ranger@gentoo.org>
  mplayer-1.0_rc4_p20091026-r1.ebuild:
  Marking mplayer-1.0_rc4_p20091026-r1 ppc for bug 297846

  06 Jan 2010; Brent Baude <ranger@gentoo.org>
  mplayer-1.0_rc4_p20091026-r1.ebuild:
  Marking mplayer-1.0_rc4_p20091026-r1 ppc64 for bug 297846

  03 Jan 2010; Tomáš Chvátal <scarabeus@gentoo.org>
  mplayer-1.0_rc4_p20091124-r1.ebuild, mplayer-9999.ebuild:
  Drop epatch_user call, will be handled by new base eclass.

  25 Dec 2009; Tomáš Chvátal <scarabeus@gentoo.org>
  mplayer-1.0_rc4_p20091124-r1.ebuild, mplayer-9999.ebuild:
  Add support for epatch_user.

  24 Dec 2009; Tomáš Chvátal <scarabeus@gentoo.org>
  mplayer-1.0_rc4_p20091124-r1.ebuild, mplayer-9999.ebuild:
  Fix variable usage (${x} -> ${i})

  24 Dec 2009; Tomáš Chvátal <scarabeus@gentoo.org>
  mplayer-1.0_rc4_p20091124-r1.ebuild, mplayer-9999.ebuild:
  Try to simplify the ebuild even bit more.

  23 Dec 2009; Jeroen Roovers <jer@gentoo.org>
  mplayer-1.0_rc4_p20091026-r1.ebuild:
  Stable for HPPA (bug #297846).

  23 Dec 2009; Tomáš Chvátal <scarabeus@gentoo.org>
  mplayer-1.0_rc4_p20091124-r1.ebuild, mplayer-9999.ebuild:
  Update live ebuild, sync with latest snapshot.
  Now latest snapshot and 9999 are 1:1, try to keep it up
  by changing both ebuilds at once. More prefferably the live
  ebuild to have the change as first one.

  22 Dec 2009; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.0_rc4_p20091026-r1.ebuild:
  amd64 stable wrt #297846

*mplayer-1.0_rc4_p20091124-r1 (26 Nov 2009)

  26 Nov 2009; Steve Dibb <beandog@gentoo.org>
  -mplayer-1.0_rc4_p20091124.ebuild, +mplayer-1.0_rc4_p20091124-r1.ebuild,
  +files/mplayer-1.0_rc4_p20091124-r1-libtheora.patch:
  Fix x264 dep; add patch to build against libtheora-1.0; bug 294496

*mplayer-1.0_rc4_p20091124 (24 Nov 2009)

  24 Nov 2009; Steve Dibb <beandog@gentoo.org>
  +mplayer-1.0_rc4_p20091124.ebuild:
  Snapshot bump

  19 Nov 2009; Steve Dibb <beandog@gentoo.org> mplayer-9999.ebuild:
  Remove teletext support, bug 292792

  18 Nov 2009; Raúl Porcel <armin76@gentoo.org>
  mplayer-1.0_rc4_p20091026.ebuild, mplayer-1.0_rc4_p20091026-r1.ebuild:
  Re-add ~ia64/~sparc wrt #280281

  18 Nov 2009; Jeroen Roovers <jer@gentoo.org>
  mplayer-1.0_rc4_p20091026-r1.ebuild:
  Marked ~hppa (bug #280281).

  08 Nov 2009; Tobias Klausmann <klausman@gentoo.org>
  mplayer-1.0_rc4_p20091026-r1.ebuild:
  Keyworded on alpha, bug #280281

  27 Oct 2009; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.0_rc4_p20091026-r1.ebuild:
  If no -O flag is specified, append-flags -O2 (to gain -fomit-frame-pointer
  by gcc) wrt #288918

*mplayer-1.0_rc4_p20091026-r1 (27 Oct 2009)

  27 Oct 2009; Samuli Suominen <ssuominen@gentoo.org>
  +mplayer-1.0_rc4_p20091026-r1.ebuild, metadata.xml:
  Fix missing media-libs/libbs2b depend wrt #287993, thanks to Sebastian
  Pipping for reporting. Also, missing media-sound/toolame handling.

*mplayer-1.0_rc4_p20091026 (26 Oct 2009)

  26 Oct 2009; Samuli Suominen <ssuominen@gentoo.org>
  +mplayer-1.0_rc4_p20091026.ebuild:
  Version bump.

  11 Oct 2009; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.0_rc2_p20090322.ebuild:
  Remove amrnb, amrwb support wrt #252140. Remove arts support wrt #270575.
  Remove libmpcdec support wrt #279069.

  25 Sep 2009; Mounir Lamouri <volkmar@gentoo.org>
  mplayer-1.0_rc4_p20090919-r2.ebuild:
  Keywording for ppc. Bug 280281

*mplayer-1.0_rc4_p20090919-r2 (25 Sep 2009)

  25 Sep 2009; Steve Dibb <beandog@gentoo.org>
  +mplayer-1.0_rc4_p20090919-r2.ebuild:
  Only use replace-flags on gcc-4.4+; fix svn revision; less strict on sdl
  use flag

  24 Sep 2009; Raúl Porcel <armin76@gentoo.org>
  mplayer-1.0_rc2_p20090731-r1.ebuild, mplayer-1.0_rc4_p20090919-r1.ebuild:
  Re-add ~ia64 wrt #280281

  22 Sep 2009; Jeremy Olexa <darkside@gentoo.org>
  mplayer-1.0_rc4_p20090919-r1.ebuild:
  Fix configure call, just a typo in the ebuild. bug 285894

*mplayer-1.0_rc4_p20090919-r1 (19 Sep 2009)

  19 Sep 2009; Steve Dibb <beandog@gentoo.org>
  +mplayer-1.0_rc4_p20090919-r1.ebuild:
  Snapshot version bump; Wrap all X dependencies under X use flag, bug
  222627 (thanks to William Hubbs for major patch); Drop vesa support, bug
  283246; Drop custom-cflags due to gcc-4 bug, filter flags, bug 269975

  31 Aug 2009; Brent Baude <ranger@gentoo.org>
  mplayer-1.0_rc2_p20090731-r1.ebuild:
  Marking mplayer-1.0_rc2_p20090731-r1 ~ppc64 for bug 280281

  28 Aug 2009; Tobias Klausmann <klausman@gentoo.org>
  mplayer-1.0_rc2_p20090731-r1.ebuild:
  Keyworded on alpha, bug #280281

  19 Aug 2009; Christian Faulhammer <fauli@gentoo.org>
  mplayer-1.0_rc2_p20090731-r1.ebuild:
  add ~x86, bug 280281

  09 Aug 2009; nixnut <nixnut@gentoo.org> mplayer-1.0_rc2_p20090731.ebuild:
  ppc stable #279342

  08 Aug 2009; Brent Baude <ranger@gentoo.org>
  mplayer-1.0_rc2_p20090731.ebuild:
  Marking mplayer-1.0_rc2_p20090731 ppc64 for bug 279342

  04 Aug 2009; Jeroen Roovers <jer@gentoo.org>
  mplayer-1.0_rc2_p20090731-r1.ebuild:
  Marked ~hppa (bug #280281).

*mplayer-1.0_rc2_p20090731-r1 (04 Aug 2009)

  04 Aug 2009; Samuli Suominen <ssuominen@gentoo.org>
  +mplayer-1.0_rc2_p20090731-r1.ebuild, metadata.xml:
  Raise x264 depend wrt #240347. Fix automagic opencore-amr depend wrt
  #279995.

  03 Aug 2009; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.0_rc2_p20090731.ebuild:
  Pull in dejavu or ttf-bitstream-vera with USE ass wrt #263185.

  03 Aug 2009; Markus Meier <maekke@gentoo.org>
  mplayer-1.0_rc2_p20090731.ebuild:
  x86 stable, bug #279342

  03 Aug 2009; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.0_rc2_p20090731.ebuild:
  Remove USE nemesi since it's not in tree anymore wrt #274807.

  03 Aug 2009; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.0_rc2_p20090322.ebuild, mplayer-1.0_rc2_p20090530.ebuild,
  mplayer-1.0_rc2_p20090731.ebuild:
  Upload svgalib_helper again to mirrors wrt #279883.

  03 Aug 2009; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.0_rc2_p20090731.ebuild,
  +files/mplayer-1.0_rc2_p20090731-linguas.patch:
  Fix LINGUAS handling wrt #280129.

  03 Aug 2009; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild:
  Use tr instead of sed for creating the linguas list, this fixes a build
  issue when LINGUAS contains more than two languages.

  03 Aug 2009; Jeroen Roovers <jer@gentoo.org>
  mplayer-1.0_rc2_p20090731.ebuild:
  Stable for HPPA (bug #279342).

  02 Aug 2009; <chainsaw@gentoo.org> mplayer-1.0_rc2_p20090731.ebuild:
  Marked stable on AMD64 for security bug #279342 filed by Alex Legler
  <a3li@gentoo.org>. Tested with fullscreen XV playback of XviD content on a
  Radeon X600, dual hex-core Opteron system with USE="3dnow 3dnowext X a52
  aac aalib alsa ass cddb cdio cdparanoia dirac dts dv dvd dvdnav enca
  encode faac faad fbcon ftp gif iconv ipv6 jpeg libcaca live lzo mad md5sum
  mmx mmxext mng mp2 mp3 nemesi network opengl osdmenu png pnm pulseaudio
  quicktime rar real rtc schroedinger sdl shm speex sse sse2 ssse3 theora
  tremor truetype unicode v4l2 vorbis x264 xinerama xv xvid xvmc (-altivec)
  -bidi -bindist -bl -cpudetection -custom-cflags -custom-cpuopts -debug
  -dga -directfb -doc -dvb -dxr3 -esd -ggi -gmplayer -jack -joystick -ladspa
  -lirc -nas -nut -openal -oss -pvr -radio -samba (-svga) -teletext -tga
  -v4l -vdpau (-vidix) (-win32codecs) -xanim -xscreensaver -zoran".

  01 Aug 2009; Diego E. Pettenò <flameeyes@gentoo.org>
  mplayer-1.0_rc2_p20090731.ebuild:
  Restore the local labels patch. Sigh.

  31 Jul 2009; <chainsaw@gentoo.org> mplayer-1.0_rc2_p20090530.ebuild:
  Marked stable on AMD64 as requested by Samuli Suominen
  <ssuominen@gentoo.org> in bug #279826. Tested using full-screen XV
  playback of XViD content on a Radeon X600; USE="3dnow 3dnowext X a52 aac
  aalib alsa amrnb amrwb ass cddb cdio cdparanoia dirac dts dv dvd dvdnav
  enca encode faac faad fbcon ftp gif iconv ipv6 jpeg libcaca live lzo mad
  md5sum mmx mmxext mng mp2 mp3 nemesi network opengl osdmenu png pnm
  pulseaudio quicktime rar rtc schroedinger sdl shm speex sse sse2 ssse3
  theora tremor truetype unicode v4l2 vorbis x264 xinerama xv xvid xvmc
  (-altivec) -bidi -bindist -bl -cpudetection -custom-cflags -custom-cpuopts
  -debug -dga -directfb -doc -dvb -dxr3 -esd -ggi -gmplayer -jack -joystick
  -ladspa -lirc -nas -nut -openal -oss -pvr -radio (-real) -samba (-svga)
  -teletext -tga -v4l -vdpau (-vidix) (-win32codecs) -xanim -xscreensaver
  -zoran".

*mplayer-1.0_rc2_p20090731 (31 Jul 2009)

  31 Jul 2009; Steve Dibb <beandog@gentoo.org>
  +mplayer-1.0_rc2_p20090731.ebuild, mplayer-9999.ebuild:
  Snapshot bump, add --language* options to check for correct LINGUAS
  variable to use for messages, documentation

  27 Jul 2009; Alexis Ballier <aballier@gentoo.org> mplayer-9999.ebuild,
  metadata.xml:
  Add an option to link against system shared ffmpeg instead of building its
  own copy and statically linking to it. Saves around 40Mb here but is
  discouraged by upstream.

  26 Jul 2009; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.0_rc2_p20090530.ebuild, mplayer-9999.ebuild:
  Remove USE musepack since ffmpeg offers internal codecs for SV7 and SV8
  support.

  24 Jul 2009; Steve Dibb <beandog@gentoo.org> mplayer-9999.ebuild:
  Drop support for old AMR libs

  04 Jul 2009; Brent Baude <ranger@gentoo.org>
  mplayer-1.0_rc2_p20090322.ebuild:
  stable ppc64, bug 272646

  30 Jun 2009; Raúl Porcel <armin76@gentoo.org>
  mplayer-1.0_rc2_p20090322.ebuild:
  ia64/sparc stable wrt #272646

  21 Jun 2009; Steve Dibb <beandog@gentoo.org>
  mplayer-1.0_rc2_p20090530.ebuild, mplayer-9999.ebuild:
  Fix osdmenu configuration, bug 274438

  08 Jun 2009; Jeroen Roovers <jer@gentoo.org>
  mplayer-1.0_rc2_p20090322.ebuild:
  Stable for HPPA (bug #272646).

  07 Jun 2009; Tobias Klausmann <klausman@gentoo.org>
  mplayer-1.0_rc2_p20090322.ebuild:
  Stable on alpha, bug #272646

  07 Jun 2009; Markus Meier <maekke@gentoo.org>
  mplayer-1.0_rc2_p20090322.ebuild:
  amd64/x86 stable, bug #272646

  06 Jun 2009; nixnut <nixnut@gentoo.org> mplayer-1.0_rc2_p20090322.ebuild:
  ppc stable #272646

  04 Jun 2009; Steve Dibb <beandog@gentoo.org> metadata.xml:
  Remove old realcodecs use flag

  04 Jun 2009; Steve Dibb <beandog@gentoo.org>
  mplayer-1.0_rc2_p28450.ebuild, mplayer-1.0_rc2_p20090226.ebuild,
  mplayer-1.0_rc2_p20090322.ebuild, mplayer-1.0_rc2_p20090530.ebuild,
  mplayer-9999.ebuild:
  Install input.conf and menu.conf in the correct location

  03 Jun 2009; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.0_rc2_p20090322.ebuild, mplayer-1.0_rc2_p20090530.ebuild,
  -files/mplayer-1.0_rc2_p20090322-fix-mp3lib-use-local-labels.patch,
  +files/mplayer-1.0_rc2_p20090530-fix-mp3lib-use-local-labels-2.patch:
  Modify fix-mp3lib-use-local-labels to use jump 0b and 1b instead of 0 and
  1 wrt #271906, thanks to Luca Barbato. Remove the broken patch from old
  version.

  02 Jun 2009; Steve Dibb <beandog@gentoo.org> mplayer-9999.ebuild:
  Fix skin SRC_URI; Display live ebuild einfo only on live ebuild

  02 Jun 2009; Steve Dibb <beandog@gentoo.org>
  mplayer-1.0_rc2_p28058-r1.ebuild, mplayer-1.0_rc2_p28288.ebuild,
  mplayer-1.0_rc2_p28450.ebuild, mplayer-1.0_rc2_p20090226.ebuild,
  mplayer-1.0_rc2_p20090322.ebuild, mplayer-1.0_rc2_p20090530.ebuild:
  Update SRC_URI for Blue skin, bug 272249

  01 Jun 2009; Ben de Groot <yngwin@gentoo.org>
  mplayer-1.0_rc2_p20090530.ebuild:
  Fix versioning (bug 263720) and drop false message about being an
  unsupported live ebuild

  31 May 2009; Samuli Suominen <ssuominen@gentoo.org>
  mplayer-1.0_rc2_p20090530.ebuild:
  Samuli is not an happy developer when broken patches are introduced. Fix
  MP3 playing, again.

  31 May 2009; Diego E. Pettenò <flameeyes@gentoo.org>
  mplayer-1.0_rc2_p20090530.ebuild:
  Diego is not an happy developer when his patches are dropped. Fix build,
  once again.

  30 May 2009; Tomáš Chvátal <scarabeus@gentoo.org> mplayer-9999.ebuild:
  Update live ebuild. Reorder the DEPS to be alphabetic and more logicaly
  separated. Update ebuild to work as snapshot version if properly renamed.
  Minor whitespace updates. Use src_prepare function.

*mplayer-1.0_rc2_p20090530 (30 May 2009)

  30 May 2009; Steve Dibb <beandog@gentoo.org>
  +mplayer-1.0_rc2_p20090530.ebuild:
  Snapshot bump; Backport ebuild changes from live ebuild; drop arts

  30 May 2009; Steve Dibb <beandog@gentoo.org> mplayer-9999.ebuild,
  metadata.xml:
  Fix skin install, bug 271904; change gtk use flag to gmplayer

  29 May 2009; Steve Dibb <beandog@gentoo.org>
  mplayer-1.0_rc2_p28450.ebuild, mplayer-9999.ebuild, metadata.xml:
  Ebuild cleanup, see bug 267124. Change to EAPI2; fix faad deps; fix jack
  deps; add libnut dep, use flag; fix rar dep; fix displaying svn version;
  remove hppa hack; add osdmenu use flag; disable apple-ir on no lirc; add
  shm use flag; unset more flags on custom-cflags use. Thanks to Andrew
  Savchenko for lots of hard work.

  27 May 2009; Diego E. Pettenò <flameeyes@gentoo.org>
  mplayer-1.0_rc2_p20090322.ebuild,
  +files/mplayer-1.0_rc2_p20090322-fix-mp3lib-use-local-labels.patch,
  +files/mplayer-1.0_rc2_p20090322-fix-undeclared-spudec.patch:
  Add two patches: 1) fix spudec to be declared even without dvd support
  enabled, patch from upstream; 2) fix mp3lib to use local labels and not
  fail with -ftracer in CFLAGS, patch by Luca Barbato.

  24 Mar 2009; Ben de Groot <yngwin@gentoo.org> mplayer-1.0_rc2_p28058-r1,
  mplayer-1.0_rc2_p28288, mplayer-1.0_rc2_p28450, mplayer-1.0_rc2_p20090226,
  mplayer-1.0_rc2_p20090322, mplayer-9999:
  Fix mangled unicode

*mplayer-9999 (24 Mar 2009)

  24 Mar 2009; Steve Dibb <beandog@gentoo.org> +mplayer-9999.ebuild:
  Add live ebuild

  24 Mar 2009; Steve Dibb <beandog@gentoo.org>
  mplayer-1.0_rc2_p20090226.ebuild, mplayer-1.0_rc2_p20090322.ebuild:
  Don't enable xvmc USE flag by default

  23 Mar 2009; Steve Dibb <beandog@gentoo.org>
  mplayer-1.0_rc2_p20090226.ebuild, mplayer-1.0_rc2_p20090322.ebuild:
  Don't enable vdpau, mad USE flags by default

*mplayer-1.0_rc2_p20090322 (23 Mar 2009)

  23 Mar 2009; Steve Dibb <beandog@gentoo.org>
  +mplayer-1.0_rc2_p20090322.ebuild:
  Snapshot bump; Remove strip-flags when using custom-cflags use flag, bug
  260064; Scale back default USE flags, bug 260588; Drop realplayer binary
  support

*mplayer-1.0_rc2_p20090226 (23 Mar 2009)

  23 Mar 2009; Steve Dibb <beandog@gentoo.org>
  +mplayer-1.0_rc2_p20090226.ebuild, -mplayer-20090226.28734.ebuild,
  -mplayer-20090226.28734-r1.ebuild:
  Migrate to new naming scheme

*mplayer-20090226.28734-r1 (14 Mar 2009)

  14 Mar 2009; Ben de Groot <yngwin@gentoo.org>
  +mplayer-20090226.28734-r1.ebuild:
  Up the dependency on x264 to latest stable, so we can drop the patch. Some
  cosmetic changes (slot deps). Fix MPLAYER_REVISION handling. Fix mangled
  unicode for Polish spelling.

  28 Feb 2009; Markus Meier <maekke@gentoo.org> metadata.xml:
  custom-cflags is a global USE-flag

  26 Feb 2009; Steve Dibb <beandog@gentoo.org>
  mplayer-20090226.28734.ebuild:
  Don't enable cpudetection for bindist

  26 Feb 2009; Steve Dibb <beandog@gentoo.org>
  mplayer-20090226.28734.ebuild:
  Fix vorbis dep

  26 Feb 2009; Steve Dibb <beandog@gentoo.org>
  mplayer-20090226.28734.ebuild:
  Add nvidia card to use flags

*mplayer-20090226.28734 (26 Feb 2009)

  26 Feb 2009; Steve Dibb <beandog@gentoo.org> metadata.xml,
  +mplayer-20090226.28734.ebuild:
  Split real use flag into two: real for internal, realcodecs for binary;
  Add faad, faac use flags for external AAC support; Add vdpau use flag; Add
  more use flags to be enabled by default for that fresh just-works feeling;
  Add tremor use flag for internal Vorbis support; Cleanup use flags, bug
  254661; Install more docs by default, bug 254671; Check for mng use flag,
  bug 256054; Use unrar, add to mplayer.conf, bug 256203; Remove deprecated
  DEPEND, bug 256146; New naming scheme DATE.SVN_REVISION; Add more
  documentation to ebuild

  12 Feb 2009; Steve Dibb <beandog@gentoo.org>
  mplayer-1.0_rc2_p28450.ebuild:
  Enable more use flag options by default

  11 Feb 2009; Tobias Scherbaum <dertobi123@gentoo.org>
  mplayer-1.0_rc2_p28450.ebuild:
  ppc stable, bug #257381

  09 Feb 2009; Raúl Porcel <armin76@gentoo.org>
  mplayer-1.0_rc2_p28450.ebuild:
  ia64/sparc stable wrt #257381

  07 Feb 2009; Tobias Klausmann <klausman@gentoo.org>
  mplayer-1.0_rc2_p28450.ebuild:
  Stable on alpha, bug #257381

  05 Feb 2009; Jeroen Roovers <jer@gentoo.org>
  mplayer-1.0_rc2_p28450.ebuild:
  Stable for HPPA (bug #257381).

  04 Feb 2009; Markus Meier <maekke@gentoo.org>
  mplayer-1.0_rc2_p28450.ebuild:
  amd64/x86 stable, bug #257381

  04 Feb 2009; Brent Baude <ranger@gentoo.org>
  mplayer-1.0_rc2_p28450.ebuild:
  Marking mplayer-1.0_rc2_p28450 ppc64 for bug 257381

*mplayer-1.0_rc2_p28450 (03 Feb 2009)

  03 Feb 2009; Steve Dibb <beandog@gentoo.org>
  +mplayer-1.0_rc2_p28450.ebuild:
  Snapshot bump, security bug 257381

*mplayer-1.0_rc2_p28288 (10 Jan 2009)

  10 Jan 2009; Steve Dibb <beandog@gentoo.org>
  +mplayer-1.0_rc2_p28288.ebuild:
  Snapshot bump

  For previous entries, please see ChangeLog-2008.