summaryrefslogtreecommitdiff
blob: ed826543ed824ebecb4353cf00927433bb30ea25 (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
# ChangeLog for media-video/mplayer
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/media-video/mplayer/ChangeLog,v 1.837 2012/01/28 13:02:10 aballier Exp $

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