summaryrefslogtreecommitdiff
blob: 651f5e258144088e1b07717bcf27f96ddda4917c (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
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.246 2008/12/16 16:41:29 ssuominen Exp $

*ffmpeg-0.4.9_p20081030_p15750 (17 Dec 2008)

  17 Dec 2008; Peter Alfredsen <loki_val@gentoo.org>
  +files/ffmpeg-0.4.9_p20081014-sparc-gcc43.patch,
  +files/ffmpeg-shared-gcc4.1.patch, +metadata.xml,
  +ffmpeg-0.4.9_p20081030_p15750.ebuild:
  Bump

  16 Dec 2008; Jeroen Roovers <jer@gentoo.org>
  ffmpeg-0.4.9_p20081014.ebuild:
  Stable for HPPA (bug #245291).

  16 Dec 2008; Brent Baude <ranger@gentoo.org>
  ffmpeg-0.4.9_p20081014.ebuild:
  Marking ffmpeg-0.4.9_p20081014 ppc64 for bug 245285

  15 Dec 2008; <ssuominen@gentoo.org> ffmpeg-0.4.9_p20081014.ebuild:
  Change faad2 dep. to >= 2.6.1 wrt #251010.

  15 Dec 2008; <ssuominen@gentoo.org> ffmpeg-0.4.9_p20081014.ebuild:
  x86 stable wrt #245285

  13 Dec 2008; <ssuominen@gentoo.org>
  +files/ffmpeg-0.4.9_p20081014-sparc-gcc43.patch,
  ffmpeg-0.4.9_p20081014.ebuild:
  Backport upstream patch for sparc to allow compilation with GCC 4.3 wrt
  #247653.

  12 Dec 2008; Tobias Klausmann <klausman@gentoo.org>
  ffmpeg-0.4.9_p20081014.ebuild:
  Stable on alpha, bug #245285

  10 Nov 2008; Raúl Porcel <armin76@gentoo.org>
  ffmpeg-0.4.9_p20081014.ebuild:
  Add ~ia64 wrt #241908

  30 Oct 2008; Raúl Porcel <armin76@gentoo.org>
  ffmpeg-0.4.9_p20070616-r3.ebuild:
  alpha/arm/ia64 stable #231831

  27 Oct 2008; Alexis Ballier <aballier@gentoo.org>
  ffmpeg-0.4.9_p20081014.ebuild:
  Fixup crosscompilation, bug #237662

  27 Oct 2008; Mike Frysinger <vapier@gentoo.org>
  ffmpeg-0.4.9_p20081014.ebuild:
  Add arm/ppc love #241908.

  18 Oct 2008; Peter Alfredsen <loki_val@gentoo.org>
  ffmpeg-0.4.9_p20080326.ebuild:
  Fixup 20080326 dependency on x264 to be <0.0.20081006.

  18 Oct 2008; Alexis Ballier <aballier@gentoo.org>
  ffmpeg-0.4.9_p20081014.ebuild:
  Drop arm/ia64/ppc ~arch keywords per bug #241908 to allow unmasking

  14 Oct 2008; Jeroen Roovers <jer@gentoo.org>
  +files/ffmpeg-0.4.9_p20080326-hppa.patch, ffmpeg-0.4.9_p20080326.ebuild:
  Build PIC on HPPA (bug #241124).

  14 Oct 2008; Alexis Ballier <aballier@gentoo.org>
  ffmpeg-0.4.9_p20081014.ebuild:
  Give the configure the --cpu option based on CFLAGS; if it is unknown it
  will not hurt because the configure script will warn and ignore it. This
  helps getting better support for given cpu, like using CMOV on i686 and
  later. Bug #172723.

  14 Oct 2008; Alexis Ballier <aballier@gentoo.org>
  ffmpeg-0.4.9_p20081014.ebuild:
  Set the ffmpeg version to the exported revision number, bug #233667,
  borrowed from mplayer ebuild

  14 Oct 2008; Alexis Ballier <aballier@gentoo.org>
  ffmpeg-0.4.9_p20081014.ebuild:
  Broaden libdc1394 dep as it works with v2 too, by Fabio Correa
  <facorread@gmail.com>, bug #237687

  14 Oct 2008; Alexis Ballier <aballier@gentoo.org>
  ffmpeg-0.4.9_p20070616.ebuild, ffmpeg-0.4.9_p20070616-r1.ebuild,
  ffmpeg-0.4.9_p20070616-r2.ebuild, ffmpeg-0.4.9_p20070616-r3.ebuild,
  ffmpeg-0.4.9_p20070616-r20.ebuild, ffmpeg-0.4.9_p20080206.ebuild,
  ffmpeg-0.4.9_p20080326.ebuild, ffmpeg-0.4.9_p20081014.ebuild:
  Bump imlib2 dep for bug #196525

*ffmpeg-0.4.9_p20081014 (14 Oct 2008)

  14 Oct 2008; Alexis Ballier <aballier@gentoo.org> metadata.xml,
  +ffmpeg-0.4.9_p20081014.ebuild:
  Add a new snapshot, masked because it breaks a lot of consumers.

  11 Oct 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  ffmpeg-0.4.9_p20070616-r3.ebuild:
  ppc stable, bug #231831

  06 Oct 2008; Markus Meier <maekke@gentoo.org>
  ffmpeg-0.4.9_p20070616-r3.ebuild:
  amd64/x86 stable, bug #231831

  06 Oct 2008; Friedrich Oslage <bluebird@gentoo.org>
  ffmpeg-0.4.9_p20070616-r3.ebuild:
  Stable on sparc, security bug #231831

  06 Oct 2008; Jeroen Roovers <jer@gentoo.org>
  ffmpeg-0.4.9_p20070616-r3.ebuild:
  Stable for HPPA (bug #231831). Fixed some quoting issues.

  04 Oct 2008; Markus Rothe <corsair@gentoo.org>
  ffmpeg-0.4.9_p20070616-r3.ebuild:
  Stable on ppc64; bug #231831

*ffmpeg-0.4.9_p20070616-r20 (17 Jul 2008)
*ffmpeg-0.4.9_p20070616-r3 (17 Jul 2008)

  17 Jul 2008; Alexis Ballier <aballier@gentoo.org>
  +files/CVE-2008-3162.patch, +ffmpeg-0.4.9_p20070616-r3.ebuild,
  +ffmpeg-0.4.9_p20070616-r20.ebuild:
  Add patches for security bug #231831. -r3 is -r0 with the patch, stable
  candidate without swscaler. -r20 is -r2 with the patch, with swscaler.

  07 Jul 2008; Peter Alfredsen <loki_val@gentoo.org>
  ffmpeg-0.4.9_p20080326.ebuild:
  Fix build failure when disabling MMX, which would fail to disable MMX2
  code on processors supporting it, resulting in #ifdef spaghetti build
  failure. Bug 229981.

  20 Apr 2008; Mike Frysinger <vapier@gentoo.org>
  +files/ffmpeg-arm-pld.patch, ffmpeg-0.4.9_p20070616.ebuild,
  ffmpeg-0.4.9_p20070616-r1.ebuild, ffmpeg-0.4.9_p20070616-r2.ebuild,
  ffmpeg-0.4.9_p20080206.ebuild:
  Fix from upstream svn for building for older arm cpus.

  07 Apr 2008; Ben de Groot <yngwin@gentoo.org>
  ffmpeg-0.4.9_p20070616.ebuild, ffmpeg-0.4.9_p20070616-r1.ebuild,
  ffmpeg-0.4.9_p20070616-r2.ebuild, ffmpeg-0.4.9_p20080206.ebuild,
  ffmpeg-0.4.9_p20080326.ebuild:
  Pkgmove x264-svn to x264

  27 Mar 2008; Joerg Bornkessel <hd_brummy@gentoo.org> Manifest:
  manifest fixed; #bug 214967

*ffmpeg-0.4.9_p20080326 (26 Mar 2008)

  26 Mar 2008; Luca Barbato <lu_zero@gentoo.org>
  -files/ffmpeg-0.4.9_p20051216-asneeded-configure.patch,
  -ffmpeg-0.4.9_p20050226-r3.ebuild, -ffmpeg-0.4.9_p20061016.ebuild,
  -ffmpeg-0.4.9_p20070330.ebuild, -ffmpeg-0.4.9_p20070525.ebuild,
  +ffmpeg-0.4.9_p20080326.ebuild:
  Furter cleanup and new version

  28 Feb 2008; Alexis Ballier <aballier@gentoo.org>
  ffmpeg-0.4.9_p20080206.ebuild:
  fix build with use ieee1394, dc1394->libdc1394. Bug #209610

  14 Feb 2008; Samuli Suominen <drac@gentoo.org>
  -ffmpeg-0.4.9_p20051216.ebuild, -ffmpeg-0.4.9_p20060302.ebuild,
  -ffmpeg-0.4.9_p20060530.ebuild, -ffmpeg-0.4.9_p20060816.ebuild,
  ffmpeg-0.4.9_p20061016.ebuild, -ffmpeg-0.4.9_p20070129.ebuild,
  -ffmpeg-0.4.9_p20070325.ebuild, ffmpeg-0.4.9_p20070330.ebuild:
  Remove USE dts from some old ebuilds, and remove some entirely because
  libdts is replaced by libdca.

*ffmpeg-0.4.9_p20080206 (06 Feb 2008)

  06 Feb 2008; Luca Barbato <lu_zero@gentoo.org>
  +ffmpeg-0.4.9_p20080206.ebuild:
  New snapshot

  31 Oct 2007; Matthias Schwarzott <zzam@gentoo.org>
  ffmpeg-0.4.9_p20051216.ebuild, ffmpeg-0.4.9_p20060302.ebuild,
  ffmpeg-0.4.9_p20060530.ebuild, ffmpeg-0.4.9_p20060816.ebuild,
  ffmpeg-0.4.9_p20061016.ebuild, ffmpeg-0.4.9_p20070129.ebuild,
  ffmpeg-0.4.9_p20070325.ebuild, ffmpeg-0.4.9_p20070330.ebuild,
  ffmpeg-0.4.9_p20070525.ebuild, ffmpeg-0.4.9_p20070616.ebuild,
  ffmpeg-0.4.9_p20070616-r1.ebuild, ffmpeg-0.4.9_p20070616-r2.ebuild:
  Improved text about possible ABI changes, noticed by mark_alec.

*ffmpeg-0.4.9_p20070616-r2 (26 Oct 2007)

  26 Oct 2007; Steve Dibb <beandog@gentoo.org>
  +ffmpeg-0.4.9_p20070616-r2.ebuild:
  Add ipv6 use flag

  21 Oct 2007; Steve Dibb <beandog@gentoo.org>
  ffmpeg-0.4.9_p20070616.ebuild:
  amd64 stable, bug 193563

  20 Oct 2007; Ferris McCormick <fmccor@gentoo.org>
  ffmpeg-0.4.9_p20070616.ebuild:
  sparc stable --- Bug #193563 --- builds and works.

  08 Oct 2007; Markus Rothe <corsair@gentoo.org>
  ffmpeg-0.4.9_p20070616.ebuild:
  Stable on ppc64; bug #193563

  24 Sep 2007; Raúl Porcel <armin76@gentoo.org>
  ffmpeg-0.4.9_p20070616.ebuild:
  alpha/ia64 stable wrt #193563

  24 Sep 2007; Lars Weiler <pylon@gentoo.org> ffmpeg-0.4.9_p20070616.ebuild:
  stable ppc, bug #193563

  24 Sep 2007; Jeroen Roovers <jer@gentoo.org>
  ffmpeg-0.4.9_p20070616.ebuild:
  Stable for HPPA (bug #193563).

  24 Sep 2007; Christian Faulhammer <opfer@gentoo.org>
  ffmpeg-0.4.9_p20070616.ebuild:
  stable x86, bug #193563

  07 Jul 2007; Samuli Suominen <drac@gentoo.org>
  ffmpeg-0.4.9_p20070616-r1.ebuild:
  Fix building with USE altivec for bug 183687. Thanks to Laurent G. for
  reporting, Joe Jezak for solution, Kimura Masaru for testing.

*ffmpeg-0.4.9_p20070616-r1 (26 Jun 2007)

  26 Jun 2007; Luca Barbato <lu_zero@gentoo.org>
  +ffmpeg-0.4.9_p20070616-r1.ebuild:
  Enable swscaler

  16 Jun 2007; Samuli Suominen <drac@gentoo.org>
  ffmpeg-0.4.9_p20070616.ebuild:
  enable xvid to enable libxvid.

*ffmpeg-0.4.9_p20070616 (16 Jun 2007)

  16 Jun 2007; Luca Barbato <lu_zero@gentoo.org>
  +ffmpeg-0.4.9_p20070616.ebuild:
  New snapshot, SVN revision 9330

  01 Jun 2007; Samuli Suominen <drac@gentoo.org>
  ffmpeg-0.4.9_p20070525.ebuild:
  Append -DBROKEN_RELOCATIONS which is a hack to workaround bug 179872.

  01 Jun 2007; Samuli Suominen <drac@gentoo.org>
  ffmpeg-0.4.9_p20070525.ebuild:
  Remove USE dts for bug 180129.

*ffmpeg-0.4.9_p20070525 (26 May 2007)

  26 May 2007; Luca Barbato <lu_zero@gentoo.org>
  +ffmpeg-0.4.9_p20070525.ebuild:
  New snapshot, using libamr

  16 May 2007; Jeroen Roovers <jer@gentoo.org>
  ffmpeg-0.4.9_p20070330.ebuild:
  Stable for HPPA (bug #174909).

  05 May 2007; Fabian Groffen <grobian@gentoo.org>
  ffmpeg-0.4.9_p20051216.ebuild, ffmpeg-0.4.9_p20060302.ebuild,
  ffmpeg-0.4.9_p20060530.ebuild:
  Dropped ppc-macos keyword, see you in prefix

  22 Apr 2007; Bryan Østergaard <kloeri@gentoo.org>
  ffmpeg-0.4.9_p20070330.ebuild:
  Stable on Alpha, bug 174909.

  17 Apr 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  ffmpeg-0.4.9_p20070330.ebuild:
  ppc stable, bug #168907

  16 Apr 2007; Raúl Porcel <armin76@gentoo.org>
  ffmpeg-0.4.9_p20070330.ebuild:
  ia64 stable

  12 Apr 2007; Raúl Porcel <armin76@gentoo.org>
  ffmpeg-0.4.9_p20070330.ebuild:
  x86 stable

  12 Apr 2007; Peter Weller <welp@gentoo.org> ffmpeg-0.4.9_p20070330.ebuild:
  Stable on amd64 wrt bug 168907

  05 Apr 2007; Alexis Ballier <aballier@gentoo.org>
  +files/ffmpeg-0.4.9_p20070330-asmpic.patch, ffmpeg-0.4.9_p20070330.ebuild:
  Disable non pic safe asm on x86 and amd64, bug #172845, bug #172877 and dupes

  04 Apr 2007; Markus Rothe <corsair@gentoo.org>
  ffmpeg-0.4.9_p20070330.ebuild:
  Stable on ppc64

  04 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  ffmpeg-0.4.9_p20070330.ebuild:
  Stable on sparc wrt #170860

*ffmpeg-0.4.9_p20070330 (30 Mar 2007)

  30 Mar 2007; Luca Barbato <lu_zero@gentoo.org>
  +ffmpeg-0.4.9_p20070330.ebuild:
  New snapshot

  27 Mar 2007; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20070325.ebuild:
  s/a52/liba52

  25 Mar 2007; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20070325.ebuild:
  Minor fixes and update

*ffmpeg-0.4.9_p20070325 (25 Mar 2007)

  25 Mar 2007; Luca Barbato <lu_zero@gentoo.org>
  +ffmpeg-0.4.9_p20070325.ebuild:
  New snapshot

  22 Mar 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  ffmpeg-0.4.9_p20070129.ebuild:
  Stable on sparc

  21 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
  ffmpeg-0.4.9_p20070129.ebuild:
  stable x86, security bug 170208

  16 Feb 2007; Simon Stelling <blubb@gentoo.org>
  ffmpeg-0.4.9_p20061016.ebuild, ffmpeg-0.4.9_p20070129.ebuild:
  depend on >=portage-2.1.2 on amd64 to make sure the mmx USE flag is unmasked

  29 Jan 2007; Steve Dibb <beandog@gentoo.org>
  ffmpeg-0.4.9_p20070129.ebuild:
  Rekeyword ~

  29 Jan 2007; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20070129.ebuild:
  Put it back in ~, not the right time, closing bug #164445, thanks to
  Sebastian <sebastian_ml@gmx.net> for notifying.

  29 Jan 2007; Luca Barbato <lu_zero@gentoo.org>
  files/ffmpeg-libdir-2007.patch:
  Make the patch working everywhere, thanks to Markus Trippelsdorf
  <markus@trippelsdorf.de> for pointing the issue

*ffmpeg-0.4.9_p20070129 (29 Jan 2007)

  29 Jan 2007; Luca Barbato <lu_zero@gentoo.org>
  +files/ffmpeg-libdir-2007.patch, +ffmpeg-0.4.9_p20070129.ebuild:
  New snapshot

  29 Jan 2007; Bryan Østergaard <kloeri@gentoo.org>
  ffmpeg-0.4.9_p20061016.ebuild:
  Stable on Alpha + IA64.

  06 Jan 2007; Michael Cummings <mcummings@gentoo.org>
  ffmpeg-0.4.9_p20061016.ebuild:
  amd64 stable

  04 Jan 2007; Christian Faulhammer <opfer@gentoo.org>
  ffmpeg-0.4.9_p20061016.ebuild:
  stable x86, bug #157814

  30 Dec 2006; Bryan Østergaard <kloeri@gentoo.org>
  ffmpeg-0.4.9_p20061016.ebuild:
  Add ~alpha and ~ia64 keywords.

  23 Dec 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  ffmpeg-0.4.9_p20061016.ebuild:
  Stable on ppc wrt bug #157814.

  21 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  ffmpeg-0.4.9_p20060530.ebuild, ffmpeg-0.4.9_p20061016.ebuild:
  Stable on sparc wrt #157814

  21 Dec 2006; Markus Rothe <corsair@gentoo.org>
  ffmpeg-0.4.9_p20061016.ebuild:
  Stable on ppc64; bug #157814

  10 Dec 2006; Matthias Schwarzott <zzam@gentoo.org>
  ffmpeg-0.4.9_p20050226-r3.ebuild, ffmpeg-0.4.9_p20051216.ebuild,
  ffmpeg-0.4.9_p20060302.ebuild, ffmpeg-0.4.9_p20060517.ebuild,
  ffmpeg-0.4.9_p20060530.ebuild, ffmpeg-0.4.9_p20060816.ebuild,
  ffmpeg-0.4.9_p20061016.ebuild:
  Corrected installation of source-Changelog-file, thanks to Josef Reidinger
  <queen.killer@seznam.cz> for reporting, Bug #157628.

  07 Dec 2006; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20061016.ebuild:
  Fix reg depletion in x86, see bug #154922

  01 Dec 2006; Jeroen Roovers <jer@gentoo.org>
  ffmpeg-0.4.9_p20061016.ebuild:
  Stable for HPPA (or xine-lib will not even configure).

*ffmpeg-0.4.9_p20061016 (17 Oct 2006)

  17 Oct 2006; Luca Barbato <lu_zero@gentoo.org>
  +ffmpeg-0.4.9_p20061016.ebuild:
  New version

  03 Oct 2006; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20060530.ebuild, ffmpeg-0.4.9_p20060816.ebuild:
  Fix deps, see bug #134555

  11 Sep 2006; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20060816.ebuild:
  emake -j1 calls and add emake depend just in case

  08 Sep 2006; Rene Nussbaumer <killerfox@gentoo.org>
  ffmpeg-0.4.9_p20060530.ebuild:
  Stable on hppa. See bug #133520.

  08 Sep 2006; Thomas Cort <tcort@gentoo.org> ffmpeg-0.4.9_p20060530.ebuild:
  Stable on alpha wrt security Bug #133520.

  08 Sep 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  ffmpeg-0.4.9_p20060530.ebuild:
  ppc stable, bug #133520

  07 Sep 2006; Joshua Jackson <tsunam@gentoo.org>
  ffmpeg-0.4.9_p20060530.ebuild:
  Stable x86; for security bug #133520

  07 Sep 2006; Thomas Cort <tcort@gentoo.org> ffmpeg-0.4.9_p20060530.ebuild:
  Stable on amd64.

  07 Sep 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  ffmpeg-0.4.9_p20060530.ebuild:
  Stable on sparc wrt #133520

  07 Sep 2006; Markus Rothe <corsair@gentoo.org>
  ffmpeg-0.4.9_p20060530.ebuild:
  Stable on ppc64; bug #133520

  04 Sep 2006; Diego Pettenò <flameeyes@gentoo.org>
  ffmpeg-0.4.9_p20060530.ebuild, ffmpeg-0.4.9_p20060816.ebuild:
  Export true as LDCONFIG value during install phases, so that it does not
  trigger sandbox on Gentoo/FreeBSD.

  30 Aug 2006; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20060816.ebuild:
  Fix multilib-strict and support EXTRA_ECONF

  17 Aug 2006; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20060816.ebuild:
  fix sdl dep

  16 Aug 2006; Luca Barbato <lu_zero@gentoo.org> ChangeLog:
  New version

  14 Aug 2006; Luca Barbato <lu_zero@gentoo.org>
  +files/ffmpeg-0.4.9_p20060530-snow-mmx.patch,
  ffmpeg-0.4.9_p20060530.ebuild:
  Make snow compile on x86 with pic and mmx enabled at the same time, many
  thanks to Martin von Gagern <Martin.vGagern@gmx.net> for the patch and the
  overall help

  12 Aug 2006; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20060530.ebuild:
  Marked ~ppc64

  12 Aug 2006; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20060530.ebuild:
  Pin x264 version to avoid build issue with snapshots too new

  01 Aug 2006; Joshua Jackson <tsunam@gentoo.org>
  ffmpeg-0.4.9_p20060530.ebuild:
  Adding ~x86 as it works and all that jazz

  31 May 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  ffmpeg-0.4.9_p20060530.ebuild:
  Gave it a ~sparc

  31 May 2006; Diego Pettenò <flameeyes@gentoo.org>
  ffmpeg-0.4.9_p20060530.ebuild:
  Re-add ~x86-fbsd and ~amd64 keywords.

  31 May 2006; Diego Pettenò <flameeyes@gentoo.org>
  ffmpeg-0.4.9_p20060530.ebuild:
  Remove keywording comments, we always add and drop them every other release.

  31 May 2006; Diego Pettenò <flameeyes@gentoo.org>
  ffmpeg-0.4.9_p20060530.ebuild:
  Remove old hack for $LDFLAGS passing (fixed upstream), remove the
  append-flags (fixed upstream).

  12 Jun 2006; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20060530.ebuild:
  more files to the sed PIC

  31 May 2006; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20060530.ebuild:
  Missing patch

*ffmpeg-0.4.9_p20060530 (30 May 2006)

  30 May 2006; Luca Barbato <lu_zero@gentoo.org>
  +ffmpeg-0.4.9_p20060530.ebuild:
  New snapshot

  28 May 2006; Diego Pettenò <flameeyes@gentoo.org>
  -files/ffmpeg-0.4.9_p20050226-gcc4.patch,
  -files/ffmpeg-0.4.9_p20050906-osx.patch, -files/ffmpeg-a52.patch,
  -files/ffmpeg-configure.patch, -files/ffmpeg-missing_links.patch,
  -files/ffmpeg-osx.patch, -files/gentoo-ffmpeg001.patch,
  -ffmpeg-0.4.9_p20050226-r5.ebuild, -ffmpeg-0.4.9_p20050906.ebuild,
  -ffmpeg-0.4.9_p20051120.ebuild:
  Remove old versions.

  25 May 2006; Diego Pettenò <flameeyes@gentoo.org>
  ffmpeg-0.4.9_p20060302.ebuild:
  Add ~x86-fbsd keyword.

*ffmpeg-0.4.9_p20060517 (17 May 2006)

  17 May 2006; Luca Barbato <lu_zero@gentoo.org>
  +ffmpeg-0.4.9_p20060517.ebuild:
  new snapshot, to be tested

  08 May 2006; Diego Pettenò <flameeyes@gentoo.org>
  ffmpeg-0.4.9_p20060302.ebuild:
  Use -rpath-link to make sure that the libraries are linked correctly, should
  fixes bug #132171.

  03 May 2006; Diego Pettenò <flameeyes@gentoo.org> metadata.xml:
  Update metadata to list media-video@gentoo.org as maintainer.

  20 Apr 2006; Daniel Gryniewicz <dang@gentoo.org>
  +files/ffmpeg-0.4.9_p20060302-amr-64bit.patch,
  ffmpeg-0.4.9_p20060302.ebuild:
  Fix amr on 64-bit arches per bug# 130530

  14 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  +files/ffmpeg-0.4.9_p20060302-fbsd-flags.patch,
  ffmpeg-0.4.9_p20060302.ebuild:
  Add patch to respect CFLAGS on FreeBSD, and don't use preplib that's no more
  needed anyway.

  31 Mar 2006; Simon Stelling <blubb@gentoo.org> +files/ffmpeg-libdir.patch,
  ffmpeg-0.4.9_p20060302.ebuild:
  fix wrong libdir paths in .pc files

  21 Mar 2006; Diego Pettenò <flameeyes@gentoo.org>
  +files/ffmpeg-0.4.9_p20051216-asneeded-configure.patch,
  ffmpeg-0.4.9_p20051216.ebuild, ffmpeg-0.4.9_p20060302.ebuild:
  Use --cc option instead of overwriting CC variable to respect the compiler,
  pass --extra-ldflags to respect LDFLAGS (only 20060302 respect them
  entirely). Add patch to allow using --as-needed flag.

  08 Mar 2006; Diego Pettenò <flameeyes@gentoo.org>
  ffmpeg-0.4.9_p20051216.ebuild, ffmpeg-0.4.9_p20060302.ebuild:
  Disable strip, leaving to portage decide if and when to strip.

  06 Mar 2006; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20060302.ebuild:
  merged v4l and v4l2

  05 Mar 2006; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20060302.ebuild:
  Improved ebuild with amr and v4l2 support, thanks to Philip Kovacs
  <kovacsp3@comcast.net> for the improved ebuild, other minor fixes

  04 Mar 2006; Luca Barbato <lu_zero@gentoo.org>
  files/ffmpeg-shared-gcc4.1.patch:
  fix

  04 Mar 2006; Luca Barbato <lu_zero@gentoo.org>
  +files/ffmpeg-shared-gcc4.1.patch, ffmpeg-0.4.9_p20060302.ebuild:
  ffmpeg-shared-gcc4 patch is back

*ffmpeg-0.4.9_p20060302 (03 Mar 2006)

  03 Mar 2006; Luca Barbato <lu_zero@gentoo.org>
  +ffmpeg-0.4.9_p20060302.ebuild:
  New snapshot

  15 Feb 2006; Diego Pettenò <flameeyes@gentoo.org>
  ffmpeg-0.4.9_p20050226-r3.ebuild:
  Add missing sdl useflag in IUSE.

  30 Jan 2006; Luca Barbato <lu_zero@gentoo.org>
  +files/ffmpeg-shared-gcc4.patch, ffmpeg-0.4.9_p20051216.ebuild:
  x86 workaround from Kevin F. Quinn <kevquinn@gentoo.org>, I'll share the
  blame if breaks something

  09 Jan 2006; Bryan Østergaard <kloeri@gentoo.org
  ffmpeg-0.4.9_p20051216.ebuild:
  Stable on alpha, bug 116181.

  06 Jan 2006; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20051216.ebuild:
  Warning added

  06 Jan 2006; Luca Barbato <lu_zero@gentoo.org>
  files/ffmpeg-soname-symlink.patch:
  minor fix for osx

  03 Jan 2006; Bryan Østergaard <kloeri@gentoo.org
  ffmpeg-0.4.9_p20051216.ebuild:
  ~alpha keyword, bug 116181.

  02 Jan 2006; Fabian Groffen <grobian@gentoo.org>
  ffmpeg-0.4.9_p20051216.ebuild:
  Marked ~ppc-macos (bug #116181)

  02 Jan 2006; Michael Hanselmann <hansmi@gentoo.org>
  ffmpeg-0.4.9_p20051216.ebuild:
  Stable on ppc.

  01 Jan 2006; Simon Stelling <blubb@gentoo.org>
  ffmpeg-0.4.9_p20051216.ebuild:
  stable on amd64 wrt bug 116181

  31 Dec 2005; Markus Rothe <corsair@gentoo.org>
  ffmpeg-0.4.9_p20051216.ebuild:
  Stable on ppc64

  30 Dec 2005; Mark Loeser <halcy0n@gentoo.org>
  ffmpeg-0.4.9_p20051216.ebuild:
  Stable on x86; bug #116181

  30 Dec 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  ffmpeg-0.4.9_p20051216.ebuild:
  Stable on sparc wrt security #116181

  28 Dec 2005; Guy Martin <gmsoft@gentoo.org> ffmpeg-0.4.9_p20051216.ebuild:
  Fix compilation of xine-lib on hppa.

  26 Dec 2005; Luca Barbato <lu_zero@gentoo.org> -ffmpeg-0.4.8.ebuild,
  -ffmpeg-0.4.9_pre1-r1.ebuild, ffmpeg-0.4.9_p20050226-r3.ebuild:
  Cleanup

  21 Dec 2005; Luis Medinas <metalgod@gentoo.org>
  ffmpeg-0.4.9_p20051216.ebuild:
  Add ~amd64 keyword for bug #116181.

  21 Dec 2005; Markus Rothe <corsair@gentoo.org>
  ffmpeg-0.4.9_p20051216.ebuild:
  Added ~ppc64; bug #116181

  21 Dec 2005; Mark Loeser <halcy0n@gentoo.org>
  ffmpeg-0.4.9_p20051216.ebuild:
  Adding ~x86; bug #116181

  20 Dec 2005; Rene Nussbaumer <killerfox@gentoo.org>
  ffmpeg-0.4.9_p20051216.ebuild:
  Unstable on hppa. See bug #116181.

  20 Dec 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  ffmpeg-0.4.9_p20051216.ebuild:
  Keyworded ~sparc wrt #116181

  17 Dec 2005; Luca Barbato <lu_zero@gentoo.org>
  files/ffmpeg-soname-symlink.patch:
  yet another fix part 2

  17 Dec 2005; Luca Barbato <lu_zero@gentoo.org>
  files/ffmpeg-soname-symlink.patch:
  yet another fix

  16 Dec 2005; Luca Barbato <lu_zero@gentoo.org>
  files/ffmpeg-soname-symlink.patch:
  Fix in the patch

*ffmpeg-0.4.9_p20051216 (16 Dec 2005)

  16 Dec 2005; Luca Barbato <lu_zero@gentoo.org>
  +files/ffmpeg-soname-symlink.patch, +files/ffmpeg-unknown-options.patch,
  +ffmpeg-0.4.9_p20051216.ebuild:
  New snapshot

  04 Dec 2005; Lina Pezzella <j4rg0n@gentoo.org>
  ffmpeg-0.4.9_p20051120.ebuild:
  Testing ppc-macos, Bug #113107

  29 Nov 2005; Jason Wever <weeve@gentoo.org> ffmpeg-0.4.9_p20051120.ebuild:
  Added ~sparc keyword wrt bug #113107.

  21 Nov 2005; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20051120.ebuild:
  Marked ~ppc

  21 Nov 2005; Markus Rothe <corsair@gentoo.org>
  ffmpeg-0.4.9_p20051120.ebuild:
  Added ~ppc64 keyword; bug #113107

  21 Nov 2005; Herbie Hopkins <herbs@gentoo.org>
  ffmpeg-0.4.9_p20051120.ebuild:
  Marked ~amd64 wrt bug #113107.

  21 Nov 2005; Chris White <chriswhite@gentoo.org>
  ffmpeg-0.4.9_p20051120.ebuild:
  Added ~x86 keyword as per bug #113107.

*ffmpeg-0.4.9_p20051120 (20 Nov 2005)

  20 Nov 2005; Luca Barbato <lu_zero@gentoo.org>
  +files/ffmpeg-configure.patch, +ffmpeg-0.4.9_p20051120.ebuild:
  New experimental snapshot

  18 Sep 2005; Bryan Østergaard <kloeri@gentoo.org>
  ffmpeg-0.4.9_p20050906.ebuild:
  Add ~alpha keyword.

  17 Sep 2005; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20050906.ebuild:
  ~alpha temporary dropped

  17 Sep 2005; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20050906.ebuild:
  Dep fix for xvid, thanks to Staffan Palmroos <spalmroos@gmail.com>

  15 Sep 2005; Aron Griffis <agriffis@gentoo.org>
  ffmpeg-0.4.9_p20050226-r5.ebuild:
  Mark 0.4.9_p20050226-r5 stable on alpha

  15 Sep 2005; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20050226-r5.ebuild:
  ieee1394 issues, fixed the stable ebuild.

  12 Sep 2005; Luca Barbato <lu_zero@gentoo.org>
  +files/ffmpeg-0.4.9_p20050906-osx.patch, ffmpeg-0.4.9_p20050906.ebuild:
  Other fixes and dylib support

  12 Sep 2005; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20050906.ebuild:
  Fix ieee1394 issues

  10 Sep 2005; Diego Pettenò <flameeyes@gentoo.org>
  ffmpeg-0.4.9_p20050906.ebuild:
  Comments cleanup for missing keywords. Don't install INSTALL file.

  10 Sep 2005; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20050906.ebuild:
  Fix Ogg support

*ffmpeg-0.4.9_p20050906 (08 Sep 2005)

  08 Sep 2005; Luca Barbato <lu_zero@gentoo.org>
  +ffmpeg-0.4.9_p20050906.ebuild:
  New snapshot, src_test added.

  26 Aug 2005; Seemant Kulleen <seemant@gentoo.org>
  ffmpeg-0.4.9_p20050226-r5.ebuild:
  moved libdc1394 from media-plugins to media-libs

  24 Aug 2005; Aron Griffis <agriffis@gentoo.org>
  ffmpeg-0.4.9_p20050226-r5.ebuild:
  stable on ia64

  12 Jun 2005; Bryan Østergaard <kloeri@gentoo.org>
  ffmpeg-0.4.9_p20050226-r5.ebuild:
  Add ~alpha keyword.

  10 Jun 2005; Diego Pettenò <flameeyes@gentoo.org>
  ffmpeg-0.4.9_p20050226-r5.ebuild:
  Use memalign hack on FreeBSD.

  06 Jun 2005; Markus Rothe <corsair@gentoo.org>
  ffmpeg-0.4.9_p20050226-r5.ebuild:
  Stable on ppc64

  17 May 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  ffmpeg-0.4.9_p20050226-r5.ebuild:
  Stable on sparc

  15 May 2005; Diego Pettenò <flameeyes@gentoo.org>
  ffmpeg-0.4.9_pre1-r1.ebuild, ffmpeg-0.4.9_p20050226-r3.ebuild,
  ffmpeg-0.4.9_p20050226-r5.ebuild:
  Removed unused gcc inheriting. Inherited toolchain-funcs where needed.

  09 May 2005; Aron Griffis <agriffis@gentoo.org>
  ffmpeg-0.4.9_p20050226-r3.ebuild, ffmpeg-0.4.9_p20050226-r5.ebuild:
  mark 0.4.9_p20050226-r3 stable on ia64.  add ~ia64 to 0.4.9_p20050226-r5

  06 May 2005; Diego Pettenò <flameeyes@gentoo.org>
  ffmpeg-0.4.9_p20050226-r5.ebuild:
  Marked amd64.

  06 May 2005; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20050226-r5.ebuild:
  Marked ppc and x86

  05 May 2005; Donnie Berkholz <spyderous@gentoo.org>;
  +files/0.4.8-gcc3.4-magicF2W.patch:
  Re-add missing patch.

*ffmpeg-0.4.9_pre1-r1 (04 May 2005)

  04 May 2005; Lina Pezzella <j4rg0n@gentoo.org> +files/ffmpeg-osx.patch,
  +ffmpeg-0.4.9_pre1-r1.ebuild:
  Re-added the pre1 ebuild since there are extensive patches made against it
  that do not yet work with upstream's CVS. We're working on the latter, but
  I'm not going to hold up ffmpeg any longer.

  02 May 2005; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20050226-r5.ebuild:
  Forced -fomit-frame-pointer

*ffmpeg-0.4.9_p20050226-r5 (26 Apr 2005)

  26 Apr 2005; Jeremy Huddleston <eradicator@gentoo.org>
  -files/ffmpeg-0.4.7-2.6.patch, -files/0.4.8-gcc3.4-magicF2W.patch,
  -files/alpha-idct.patch, +files/ffmpeg-a52.patch,
  -files/ffmpeg-configure-extralibs.patch,
  +files/ffmpeg-missing_links.patch, -ffmpeg-0.4.7.ebuild,
  -ffmpeg-0.4.8.20040222.ebuild, -ffmpeg-0.4.8.20040322.ebuild,
  -ffmpeg-0.4.8.20040322-r1.ebuild, -ffmpeg-0.4.9_pre1.ebuild,
  -ffmpeg-0.4.9_p20050226-r1.ebuild, -ffmpeg-0.4.9_p20050226.ebuild,
  -ffmpeg-0.4.9_p20050226-r2.ebuild, ffmpeg-0.4.9_p20050226-r3.ebuild,
  -ffmpeg-0.4.9_p20050226-r4.ebuild, +ffmpeg-0.4.9_p20050226-r5.ebuild:
  Revbump to add missing links to needed libs in libavformat. Handle a52 and
  faad properly. Removing old versions.

  25 Apr 2005; Martin Schlemmer <azarah@gentoo.org>
  files/ffmpeg-0.4.9_p20050226-gcc4.patch, ffmpeg-0.4.9_p20050226-r4.ebuild:
  Fixup mafteah's patch the other way around, else it breaks avifile among
  things.

  25 Apr 2005; Martin Schlemmer <azarah@gentoo.org>
  +files/ffmpeg-0.4.9_p20050226-gcc4.patch,
  ffmpeg-0.4.9_p20050226-r4.ebuild:
  Fix building with gcc4. Patch from Genady Okrain (mafteah) 's overlay, with
  some added hunks that was needed this side.

  24 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  +files/ffmpeg-configure-extralibs.patch, ffmpeg-0.4.9_p20050226-r4.ebuild:
  Added patch to link to libdc1394 when ieee1394 is enabled. Fixes #90150.

  24 Apr 2005; Michael Hanselmann <hansmi@gentoo.org>
  ffmpeg-0.4.9_p20050226-r3.ebuild:
  Stable on hppa.

  24 Apr 2005; Bryan Østergaard <kloeri@gentoo.org>
  ffmpeg-0.4.9_p20050226-r3.ebuild:
  Stable on alpha.

  24 Apr 2005; Markus Rothe <corsair@gentoo.org>
  ffmpeg-0.4.9_p20050226-r3.ebuild:
  Stable on ppc64

  22 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  ffmpeg-0.4.9_p20050226-r4.ebuild:
  Fixed typo on pic/mmx if condition.

*ffmpeg-0.4.9_p20050226-r4 (21 Apr 2005)

  21 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  +ffmpeg-0.4.9_p20050226-r4.ebuild:
  Added new revision which applies cleanups on bug #89172, and patch to enable
  mmx on amd64 as for bug #88965.

  19 Apr 2005; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20050226-r3.ebuild:
  Marked ppc and x86

  19 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  ffmpeg-0.4.9_p20050226-r3.ebuild:
  Mark ffmpeg-0.4.9_p20050226-r3 stable on amd64.

  18 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  ffmpeg-0.4.9_p20050226-r3.ebuild:
  Changed xvid dependency to 1.0. Fixes #88879.

*ffmpeg-0.4.9_p20050226-r3 (03 Apr 2005)

  03 Apr 2005; Jan Brinkmann <luckyduck@gentoo.org>
  +ffmpeg-0.4.9_p20050226-r3.ebuild:
  revision bump to indicate the latest changes, fixes #87681

  30 Mar 2005; Chris White <chriswhite@gentoo.org>
  ffmpeg-0.4.9_p20050226-r1.ebuild, ffmpeg-0.4.9_p20050226-r2.ebuild,
  ffmpeg-0.4.9_p20050226.ebuild:
  Fixed bug #87069.

  21 Mar 2005; Jeremy Huddleston <eradicator@gentoo.org>
  ffmpeg-0.4.9_p20050226-r2.ebuild:
  Use the right toolchain compiler.

  20 Mar 2005; Chris White <chriswhite@gentoo.org>
  files/gentoo-ffmpeg001.patch, ffmpeg-0.4.9_p20050226-r2.ebuild:
  Fixed a52 linking (again).  Closes bugs #85929 and #85952.

*ffmpeg-0.4.9_p20050226-r2 (19 Mar 2005)

  19 Mar 2005; Chris White <chriswhite@gentoo.org>
  +files/ffmpeg-libdir-pic.patch, files/gentoo-ffmpeg001.patch,
  +ffmpeg-0.4.9_p20050226-r2.ebuild:
  Fix bug #84241 (multilib and pic).

  16 Mar 2005; Chris White <chriswhite@gentoo.org>
  ffmpeg-0.4.9_p20050226-r1.ebuild:
  Added missing emake.

  11 Mar 2005; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20050226-r1.ebuild:
  Put back xvid support

*ffmpeg-0.4.9_p20050226-r1 (10 Mar 2005)

  10 Mar 2005; Chris White <chriswhite@gentoo.org>
  +ffmpeg-0.4.9_p20050226-r1.ebuild:
  Fixed bug #67947. -fPIC logic makes sense now. Thanks to Kevin Quin for
  supplying the logic.

  07 Mar 2005; Chris White <chriswhite@gentoo.org>
  ffmpeg-0.4.9_p20050226.ebuild:
  Added threading support.

  03 Mar 2005; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.9_p20050226.ebuild:
  Removed xvid useflag

  01 Mar 2005; Chris White <chriswhite@gentoo.org>
  ffmpeg-0.4.9_p20050226.ebuild:
  Fix bad spelling.

*ffmpeg-0.4.9_p20050226 (01 Mar 2005)

  01 Mar 2005; Chris White <chriswhite@gentoo.org>
  +files/gentoo-ffmpeg001.patch, +ffmpeg-0.4.9_p20050226.ebuild:
  Bumped to 20050226 snapshot release.

  24 Feb 2005; Jan Brinkmann <luckyduck@gentoo.org> ffmpeg-0.4.8.ebuild:
  fixed #82873, emerge failed due to missing patch.

  06 Feb 2005; Jan Brinkmann <luckyduck@gentoo.org> ffmpeg-0.4.7.ebuild,
  ffmpeg-0.4.8.20040222.ebuild, ffmpeg-0.4.8.20040322-r1.ebuild,
  ffmpeg-0.4.8.20040322.ebuild, ffmpeg-0.4.8.ebuild, ffmpeg-0.4.9_pre1.ebuild:
  added dummy src_test() to fix #77212

  16 Dec 2004; Markus Rothe <corsair@gentoo.org> ffmpeg-0.4.9_pre1.ebuild:
  Stable on ppc64

  14 Dec 2004; Jeremy Huddleston <eradicator@gentoo.org>
  ffmpeg-0.4.7.ebuild, ffmpeg-0.4.8.20040222.ebuild,
  ffmpeg-0.4.8.20040322-r1.ebuild, ffmpeg-0.4.8.20040322.ebuild,
  ffmpeg-0.4.8.ebuild, ffmpeg-0.4.9_pre1.ebuild:
  Using 'aac' instead of faad and faac.

  02 Nov 2004; Markus Rothe <corsair@gentoo.org> ffmpeg-0.4.9_pre1.ebuild:
  Marked ~ppc64

  25 Aug 2004; Sven Wegener <swegener@gentoo.org> ffmpeg-0.4.9_pre1.ebuild:
  Changed SRC_URI to use mirror:// syntax.

*ffmpeg-0.4.9_pre1 (21 Jul 2004)

  21 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org>
  +ffmpeg-0.4.9_pre1.ebuild:
  Version bump closes bug #56613.

  25 Jun 2004; Daniel Goller <morfic@gentoo.org> ffmpeg-0.4.8.20040322-r1.ebuild:
    ffmpeg-0.4.8.20040322-r1.ebuild adding patch for gcc 3.4.x 
    closes 49383 Credit goes to Ed Catmur for the patch

  24 Jun 2004; Martin Holzer <mholzer@gentoo.org>
  ffmpeg-0.4.8.20040322-r1.ebuild, ffmpeg-0.4.8.20040322.ebuild:
  removing symblink from ffplay to ffmpeg. closes 51014

  09 Jun 2004; Luca Barbato <lu_zero@gentoo.org>
  ffmpeg-0.4.8.20040322-r1.ebuild:
  Same fix from amd64

  09 Jun 2004; Thomas Raschbacher <lordvan@gentoo.org>
  ffmpeg-0.4.8.20040322-r1.ebuild:
  only enable faac when we are not on ia64 or alpha in src_compile

*ffmpeg-0.4.8.20040322-r1 (09 Jun 2004)

  09 Jun 2004; Thomas Raschbacher <lordvan@gentoo.org>
  +ffmpeg-0.4.8.20040322-r1.ebuild:
  -r1 adds faac support, added local USE flag
  fixes bug #48090, thanks to Stefan Briesenick <sbriesen@gmx.de>

  07 Jun 2004; Travis Tilley <lv@gentoo.org> ffmpeg-0.4.8.20040322.ebuild:
  stable on amd64

  05 Jun 2004; <tester@gentoo.org> ffmpeg-0.4.8.20040322.ebuild:
  No longer available from SRC_URI, changed the keywords to -*.. oops
  we have it on our mirrors... sorry..

  30 Mar 2004; Sven Blumenstein <bazik@gentoo.org>
  ffmpeg-0.4.8.20040322.ebuild:
  Stable on sparc.

  26 Mar 2004; Joel Martin <kanaka@gentoo.org> ffmpeg-0.4.8.20040222.ebuild,
  ffmpeg-0.4.8.20040322.ebuild:
  Filter out -momit-leaf-frame-pointer flag from libpostproc compilation

*ffmpeg-0.4.8.20040322 (22 Mar 2004)

  22 Mar 2004; Luca Barbato <lu_zero@gentoo.org> ffmpeg-0.4.8.20040322.ebuild:
  New snapshot, works with ppc

  15 Mar 2004; Luca Barbato <lu_zero@gentoo.org> ffmpeg-0.4.8.20040222.ebuild:
  Marked -ppc pending a fix for misbuild.

*ffmpeg-0.4.8.20040222 (11 Mar 2004)

  11 Mar 2004; <kanaka@gentoo.org> ffmpeg-0.4.8.20040222.ebuild:
  Install libpostproc library. Update to newer snapshot. Bug 27051

  17 Feb 2004; Aron Griffis <agriffis@gentoo.org> ffmpeg-0.4.8.ebuild:
  stable on alpha and ia64

  16 Jan 2004; Bartosch Pixa <darkspecter@gentoo.org> ffmpeg-0.4.8.ebuild:
  set ppc in keywords

  29 Nov 2003; Brad House <brad_mssw@gentoo.org> ffmpeg-0.4.8.ebuild:
  amd64 needs -fPIC to compile properly

  22 Nov 2003; Luca Barbato <lu_zero@gentoo.org> ffmpeg-0.4.8.ebuild:
  altivec related fix, thanks to Olivier <ocastan@noos.fr> for the report
  and the patch

*ffmpeg-0.4.8 (18 Oct 2003)

  18 Oct 2003; <iggy@gentoo.org> ffmpeg-0.4.8.ebuild:
  version bump, fix a bug where it was trying to include X11/Xlib.h for no
  apparent reason

*ffmpeg-0.4.7 (09 Sep 2003)

  09 Sep 2003; Martin Holzer <mholzer@gentoo.org> ffmpeg-0.4.7.ebuild:
  Version bumped.

  14 Jul 2003; Alastair Tse <liquidx@gentoo.org>
  ffmpeg-0.4.7_pre20030624.ebuild:
  depend on a non-masked version of imlib2

  13 Jul 2003; Nick Hadaway <raker@gentoo.org> ffmpeg-0.4.7_pre20030624.ebuild:
  Adding sdl, imlib, and truetype use flags.

  06 Jul 2003; Nick Hadaway <raker@gentoo.org> ffmpeg-0.4.7_pre20030624.ebuild:
  Marked stble for x86

  02 Jul 2003; Nick Hadaway <raker@gentoo.org> ffmpeg-0.4.7_pre20030624.ebuild,
  files/alpha-idct.patch:
  Addresses bug #23563.  This problem was fixed upstream in cvs.
  Added a small patch.  

*ffmpeg-0.4.7_pre20030624 (26 Jun 2003)

  26 Jun 2003; Nick Hadaway <raker@gentoo.org> ffmpeg-0.4.7_pre20030624.ebuild:
  As of June 9th, 0.4.6 is considered obsolete by the upstream author.
  This build pulled from a cvs snapshot now has support for the dvd
  and static use variables.  Also added faad as a local use variable.

*ffmpeg-0.4.6-r1 (4 Jan 2003)

  10 Mar 2003; Will Woods <wwoods@gentoo.org> ffmpeg-0.4.6-r1.ebuild:
  Added ~alpha to keywords and -fPIC to flags, fixes bug #16281

  19 Feb 2003; Martin Holzer <mholzer@gentoo.org> ffmpeg-0.4.6-r1.ebuild :
  Marked as stable.
 
  26 Jan 2003; Seemant Kulleen <seemant@gentoo.org> ffmpeg-0.4.6-r1.ebuild :

  Added -fPIC to the filter-flags to sort out compiling issues such as
  those reported in bug #14500 by atomicdog@akier.net (Conrad Akier)
 
  4 Jan 2003; Joshua Brindle <method@gentoo.org> ffmpeg-0.4.6-r1.ebuild :
  merge patches to ebuild and package from Rene Wagner <reenoo@gmx.de>
  to install libavcodec as a .so. 

*ffmpeg-0.4.6 (3 Jan 2003)
  
  3 Jan 2003; Joshua Brindle <method@gentoo.org> ffmpeg-0.4.6.ebuild :
  version bump, this is a release non-snapshot version, recommend upgrade

*ffmpeg-0.4.5.20021212 (13 Dec 2002)

  5 Jan 2002; Joshua Brindle <method@gentoo.org ffmpeg-0.4.5.20021212.ebuild :
  removed this ebuild from portage, it is old and was a cvs snapshot, 0.4.6 
  contains everything this did and is a release version

  14 Dec 2002; Joshua Brindle <method@gentoo.org> ffmpeg-0.4.5.20021212.ebuild :
  Changing url to reflect where author moved his.
  
  13 Dec 2002; Bryon Roche <kain@gentoo.org> ffmpeg-0.4.5.20021212.ebuild :
  ffmpeg isn't REALLY x86 specific.  Giving ppc and sparc a nice big ~.
  
  12 Dec 2002; Joshua Brindle <method@gentoo.org> ffmpeg-0.4.5.20021212.ebuild :
  cvs snapshot so that streaming will work, also added mp3lame and oggvorbis
  support with encode and oggvorbis use vars.

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
*ffmpeg-0.4.5 (1 Feb 2002)

  25 Sep 2002; Daniel Ahlberg <aliz@gentoo.org> ffmpeg-0.4.5.ebuild :
  Filter out "-fforce-addr".

  05 Sep 2002; Seemant Kulleen <seemant@gentoo.org> ffmpeg-0.4.5.ebuild :

  Added nasm to DEPEND. Thanks to: jfelice@cronosys.com (Jay 'Eraserhead'
  Felice) in bug #7481.  Also tagged it x86 only due to this.

  1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
  
  Added initial ChangeLog which should be updated whenever the package is
  updated in any way. This changelog is targetted to users. This means that the
  comments should well explained and written in clean English. The details about
  writing correct changelogs are explained in the skel.ChangeLog file which you
  can find in the root directory of the portage repository.