summaryrefslogtreecommitdiff
blob: 6c957ffafe61ba6285c2d6d5cd41c1701a790691 (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
# ChangeLog for media-video/avidemux
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/media-video/avidemux/ChangeLog,v 1.216 2013/03/29 15:21:36 tomwij Exp $

*avidemux-2.6.3 (29 Mar 2013)

  29 Mar 2013; Tom Wijsman <TomWij@gentoo.org> +avidemux-2.6.3.ebuild,
  metadata.xml:
  Version bump to 2.6.3. Reworked USE flags to be more specific to each avidemux
  package, the way it is meant to be; introduced additional support for some
  libraries through USE flags as a consequence.

  24 Mar 2013; Tom Wijsman <TomWij@gentoo.org> avidemux-2.6.2-r1.ebuild:
  Revision bump. Now that the package is revised, the install target for
  avidemux-plugins became available because avidemux is seen as present on the
  system; changed preinstall to install in the avidemux-plugins ebuild such that
  the plugins are properly installed. Fixes bug #462514 and bug #462516.

*avidemux-2.6.2-r1 (20 Mar 2013)

  20 Mar 2013; Tom Wijsman <TomWij@gentoo.org> +avidemux-2.6.2-r1.ebuild,
  -avidemux-2.6.2.ebuild, -files/avidemux-2.6.2-config-h.patch:
  Revision bump: Removed gtk USE flag, fixes bug #461988. Split plugins to its
  own package, fixes bug #462098.

  17 Mar 2013; Tom Wijsman <TomWij@gentoo.org>
  +files/avidemux-2.6.2-config-h.patch, avidemux-2.6.2.ebuild:
  Forcing config.h checks to pass, checked that without avidemux present it
  compiles for me (and others). This is an attempt to fix bug #461962 reported
  by Peter Norman.

  17 Mar 2013; Tom Wijsman <TomWij@gentoo.org> avidemux-2.6.2.ebuild:
  Check for presence of file before changing its permissions. Bug #461962,
  reported by Peter Norman, thanks.

*avidemux-2.6.2 (16 Mar 2013)

  16 Mar 2013; Tom Wijsman <TomWij@gentoo.org> +avidemux-2.6.2.ebuild,
  -avidemux-2.6.0.ebuild, -avidemux-2.6.1.ebuild, metadata.xml:
  Version bump to 2.6.2 where I revised the way it builds using separated core
  libraries, should work properly. Removed old versions that had a broken
  intermediate build system. Removed some unused things, fixed a QA warning and
  more...

  11 Mar 2013; Tom Wijsman <TomWij@gentoo.org> avidemux-2.6.1.ebuild:
  Fixed conversion from IUSE flags to cmake arguments to support USE flags that
  are disabled by default, as a result it no longer fails to emerge due to
  -system-ffmpeg.

  10 Mar 2013; Tom Wijsman <TomWij@gentoo.org> avidemux-2.6.1.ebuild,
  metadata.xml:
  Added a system-ffmpeg to =media-video/avidemux-2.6.1, currently it is disabled
  by default and masked since it does not compile and work yet.

  04 Mar 2013; Tom Wijsman <TomWij@gentoo.org> avidemux-2.6.1.ebuild:
  Split magic powder function into EAPI 5 appropriate src_configure, src_compile
  and src_install functions; cleaned up the ebuild as a first step in
  preparation of unmasking it.

  02 Mar 2013; Markos Chandras <hwoarang@gentoo.org> avidemux-2.5.6-r2.ebuild,
  avidemux-2.6.0.ebuild, avidemux-2.6.1.ebuild:
  Move Qt dependencies to the new category

  02 Mar 2013; Tom Wijsman <TomWij@gentoo.org> metadata.xml:
  yngwin said regarding the Qt herd removal on the same thread: "No, I don't
  think that's necessary. Keeping it in video herd makes more sense."

  02 Mar 2013; Tom Wijsman <TomWij@gentoo.org> metadata.xml:
  Taking up primary maintainership, will fix this packages over the next days...
  See the "[gentoo-dev] The Gentoo Qt Project wants your help!" thread on the
  gentoo-dev mailing list for more information. Herds that no longer wish to co-
  maintain this package can remove themselves from the metadata.xml.

*avidemux-2.6.1 (22 Dec 2012)

  22 Dec 2012; Markos Chandras <hwoarang@gentoo.org> +avidemux-2.6.1.ebuild:
  Version bump

*avidemux-2.6.0 (04 Nov 2012)

  04 Nov 2012; Markos Chandras <hwoarang@gentoo.org> +avidemux-2.6.0.ebuild,
  metadata.xml:
  Version bump. #431748. Moved from Qt overlay

  01 Sep 2012; Davide Pesavento <pesa@gentoo.org> avidemux-2.5.6-r2.ebuild:
  Replace -O0 with -O1 on x86, wrt bug 432322.

*avidemux-2.5.6-r2 (12 Aug 2012)

  12 Aug 2012; Davide Pesavento <pesa@gentoo.org> +avidemux-2.5.6-r2.ebuild,
  -avidemux-2.5.6-r1.ebuild:
  Fix desktop file, thanks to redneb in bug 430500.

  05 May 2012; Jeff Horelick <jdhore@gentoo.org> avidemux-2.5.6-r1.ebuild:
  dev-util/pkgconfig -> virtual/pkgconfig

  21 Apr 2012; Johannes Huber <johu@gentoo.org> -avidemux-2.5.4-r2.ebuild,
  -files/avidemux-2.5.4-dummy-sound-fix.patch,
  -files/avidemux-2.5.4-openfileqt.patch,
  -files/avidemux-2.5.4-x264-build115.patch,
  -files/avidemux-2.5.4-x264-version-fix.patch,
  -files/avidemux-2.5.4-x264.patch, -files/avidemux-2.5.4-xvid.patch:
  Remove old.

  21 Apr 2012; Jeff Horelick <jdhore@gentoo.org> avidemux-2.5.6-r1.ebuild:
  marked x86 per bug 412529

  18 Apr 2012; Agostino Sarubbo <ago@gentoo.org> avidemux-2.5.6-r1.ebuild:
  Stable for amd64, wrt bug #412529

  18 Apr 2012; Davide Pesavento <pesa@gentoo.org>
  +files/avidemux-2.5.6-ffmpeg-symbol-visibility.patch, -avidemux-2.5.5.ebuild,
  -avidemux-2.5.6.ebuild, avidemux-2.5.6-r1.ebuild, metadata.xml:
  Add upstream patch to fix undefined reference during linking, thanks to
  everyone in bug 403253. Remove old versions.

  19 Mar 2012; Davide Pesavento <pesa@gentoo.org> avidemux-2.5.6-r1.ebuild:
  Revert to bundled spidermonkey (bug #408813).

*avidemux-2.5.6-r1 (18 Mar 2012)

  18 Mar 2012; Davide Pesavento <pesa@gentoo.org> +avidemux-2.5.6-r1.ebuild,
  metadata.xml:
  Use system copy of dev-lang/spidermonkey, remove obsolete dts USE flag, add
  vpx USE flag, add missing deps, general ebuild cleanup.

  18 Mar 2012; Samuli Suominen <ssuominen@gentoo.org> avidemux-2.5.4-r2.ebuild,
  avidemux-2.5.5.ebuild, avidemux-2.5.6.ebuild:
  Remove USE="esd" because media-sound/esound isn't in tree anymore.

  11 Mar 2012; Markos Chandras <hwoarang@gentoo.org> avidemux-2.5.6.ebuild:
  Add opengl useflag. Bug #406955. Patch by Ian Delaney

*avidemux-2.5.6 (02 Jan 2012)

  02 Jan 2012; Markos Chandras <hwoarang@gentoo.org> +avidemux-2.5.6.ebuild:
  version bump

  12 Nov 2011; Tim Harder <radhermit@gentoo.org>
  -files/2.5.3_field_asm_fix.diff, -files/avidemux-2.4-cmake264.patch,
  -files/avidemux-2.4.4-gcc-4.4.patch, -files/avidemux-2.4-i18n.patch,
  -files/avidemux-2.4-ts-cmake.patch, -avidemux-2.5.1_p5428.ebuild,
  -files/avidemux-2.5.1-build-plugins-fix.patch, -avidemux-2.5.2.ebuild,
  -files/avidemux-2.5.2-altivec-bool.patch, -avidemux-2.5.3-r3.ebuild,
  -files/avidemux-2.5.3-build-plugins-fix.patch,
  -files/avidemux-2.5.3-fix-fgets-fortify.patch, -avidemux-2.5.4-r1.ebuild,
  -files/avidemux-pulseaudiosimple.patch,
  -files/lavcodec-mpegvideo_mmx-asm-fix.patch:
  Remove old.

*avidemux-2.5.5 (24 Aug 2011)

  24 Aug 2011; Tim Harder <radhermit@gentoo.org> +avidemux-2.5.5.ebuild:
  Version bump (bug #373067).

  13 Jun 2011; Markos Chandras <hwoarang@gentoo.org> metadata.xml:
  Remove myself from metadata.xml

  29 Apr 2011; Markos Chandras <hwoarang@gentoo.org> avidemux-2.5.4-r2.ebuild,
  +files/avidemux-2.5.4-openfileqt.patch,
  +files/avidemux-2.5.4-x264-build115.patch, +files/avidemux-2.5.4-x264.patch,
  +files/avidemux-2.5.4-xvid.patch:
  Add gcc-4.6 patches thanks to Fabio Scaccabarozzi <fsvm88@gmail.com>. Add
  patch for latest x264 thanks to zimous <zimous@matfyz.cz>. Bugs #364009 and
  #365153

  13 Apr 2011; Markos Chandras <hwoarang@gentoo.org> avidemux-2.5.4-r1.ebuild,
  avidemux-2.5.4-r2.ebuild:
  Move yasm to build dependencies

  13 Apr 2011; Markos Chandras <hwoarang@gentoo.org> avidemux-2.5.4-r1.ebuild,
  avidemux-2.5.4-r2.ebuild:
  Depend on dev-lang/yasm. Bug #362805. Drop ppc keywords

  11 Apr 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  avidemux-2.5.4-r2.ebuild:
  x86 stable wrt bug #360613

  09 Apr 2011; Christoph Mende <angelos@gentoo.org> avidemux-2.5.4-r2.ebuild:
  Stable on amd64 wrt bug #360613

*avidemux-2.5.4-r2 (12 Mar 2011)

  12 Mar 2011; Markos Chandras <hwoarang@gentoo.org> +avidemux-2.5.4-r2.ebuild,
  +files/avidemux-2.5.4-x264-version-fix.patch:
  Upstream patch to make avidemux compile with the latest version of x264. Bug
  #356373. Thanks to all these people who provided solutions on the bug

  02 Nov 2010; Tomáš Chvátal <scarabeus@gentoo.org>
  avidemux-2.5.4-r1.ebuild:
  Use cmake-utils eclass more extensively.

*avidemux-2.5.4-r1 (28 Oct 2010)

  28 Oct 2010; Markos Chandras <hwoarang@gentoo.org> -avidemux-2.5.4.ebuild,
  +avidemux-2.5.4-r1.ebuild, +files/avidemux-2.5.4-dummy-sound-fix.patch:
  Apply patch to fix audio settings dummy device. Bug #342909. Thanks to
  Eric F. GARIOUD <eric-f.garioud@wanadoo.fr>

*avidemux-2.5.4 (26 Oct 2010)

  26 Oct 2010; Markos Chandras <hwoarang@gentoo.org> +avidemux-2.5.4.ebuild,
  +files/avidemux-2.5.4-build-plugins-fix.patch:
  Version bump

  24 Oct 2010; Samuli Suominen <ssuominen@gentoo.org>
  avidemux-2.5.1-r2.ebuild, avidemux-2.5.1_p5428.ebuild,
  avidemux-2.5.2.ebuild, avidemux-2.5.3-r3.ebuild:
  Remove media-libs/alsa-oss from deps wrt #342441 by Sven Müller.

*avidemux-2.5.3-r3 (05 Oct 2010)

  05 Oct 2010; Markos Chandras <hwoarang@gentoo.org>
  -avidemux-2.5.3-r1.ebuild, -avidemux-2.5.3-r2.ebuild,
  +avidemux-2.5.3-r3.ebuild, +files/avidemux-2.5.3-fix-fgets-fortify.patch:
  Apply patch to fix possible buffer overflows. Thanks to Kevin Pyle for the
  patch. Bug #338619

  18 Sep 2010; Fabio Erculiani <lxnay@gentoo.org>
  avidemux-2.5.1_p5428.ebuild, avidemux-2.5.2.ebuild,
  avidemux-2.5.3-r1.ebuild, avidemux-2.5.3-r2.ebuild:
  fix AVIDEMUX_INSTALL_PREFIX and AVIDEMUX_CORECONFIG_DIR cmake variables,
  they were poiting to non-existent directories, causing build failures on
  plugins

  01 Sep 2010; Markos Chandras <hwoarang@gentoo.org>
  avidemux-2.5.3-r2.ebuild:
  Append -D__STDC_FORMAT_MACROS to fix compilation issues with new glibc.
  Thanks to Diego E. 'Flameeyes' Pettenò <flameeyes@gentoo.org>. Bug
  #335015

  21 Aug 2010; Markos Chandras <hwoarang@gentoo.org>
  -files/avidemux-2.4.3-x264.patch, -files/avidemux-2.4-libdca.patch:
  Remove unused files

  11 Aug 2010; Markos Chandras <hwoarang@gentoo.org>
  avidemux-2.5.3-r2.ebuild:
  Reverting my previous commit about the media-plugins/swh-plugins
  dependency. Bug #331695

  08 Aug 2010; Markos Chandras <hwoarang@gentoo.org>
  avidemux-2.5.3-r2.ebuild:
  Add missing media-plugins/swh-plugins dependency. Thanks to Michael Weber
  (xmw) <gentoo@xmw.de> for reporting. Bug #331695

*avidemux-2.5.3-r2 (01 Aug 2010)

  01 Aug 2010; Markos Chandras <hwoarang@gentoo.org>
  +avidemux-2.5.3-r2.ebuild, +files/avidemux-pulseaudiosimple.patch:
  Apply patch to fix pulseaudio automagic dependency. Fixes bug #327555.
  Thanks to Mike Gilbert <floppymaster@gmail.com> for the patch

  18 Jun 2010; Markos Chandras <hwoarang@gentoo.org> avidemux-2.5.2.ebuild:
  Apply gcc-4.5 patch to previous ebuild

*avidemux-2.5.3-r1 (18 Jun 2010)

  18 Jun 2010; Markos Chandras <hwoarang@gentoo.org>
  +files/2.5.3_field_asm_fix.diff, -avidemux-2.5.3.ebuild,
  +avidemux-2.5.3-r1.ebuild, -files/avidemux-gcc-4.5.patch:
  New patch for GCC-4.5. Thanks to Archlinux guys

*avidemux-2.5.3 (13 Jun 2010)

  13 Jun 2010; Markos Chandras <hwoarang@gentoo.org> +avidemux-2.5.3.ebuild,
  +files/avidemux-2.5.3-build-plugins-fix.patch, metadata.xml:
  Version bump to 2.5.3. Fixes bug #321015. Fixes desktop icon wrt bug
  #316599 and bug #291453

  11 Jun 2010; Ben de Groot <yngwin@gentoo.org> metadata.xml:
  Removing myself as maintainer and co-assigning to qt herd

  03 Jun 2010; Markos Chandras <hwoarang@gentoo.org> avidemux-2.5.2.ebuild,
  +files/avidemux-gcc-4.5.patch:
  GCC-4.5 patch thanks to Martin Väth <vaeth@mathematik.uni-wuerzburg.de>.
  Fixes bug #322217

  03 Jun 2010; Joseph Jezak <josejx@gentoo.org> avidemux-2.5.2.ebuild,
  +files/avidemux-2.5.2-altivec-bool.patch:
  Add fix for altivec on ppc.

  09 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
  avidemux-2.5.1_p5428.ebuild:
  stable x86, bug 297850

*avidemux-2.5.2 (22 Dec 2009)

  22 Dec 2009; Ben de Groot <yngwin@gentoo.org> +avidemux-2.5.2.ebuild:
  Version bump

  22 Dec 2009; Samuli Suominen <ssuominen@gentoo.org>
  avidemux-2.5.1_p5428.ebuild:
  amd64 stable wrt #297850

*avidemux-2.5.1_p5428 (29 Oct 2009)

  29 Oct 2009; Ben de Groot <yngwin@gentoo.org>
  -avidemux-2.5.1_p5359.ebuild, -avidemux-2.5.1_p5396.ebuild,
  +avidemux-2.5.1_p5428.ebuild,
  +files/avidemux-2.5.1-build-plugins-fix.patch:
  New snapshot, fixes bug 290233. Drop older snapshots.

*avidemux-2.5.1_p5396 (21 Oct 2009)

  21 Oct 2009; Ben de Groot <yngwin@gentoo.org> avidemux-2.5.1_p5359.ebuild,
  +avidemux-2.5.1_p5396.ebuild:
  Add new snapshot to work with new x264 snapshot (bug 287850), add
  subversion as buildtime dep for snapshots (bug 287241).

  20 Oct 2009; Samuli Suominen <ssuominen@gentoo.org>
  avidemux-2.4.4-r2.ebuild:
  Remove amrnb support wrt #252140.

*avidemux-2.5.1_p5359 (30 Sep 2009)

  30 Sep 2009; Ben de Groot <yngwin@gentoo.org>
  +avidemux-2.5.1_p5359.ebuild:
  Adding snapshot from current 2.5 'gruntster' branch, which works with
  newer x264 (bug 286801). Dropped a few patches which were applied upstream.

*avidemux-2.5.1-r2 (30 Sep 2009)

  30 Sep 2009; Ben de Groot <yngwin@gentoo.org> avidemux-2.4.4-r2.ebuild,
  -avidemux-2.5.0.ebuild, -avidemux-2.5.1-r1.ebuild,
  +avidemux-2.5.1-r2.ebuild, metadata.xml:
  Remove old, except stable. Cleanup wrt amr. Specify x264 dep to fix bug
  286801. Re-adding ~ppc keyword.

  27 Sep 2009; Dominik Kapusta <ayoy@gentoo.org> avidemux-2.5.0.ebuild,
  avidemux-2.5.1-r1.ebuild:
  Added a dependency on cmake-2.6.4 at least (bug #281560)

*avidemux-2.5.1-r1 (24 Sep 2009)

  24 Sep 2009; Dominik Kapusta <ayoy@gentoo.org> +avidemux-2.5.1-r1.ebuild,
  metadata.xml:
  Version bump, dropping ~ppc keyword due to opencore-amr not keyworded yet
  for ppc (bug #283839).

  15 Aug 2009; Ben de Groot <yngwin@gentoo.org> -avidemux-2.4.3.ebuild:
  Remove old

*avidemux-2.5.0 (04 Aug 2009)

  04 Aug 2009; Ben de Groot <yngwin@gentoo.org> +avidemux-2.5.0.ebuild:
  Version bump

  28 Jun 2009; Markus Meier <maekke@gentoo.org> avidemux-2.4.4-r2.ebuild:
  amd64 stable, bug #272842

  27 Jun 2009; Ben de Groot <yngwin@gentoo.org> -avidemux-2.4.4-r1.ebuild,
  avidemux-2.4.4-r2.ebuild, +files/avidemux-2.4-ts-cmake.patch:
  Add patch to fix possible parallel make issues, thanks to Martin von
  Gagern in bug 272730. Remove old revision.

  26 Jun 2009; Christian Faulhammer <fauli@gentoo.org>
  avidemux-2.4.4-r2.ebuild:
  stable x86, bug 272842

  06 Jun 2009; nixnut <nixnut@gentoo.org> avidemux-2.4.4-r2.ebuild:
  ppc stable #272842

*avidemux-2.4.4-r2 (05 Jun 2009)

  05 Jun 2009; Ben de Groot <yngwin@gentoo.org> +avidemux-2.4.4-r2.ebuild:
  Drop arts support (bug 270575). Always depend on libX11 (bug 257019).
  Install translations into the right path (bug 272258). Drop die on distcc
  (bug 261996).

  15 May 2009; Ben de Groot <yngwin@gentoo.org> -avidemux-2.4.4.ebuild,
  avidemux-2.4.4-r1.ebuild, +files/avidemux-2.4.4-gcc-4.4.patch:
  Remove old. Add patch to fix compilation with gcc-4.4 (bug 269114).

*avidemux-2.4.4-r1 (08 May 2009)

  08 May 2009; Ben de Groot <yngwin@gentoo.org>
  +files/avidemux-2.4-cmake264.patch, avidemux-2.4.3.ebuild,
  +avidemux-2.4.4-r1.ebuild:
  Re-enable qt4 useflag, which works again with qt 4.5.1 (bug 259414). Add
  patch for cmake-2.6.4 change in behavior (bug 268618). Add test
  restriction (bug 265218).

*avidemux-2.4.4 (15 Feb 2009)

  15 Feb 2009; Ben de Groot <yngwin@gentoo.org> +avidemux-2.4.4.ebuild:
  Version bump, dropping patches that have been applied upstream. Fixes bug
  258655. Dropping encode useflag, renaming lame useflag to mp3. Disabling
  qt4 useflag, as that fails compilation, until someone supplies a patch or
  I find more time to look into this issue.

  17 Jan 2009; Ben de Groot <yngwin@gentoo.org>
  +files/lavcodec-mpegvideo_mmx-asm-fix.patch, avidemux-2.4.3.ebuild:
  Add patch from ffmpeg to prevent compilation failure triggered by
  -ftracer. Fixes bug 255268.

  21 Dec 2008; nixnut <nixnut@gentoo.org> avidemux-2.4.3.ebuild:
  Stable on ppc wrt bug 245535

  20 Dec 2008; Thomas Anderson <gentoofan23@gentoo.org>
  avidemux-2.4.3.ebuild:
  stable amd64, bug 245535

  15 Dec 2008; <ssuominen@gentoo.org> avidemux-2.4.3.ebuild:
  x86 stable wrt #245535

  04 Nov 2008; Peter Alfredsen <loki_val@gentoo.org> avidemux-2.4.1.ebuild:
  Fix x264 dependencies in preparation for ffmpeg bump.

  16 Oct 2008; Ben de Groot <yngwin@gentoo.org>
  +files/avidemux-2.4.3-x264.patch, avidemux-2.4.3.ebuild:
  Adding patch for newer x264 from upstream. Thanks to Tim Harder in bug
  240446.

  24 Sep 2008; Ben de Groot <yngwin@gentoo.org> -avidemux-2.4.ebuild,
  avidemux-2.4.1.ebuild, -avidemux-2.4.2.ebuild, avidemux-2.4.3.ebuild:
  Split out aac and lame configure flags, to fix bug 236229. Remove old
  ~arch versions.

*avidemux-2.4.3 (10 Aug 2008)

  10 Aug 2008; Ben de Groot <yngwin@gentoo.org> +avidemux-2.4.3.ebuild:
  Version bump

  26 Jul 2008; Carsten Lohrke <carlo@gentoo.org> avidemux-2.4.ebuild,
  avidemux-2.4.1.ebuild, avidemux-2.4.2.ebuild:
  Fix broken split Qt 4.4 dependencies, cf. bug 217161 comment 11.

*avidemux-2.4.2 (12 Jul 2008)

  12 Jul 2008; Ben de Groot <yngwin@gentoo.org>
  +files/avidemux-2.4.2-x264-2pass-fix.patch, +avidemux-2.4.2.ebuild:
  Version bump. Bug 231151.

  22 Jun 2008; Markus Meier <maekke@gentoo.org> avidemux-2.4.1.ebuild:
  amd64/x86 stable, bug #227307

  20 Jun 2008; Ben de Groot <yngwin@gentoo.org> avidemux-2.4.1.ebuild:
  Adding check for distcc and die if present in FEATURES. Bug 213455.

  16 Jun 2008; nixnut <nixnut@gentoo.org> avidemux-2.4.1.ebuild:
  Stable on ppc wrt bug 227307

  19 Apr 2008; Ben de Groot <yngwin@gentoo.org> avidemux-2.4.ebuild,
  avidemux-2.4.1.ebuild:
  Adjusting qt:4 dep

  10 Apr 2008; Ben de Groot <yngwin@gentoo.org> avidemux-2.4.ebuild,
  avidemux-2.4.1.ebuild:
  Adjust dependency for split qt-4.

  10 Apr 2008; Ben de Groot <yngwin@gentoo.org>
  +files/avidemux-2.4.1-gcc43-includes.patch,
  +files/avidemux-2.4.1-gcc43-missing-asm-naming.patch,
  avidemux-2.4.1.ebuild:
  Adding gcc-4.3 patches from bug 213099.

  07 Apr 2008; Ben de Groot <yngwin@gentoo.org> avidemux-2.4.ebuild,
  avidemux-2.4.1.ebuild:
  Pkgmove x264-svn to x264

*avidemux-2.4.1 (17 Feb 2008)

  17 Feb 2008; Ben de Groot (yngwin) <ben@berkano.net> metadata.xml,
  +avidemux-2.4.1.ebuild:
  Version bump. Should fix #207326.

  15 Feb 2008; Samuli Suominen <drac@gentoo.org> avidemux-2.4.ebuild:
  Move fontconfig behind truetype flag to match other ebuilds in tree.

  28 Jan 2008; Samuli Suominen <drac@gentoo.org> avidemux-2.4.ebuild:
  Change qt dep to >=4.3 wrt #207743.

*avidemux-2.4 (28 Dec 2007)

  28 Dec 2007; Samuli Suominen <drac@gentoo.org>
  +files/avidemux-2.4-i18n.patch, +files/avidemux-2.4-libdca.patch,
  +avidemux-2.4.ebuild:
  Version bump wrt #203164, thanks to Joe for reporting.

  25 Dec 2007; Christian Heim <phreak@gentoo.org> metadata.xml:
  Removing zypher from metadata.xml as per #26909.

  01 Dec 2007; Samuli Suominen <drac@gentoo.org> avidemux-2.4_pre3.ebuild:
  Update cmake dep. to 2.4.4 wrt #200940, thanks to Honza for reporting.

  30 Nov 2007; Samuli Suominen <drac@gentoo.org>
  +files/avidemux-2.4_pre3-i18n.patch, avidemux-2.4_pre3.ebuild:
  Change i18n installation directory.

*avidemux-2.4_pre3 (30 Nov 2007)

  30 Nov 2007; Samuli Suominen <drac@gentoo.org>
  +files/avidemux-2.4_pre3-libdca.patch, +avidemux-2.4_pre3.ebuild:
  Version bump, ebuild from /dev/null but thanks to yngwin for original ebuild
  at berkano overlay and Ingmar from #genkdesvn for helping with cmake utils.

  27 Nov 2007; Matthias Schwarzott <zzam@gentoo.org> avidemux-2.3.0.ebuild:
  Fixed quoting.

  22 Jul 2007; Donnie Berkholz <dberkholz@gentoo.org>;
  avidemux-2.3.0.ebuild:
  Drop virtual/x11 references.

  07 Feb 2007; Alexis Ballier <aballier@gentoo.org> avidemux-2.3.0.ebuild:
  Fix faac configuration, bug #165817

  03 Feb 2007; Alexis Ballier <aballier@gentoo.org>
  files/avidemux-2.3.0-twolame.patch, avidemux-2.3.0.ebuild:
  external twolame patch update from  Fabrice Delliaux

  03 Feb 2007; Alexis Ballier <aballier@gentoo.org> avidemux-2.3.0.ebuild:
  make install -> emake

  03 Feb 2007; Steve Dibb <beandog@gentoo.org>
  -files/avidemux-2.0.42-as-needed.patch, -files/avidemux-altivec.patch,
  -files/avidemux-extra-qualification.diff:
  Remove old patches

  03 Feb 2007; Steve Dibb <beandog@gentoo.org> -avidemux-2.0.42-r1.ebuild,
  -avidemux-2.1_pre1.ebuild:
  Remove old versions

  03 Feb 2007; Alexis Ballier <aballier@gentoo.org>
  +files/avidemux-2.3.0-twolame.patch, avidemux-2.3.0.ebuild:
  Patch to build with external twolame, thanks to Fabrice Delliaux, bug #158340

  02 Feb 2007; Alexis Ballier <aballier@gentoo.org>
  +files/avidemux-2.3.0-amprogas.patch, avidemux-2.3.0.ebuild:
  Use eautoreconf rather than the provided script, bug #164973

  02 Feb 2007; Alexis Ballier <aballier@gentoo.org>
  +files/avidemux-2.3.0-po.makefile.patch, avidemux-2.3.0.ebuild:
  parallel make fix, bug #163376, add some quotes, einfo -> elog conversion

  23 Jan 2007; Steve Dibb <beandog@gentoo.org> avidemux-2.3.0.ebuild:
  Autotools fix, bug 163376

*avidemux-2.3.0 (22 Jan 2007)

  22 Jan 2007; Steve Dibb <beandog@gentoo.org>
  +files/avidemux-2.3.0-configure.patch, +files/avidemux-2.3.0-dts.patch,
  +avidemux-2.3.0.ebuild:
  Version bump, bug 150175

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

  05 Jan 2007; Diego Pettenò <flameeyes@gentoo.org>
  avidemux-2.0.42-r1.ebuild, avidemux-2.1_pre1.ebuild:
  Convert to use elog.

  16 Sep 2006; Michael Sterrett <mr_bones_@gentoo.org>
  -avidemux-2.0.24.ebuild:
  clean out old, non-modX ebuild

  14 Sep 2006; Matthias Schwarzott <zzam@gentoo.org>
  +files/avidemux-2.0.42-as-needed.patch, avidemux-2.0.42-r1.ebuild:
  Added patch to make it link with --as-needed, Bug #145684.

  07 Sep 2006; Joshua Jackson <tsunam@gentoo.org> avidemux-2.0.42-r1.ebuild:
  stable x86; bug #140715

  06 Sep 2006; Joseph Jezak <josejx@gentoo.org> avidemux-2.0.42-r1.ebuild:
  Marked ppc stable for bug #140715.

  08 Jul 2006; Joseph Jezak <josejx@gentoo.org>
  +files/avidemux-altivec.patch, avidemux-2.0.42-r1.ebuild:
  Added altivec patch from bug #107209.

  14 Apr 2006; Mark Loeser <halcy0n@gentoo.org>
  +files/avidemux-extra-qualification.diff, avidemux-2.0.42-r1.ebuild:
  Add patch to fix compilation with gcc-4.1 by Hanno Meyer-Thurow <h DOT mth
  AT web dot de>; bug #126287

  15 Feb 2006; Diego Pettenò <flameeyes@gentoo.org> avidemux-2.0.24.ebuild,
  avidemux-2.0.42-r1.ebuild, avidemux-2.1_pre1.ebuild:
  Fix dependencies: gettext is not an RDEPEND.

  26 Dec 2005; Luca Barbato <lu_zero@gentoo.org> avidemux-2.0.24.ebuild:
  Cleanup

  19 Dec 2005; Diego Pettenò <flameeyes@gentoo.org>
  avidemux-2.0.42-r1.ebuild, avidemux-2.1_pre1.ebuild:
  Fix dependencies for modular x.

  04 Nov 2005; Diego Pettenò <flameeyes@gentoo.org>
  avidemux-2.1_pre1.ebuild:
  Bump requirement of spidermonkey to a version that actually provide jsapi.h.
  See bug #111445. Move flags filtering in pkg_setup in the mean time.

*avidemux-2.0.42-r1 (03 Sep 2005)

  03 Sep 2005; Diego Pettenò <flameeyes@gentoo.org>
  -avidemux-2.0.42.ebuild, +avidemux-2.0.42-r1.ebuild:
  Added patch to fix hangs during export of JPEG sequences. Thanks to Alexey
  Drobiyan in bug #104013.

  30 Aug 2005; Diego Pettenò <flameeyes@gentoo.org>
  -files/2.0.38_rc2-fix-faad.patch, -avidemux-2.0.38.ebuild,
  -avidemux-2.0.38-r1.ebuild, -avidemux-2.0.40.ebuild,
  -avidemux-2.0.40-r1.ebuild:
  Removed extra versions, leaving 2.1 pre, 2.0.24 (stable) and 2.0.42 (target
  stable?).

*avidemux-2.1_pre1 (22 Aug 2005)

  22 Aug 2005; Diego Pettenò <flameeyes@gentoo.org>
  +avidemux-2.1_pre1.ebuild:
  Added pre version of Avidemux 2.1, with heavy patching. Need quite a bit of
  testing.

  08 Aug 2005; Diego Pettenò <flameeyes@gentoo.org> avidemux-2.0.42.ebuild:
  Added patch to respect CXXFLAGS.

  07 Aug 2005; Diego Pettenò <flameeyes@gentoo.org> avidemux-2.0.42.ebuild:
  Use fixheadtails eclass to fix non-POSIX head calls.

  07 Aug 2005; Diego Pettenò <flameeyes@gentoo.org> avidemux-2.0.42.ebuild:
  Updated patchlevel with PIC/__PIC__ patch.

*avidemux-2.0.42 (23 Jul 2005)

  23 Jul 2005; Diego Pettenò <flameeyes@gentoo.org>
  +avidemux-2.0.42.ebuild:
  New upstream version. Closes #99984.

  29 May 2005; Diego Pettenò <flameeyes@gentoo.org>
  avidemux-2.0.40-r1.ebuild:
  Now install icon and .desktop file for Avidemux2.

*avidemux-2.0.40-r1 (26 May 2005)

  26 May 2005; Diego Pettenò <flameeyes@gentoo.org>
  +avidemux-2.0.40-r1.ebuild:
  New revision to cope with latest faad2 API changes.

  25 May 2005; Diego Pettenò <flameeyes@gentoo.org> avidemux-2.0.38.ebuild,
  avidemux-2.0.38-r1.ebuild, avidemux-2.0.40.ebuild:
  Added a check to avoid compiling without audio devices (make the compilation
  fail). Closes #93943.

*avidemux-2.0.40 (25 May 2005)

  25 May 2005; Diego Pettenò <flameeyes@gentoo.org>
  -avidemux-2.0.36.ebuild, -avidemux-2.0.38_rc2.ebuild,
  -avidemux-2.0.38_rc2-r1.ebuild, -avidemux-2.0.38_rc3-r1.ebuild,
  +avidemux-2.0.40.ebuild:
  New upstream version, removed some old versions.

*avidemux-2.0.38-r1 (18 May 2005)

  18 May 2005; Diego Pettenò <flameeyes@gentoo.org>
  +avidemux-2.0.38-r1.ebuild:
  Added the two patches from upstream for latest version.

*avidemux-2.0.38 (14 May 2005)

  14 May 2005; Diego Pettenò <flameeyes@gentoo.org>
  +avidemux-2.0.38.ebuild:
  New upstream version, out of rc. Removed mmx useflag as upstream removed
  --enable-mmx and just enable it at runtime if found. Patchset updated as
  needed.

  12 May 2005; Diego Pettenò <flameeyes@gentoo.org>
  avidemux-2.0.38_rc3-r1.ebuild:
  Added patch which should fix bug #89356.

*avidemux-2.0.38_rc3-r1 (07 May 2005)

  07 May 2005; Diego Pettenò <flameeyes@gentoo.org>
  -avidemux-2.0.38_rc3.ebuild, +avidemux-2.0.38_rc3-r1.ebuild:
  Removed faad patch as faad2-2.0-r6 broken the build. Fixes #91799.

*avidemux-2.0.38_rc3 (02 May 2005)

  02 May 2005; Diego Pettenò <flameeyes@gentoo.org>
  +avidemux-2.0.38_rc3.ebuild:
  New upstream version. Updated patchset for new version.

  01 May 2005; Diego Pettenò <flameeyes@gentoo.org>
  -files/2.0.38_rc1_mpegidentify.patch,
  -files/avidemux-0.9-libxml2.5.7.patch,
  -files/avidemux-2.0.30_amd64_cpuutil.patch,
  -files/avidemux-2.0.30_fixes.patch,
  -files/avidemux-2.0.32_mpeg_ps_fix.patch,
  -files/avidemux-2.0.34-test1_faac.patch,
  -files/avidemux-2.0.38_rc2-aclocal.patch, -files/alsa.patch,
  -files/gcc2.patch, -files/avidemux-2.0.38_rc2-mmx_altivec.patch,
  -files/patch_jpeg.diff, -files/resize_crash.patch, -files/xvid.patch,
  -avidemux-2.0.34_rc1.ebuild, -avidemux-2.0.34_rc1-r1.ebuild,
  -avidemux-2.0.34_rc2.ebuild, -avidemux-2.0.38_rc1.ebuild,
  avidemux-2.0.38_rc2-r1.ebuild:
  Removed old ebuilds (release candidates) and orphaned files. Make a new
  patchset tarball so that it doesn't need files in FILESDIR. Now just one
  file is there.

  29 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  avidemux-2.0.38_rc2-r1.ebuild:
  Fixed patchset urls.

  21 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  avidemux-2.0.38_rc2-r1.ebuild:
  Increased requirement of faad of at least -r5 which has the change in API
  calls so that can't be installed in old-API systems.

  19 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  +files/avidemux-2.0.38_rc2-mmx_altivec.patch,
  avidemux-2.0.38_rc2-r1.ebuild:
  Added patch to fix upstream --enable params on configure which are borked.
  Fixes #89356.

  18 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  +files/avidemux-2.0.38_rc2-aclocal.patch, avidemux-2.0.38_rc2-r1.ebuild:
  Added a patch for some strange autotools combination which doesn't look in
  m4 directory. Fixes #89575.

*avidemux-2.0.38_rc2-r1 (18 Apr 2005)

  18 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  +avidemux-2.0.38_rc2-r1.ebuild:
  Added a new revision to avidemux with configure patches which makes
  deprecated the configure cache tricks. Fixes #89097.

  15 Apr 2005; Jan Brinkmann <luckyduck@gentoo.org>
  avidemux-2.0.34_rc1-r1.ebuild, avidemux-2.0.34_rc2.ebuild,
  avidemux-2.0.36.ebuild, avidemux-2.0.38_rc1.ebuild,
  avidemux-2.0.38_rc2.ebuild:
  doesnt makes use of the pic useflag any longer

  06 Apr 2005; Luca Barbato <lu_zero@gentoo.org> avidemux-2.0.38_rc2.ebuild:
  Another fix to configure args

  06 Apr 2005; Luca Barbato <lu_zero@gentoo.org> avidemux-2.0.38_rc2.ebuild:
  Minor fix

  05 Apr 2005; Luca Barbato <lu_zero@gentoo.org>
  +files/2.0.38_rc2-fix-faad.patch, avidemux-2.0.38_rc2.ebuild:
  fix for bug #86935, thanks again Diego

*avidemux-2.0.38rc2b (31 Mar 2005)

  03 Apr 2005; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.38_rc2.ebuild:
  Version bump.

  31 Mar 2005; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.36.ebuild:
  Fixed typo, closing bug #87380.

*avidemux-2.0.38rc1 (20 Feb 2005)

  21 Feb 2005; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.38_rc1.ebuild:
  Version bump.

*avidemux-2.0.36 (12 Jan 2005)

  14 Jan 2005; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.36.ebuild:
  Version bump.

  14 Dec 2004; Jeremy Huddleston <eradicator@gentoo.org>
  avidemux-2.0.34_rc1-r1.ebuild, avidemux-2.0.34_rc2.ebuild:
  Using 'aac' instead of faad and faac.

*avidemux-2.0.34_rc2 (11 Dec 2004)

  12 Dec 2004; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.34_rc2.ebuild:
  Version bump, changed usage of mmx-flag to autodetect if not diabled.

  30 Nov 2004; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.34_rc1-r1.ebuild,
  Cleanup and addition of missing USE-flags, solves bug #72217.
  Thanks go to Diego Pettenò for bug and suggested fix.

  26 Nov 2004; Chris White <chriswhite@gentoo.org> -avidemux-0.9-r1.ebuild,
  -avidemux-2.0.18.ebuild, -avidemux-2.0.20.ebuild, -avidemux-2.0.22.ebuild,
  -avidemux-2.0.26.ebuild, -avidemux-2.0.28.ebuild, -avidemux-2.0.30.ebuild,
  -avidemux-2.0.32.ebuild:
  Removed old ebuilds with permission from zypher.

  09 Nov 2004; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.34_rc1.ebuild:
  Version bump.

*avidemux-2.0.32 (26 Okt 2004)

  29 Okt 2004; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.32.ebuild:
  Version bump.

  19 Okt 2004; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.30.ebuild:
  Added amd64-patch, closes bug #68052.

*avidemux-2.0.30 (15 Okt 2004)

  17 Okt 2004; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.30.ebuild:
  Version bump.

  23 Sep 2004; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.26.ebuild,
  avidemux-2.0.28.ebuild:
  Added faad2 dependency, closes bug #59556

  29 Aug 2004; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.28.ebuild:
  Added xvid-(0.9)-patch.
  Closes bug #61895

  26 Aug 2004; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.28.ebuild:
  Added "-fforce-addr" to the list of filtered flags.
  Closes bug #61632 and #61612

*avidemux-2.0.28 (12 Aug 2004)

  24 Aug 2004; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.28.ebuild:
  Version bump, closes bug #60254.Introducing xvid-1.0 as a dependency.
  Thanks to Ken Garland for his submission.

  23 Jul 2004; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.26.ebuild:
  Cleaned up filter-flags, closes bug #58112.

  23 Jul 2004; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.26.ebuild:
  Version bump.
  Added dependency to faac, closes bug #58080.

  22 Jul 2004; Marc Hildebrand <zypher@gentoo.org> metadata.xml,
  avidemux-2.0.24.ebuild:
  Changed package maintainer (Added myself).
  Fixed configure and configure.in, closing bug #57831

  22 Jul 2004; Chris White <chriswhite@gentoo.org> metadata.xml,
  avidemux-2.0.24.ebuild:
  Added myself to metadata.xml as package maintainer. Added -funroll-all-loops
  to the filter-flags list. It appears that both -funroll-loops and
  -funroll-all-loops both kill the build.

  19 Jul 2004; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.24.ebuild:
  Added dependency for automake-1.8.3, fixes bug #57328

  26 Jun 2004; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.24.ebuild:
  Marked stable for ppc and testing for ~amd64.

  23 Jun 2004; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.24.ebuild:
  Marked stable for x86.

  09 Jun 2004; Aron Griffis <agriffis@gentoo.org> avidemux-0.9-r1.ebuild,
  avidemux-2.0.18.ebuild, avidemux-2.0.20.ebuild, avidemux-2.0.22.ebuild,
  avidemux-2.0.24.ebuild:
  Fix use invocation

*avidemux-2.0.24 (08 May 2004)

  08 May 2004; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.24.ebuild:
  Version bump.

  03 May 2004; Jeremy Huddleston <eradicator@gentoo.org>
  avidemux-0.9-r1.ebuild, avidemux-2.0.18.ebuild, avidemux-2.0.20.ebuild,
  avidemux-2.0.22.ebuild:
  Changing mad dep to madplay.

  Removed divx4linux dep as it's not used anyway. Closes bug #45176
  bumped to stable

*avidemux-2.0.22 (28 Feb 2004)

  28 Feb 2004; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.22.ebuild:
  Version bumped.

  01 Feb 2004; Martin Holzer <mholzer@gentoo.org> avidemux-2.0.18.ebuild,
  files/alsa.patch:
  adding alsa.patch Closes 38982

  01 Feb 2004; Martin Holzer <mholzer@gentoo.org> avidemux-2.0.18.ebuild,
  avidemux-2.0.20.ebuild:
  adding filter. Closes 39980.

*avidemux-2.0.20 (21 Dec 2003)

  01 May 2004; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.20.ebuild:
  Removed divx4linux dep as it's not used anyway. Closes bug #45176

  21 Dec 2003; Martin Holzer <mholzer@gentoo.org> avidemux-2.0.20.ebuild:
  Version bumped. Closes 36224.

  27 Nov 2003; Martin Holzer <mholzer@gentoo.org> avidemux-2.0.18.ebuild,
  files/resize_crash.patch:
  adding patch. Closes #33993.

  02 Nov 2003; Martin Holzer <mholzer@gentoo.org>
  avidemux-2.0.16.ebuild, avidemux-2.0.18.ebuild, files/gcc2.patch:
  adding gcc2 patch.

*avidemux-2.0.18 (01 Nov 2003)

  01 May 2004; Marc Hildebrand <zypher@gentoo.org> avidemux-2.0.18.ebuild:
  Removed divx4linux dep as it's not used anyway. Closes bug #45176

  01 Nov 2003; Markus Nigbur <pyrania@gentoo.org> avidemux-2.0.18.ebuild:
  Version bump.

  30 Oct 2003; Michael Sterrett <mr_bones_@gentoo.org> avidemux-0.9.ebuild:
  removed old ebuild that had an odd DEPEND on a no longer existing libxml2

*avidemux-2.0.16 (29 Sep 2003)

  29 Sep 2003; Martin Holzer <mholzer@gentoo.org> avidemux-2.0.16.ebuild:
  Version bumped. Closes #29824.

  20 Aug 2003; Martin Holzer <mholzer@gentoo.org> avidemux-2.0.12.ebuild,
  avidemux-2.0.14.ebuild:
  Filtering out flag. Closes #26936.

*avidemux-2.0.14 (17 Aug 2003)

  17 Aug 2003; Martin Holzer <mholzer@gentoo.org> avidemux-2.0.14.ebuild:
  Version bumped.

*avidemux-2.0.12 (04 Aug 2003)

  04 Aug 2003; Martin Holzer <mholzer@gentoo.org> avidemux-2.0.12.ebuild:
  Verison bumped as always #25896.

*avidemux-0.9-r1 (22 Jul 2003)

  22 Jul 2003; Martin Holzer <mholzer@gentoo.org> avidemux-0.9-r1.ebuild,
  files/avidemux-0.9-libxml2.5.7.patch:
  Fixing libxml2 issue. Submitted by Marc Hildebrand
  <marc.hildebrand@t-online.de> in #24545.

  19 Jul 2003; Nick Hadaway <raker@gentoo.org> avidemux-2.0.10-r1.ebuild:
  Readjusted for a mad metapackage Changed to econf.  Added debug and
  nls USE variables.  Author suggests marking 2.0.10 as stable.  Also
  added alsa, arts, oggvorbis, and truetype USE variables albeit with no
  configure opts.

*avidemux-2.0.10-r1 (17 Jul 2003)

  17 Jul 2003; Nick Hadaway <raker@gentoo.org> avidemux-2.0.10-r1.ebuild:
  New ebuild which depends on media-libs/{libmad,libid3tag}

*avidemux-2.0.10 (14 Jul 2003)

  14 Jul 2003; Martin Holzer <mholzer@gentoo.org> avidemux-2.0.10.ebuild:
  Version bumped.

*avidemux-2.0.9 (11 Jul 2003)

  11 Jul 2003; Martin Holzer <mholzer@gentoo.org> avidemux-2.0.2.ebuild,
  avidemux-2.0.9.ebuild:
  Version bumped. Ebuild submitted by Marc Hildebrand
  <marc.hildebrand@t-online.de> in #24216.

*avidemux-2.0.8 (28 Jun 2003)

  28 Jun 2003; Martin Holzer <mholzer@gentoo.org> avidemux-2.0.8.ebuild:
  Version bumped. Ebuild submitted by Marc Hildebrand
  <marc.hildebrand@t-online.de> in #20182.

*avidemux-2.0.3_rc2 (24 May 2003)

  24 May 2003; Lars Weiler <pylon@gentoo.org> avidemux-2.0.3_rc2.ebuild:
  Newer release candidat added. Thanks to Marc Hildebrand
  <marc.hildebrand@t-online.de> for the ebuild.

*avidemux-0.9 (27 Apr 2003)

  01 May 2003; Martin Holzer <mholzer@gentoo.org> avidemux-0.9.ebuild:
  Marked as stable

  28 Apr 2003; Martin Holzer <mholzer@gentoo.org> avidemux-0.9.ebuild:
  Added libxml2 IUSE. Closes #20097.

  27 Apr 2003; Mike Frysinger <vapier@gentoo.org> :
  Version bump.

*avidemux-0.9_rc3 (23 Mar 2003)

  29 Mar 2003; Martin Holzer <mholzer@gentoo.org> avidemux-0.9_rc3.ebuild:
  Marked as stable.

  23 Mar 2003; Martin Holzer <mholzer@gentoo.org> avidemux-0.9_rc1.ebuild,
  avidemux-0.9_rc3.ebuild:
  Version bumped and cleanup.

*avidemux-0.9_rc2 (12 Mar 2003)

  12 Mar 2003; Martin Holzer <mholzer@gentoo.org> avidemux-0.9_rc2.ebuild
  files/digest-avidemux-0.9_rc2 ChangeLog :
  Version bumped. Thx for ebuild to marc.hildebrand@t-online.de submitted
  in #17292.

*avidemux-0.9-rc1 (10 Mar 2003)

  10 Mar 2003; Martin Holzer <mholzer@gentoo.org> avidemux-0.9_rc1.ebuild
  files/digest-avidemux-0.9_rc1 ChangeLog :
  Version bumped. Thx for ebuild to marc.hildebrand@t-online.de submitted in
  #16909.

*avidemux-0.9-pre32 (09 Feb 2003)

  21 Feb 2003; Martin Holzer <mholzer@gentoo.org> avidemux-0.9_pre32.ebuild
  Marked as stable.

  09 Feb 2003; Martin Holzer <mholzer@gentoo.org> avidemux-0.9_pre32.ebuild
  files/digest-avidemux-0.9_pre32 ChangeLog :
  Version bumped. Thx for ebuild to marc.hildebrand@t-online.de submitted in
  #15366.

*avidemux-0.9-pre30 (20 Jan 2003)

  20 Jan 2003; Martin Holzer <mholzer@gentoo.org> avidemux-0.9_pre30.ebuild
  files/digest-avidemux-0.9_pre30 files/ASM_vidDeintAsm.cpp.diff.gz
  files/gui_filter.diff.gz ChangeLog :
  Version bumped. Thx for ebuild to marc.hildebrand@t-online.de submitted in
  #14174.

*avidemux-0.9-pre28 (09 Jan 2003)

  09 Jan 2003; Martin Holzer <mholzer@gentoo.org> avidemux-0.9_pre28.ebuild
  files/digest-avidemux-0.9_pre28 ChangeLog :
  Version bumped. Thx for ebuild to marc.hildebrand@t-online.de submitted in
  #13300. Including now fix to compile with -O3

*avidemux-0.9-pre26 (08 Jan 2003)

  08 Jan 2003; Martin Holzer <mholzer@gentoo.org> avidemux-0.9_pre26.ebuild
  files/digest-avidemux-0.9_pre26 ChangeLog :
  New Version + Patch to compile with freetype 2.1.3

*avidemux-0.9-pre24 (09 Dec 2002)

  09 Dec 2002; Mike Frysinger <vapier@gentoo.org> :
  version bump #11776

*avidemux-0.9-pre22 (22 Nov 2002)

  22 Nov 2002; Mike Frysinger <vapier@gentoo.org> :
  version bump #11024

*avidemux-0.9-pre18 (06 Okt 2002)

  25 Oct 2002; Mike Frysinger <vapier@gentoo.org> :
  Initial import.  Ebuilds from #8621 and #7973
  Ronny Pietschke <pietschke.r@t-online.de> (#8621)
  Marc Hildebrand <marc.hildebrand@t-online.de>

  06 Okt 2002; Marc Hildebrand <marc.hildebrand@t-online.de> :
  Small fix.
  see http://fixounet.free.fr/avidemux/ for details

*avidemux-0.9-pre17-fixed (05 Okt 2002)

  05 Okt 2002; Marc Hildebrand <marc.hildebrand@t-online.de> :
  The author fixed the code, compiles now without ffmpeg.
  see http://fixounet.free.fr/avidemux/ for details

*avidemux-0.9-pre17 (03 Okt 2002)

  05 Okt (Marc Hildebrand <marc.hildebrand@t-online.de> :
  This version won't compile without ffmpeg installed:
  Grab ffmpeg from cvs (or /usr/portage/distfiles) and install it this way:
  ./configure --prefix=/usr --enable-shared && make && make install

  Then try to emerge avidemux again.

  New features/bugfixes:
  see http://fixounet.free.fr/avidemux/ for details

*avidemux-0.9-pre16 (15 Sep 2002)

  23 Sep 2002; Marc Hildebrand <marc.hildebrand@t-online.de> :
  Fixes and changes by the author. Changed name of ebuild-file to match
  version better.
  see http://fixounet.free.fr/avidemux/ for details

*avidemux-0.9-pre14 (15 Sep 2002)

  10 Sep 2002; Marc Hildebrand <marc.hildebrand@t-online.de> :
  Small fixes and changes by the author.
  see http://fixounet.free.fr/avidemux/ for details

*avidemux-0.9-pre13 (30 Aug 2002)

  10 Sep 2002; Marc Hildebrand <marc.hildebrand@t-online.de> :
  Initial ebuild.
  see http://fixounet.free.fr/avidemux/ for details