summaryrefslogtreecommitdiff
blob: 35034bce9a8ac2f19ace966cac7d3da5c69d8b1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
# ChangeLog for media-video/vlc
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/ChangeLog,v 1.321 2008/04/06 13:20:38 aballier Exp $

*vlc-0.8.6f (06 Apr 2008)

  06 Apr 2008; Alexis Ballier <aballier@gentoo.org> +vlc-0.8.6f.ebuild:
  version bump for bug #214627, bug #161930 and bug #214550

  27 Mar 2008; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6e-r1.ebuild:
  Bump patchset to backport a fix from upstream to fix bug #214809

  27 Mar 2008; Alexis Ballier <aballier@gentoo.org> -vlc-0.8.6e.ebuild:
  remove old

  24 Mar 2008; Tobias Klausmann <klausman@gentoo.org> vlc-0.8.6e-r1.ebuild:
  Stable on alpha, bug #214277

  23 Mar 2008; Markus Meier <maekke@gentoo.org> vlc-0.8.6e-r1.ebuild:
  amd64 stable, security bug #214277

  23 Mar 2008; Raúl Porcel <armin76@gentoo.org> vlc-0.8.6e-r1.ebuild:
  sparc stable wrt security #214277, thanks to Friedrich Oslage for testing

  23 Mar 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  vlc-0.8.6e-r1.ebuild:
  ppc stable, bug #214277

  22 Mar 2008; Christian Faulhammer <opfer@gentoo.org> vlc-0.8.6e-r1.ebuild:
  stable x86, security bug 214277

*vlc-0.8.6e-r1 (22 Mar 2008)

  22 Mar 2008; Alexis Ballier <aballier@gentoo.org> +vlc-0.8.6e-r1.ebuild:
  Rev bump with new patchset for security fixes (bug #214277)

  22 Mar 2008; Alexis Ballier <aballier@gentoo.org>
  -vlc-0.9.0_alpha20080117.ebuild, -vlc-0.9.0_alpha20080309.ebuild,
  -vlc-0.9.0_alpha20080314.ebuild:
  remove old

*vlc-0.9.0_alpha20080319 (19 Mar 2008)

  19 Mar 2008; Alexis Ballier <aballier@gentoo.org>
  +vlc-0.9.0_alpha20080319.ebuild:
  add a new snapshot

  17 Mar 2008; Raúl Porcel <armin76@gentoo.org> vlc-0.8.6e.ebuild,
  vlc-0.9.0_alpha20080117.ebuild, vlc-0.9.0_alpha20080309.ebuild,
  vlc-0.9.0_alpha20080314.ebuild:
  Fix deps for net-libs/xulrunner and www-client/mozilla-firefox

  15 Mar 2008; Alexis Ballier <aballier@gentoo.org>
  vlc-0.9.0_alpha20080314.ebuild:
  Restrict tests again... they fail.

*vlc-0.9.0_alpha20080314 (14 Mar 2008)

  14 Mar 2008; Alexis Ballier <aballier@gentoo.org>
  -vlc-0.9.0_alpha20080228.ebuild, +vlc-0.9.0_alpha20080314.ebuild:
  bump a new snapshot for bug #213332

  09 Mar 2008; Alexis Ballier <aballier@gentoo.org> -vlc-0.8.6d-r1.ebuild:
  remove unused version

  09 Mar 2008; Alexis Ballier <aballier@gentoo.org>
  vlc-0.9.0_alpha20080309.ebuild:
  Improve deps for qt4.4 split ebuilds; thanks to Bernd Steinhauser
  <gentoo@bernd-steinhauser.de>, bug #212746

*vlc-0.9.0_alpha20080309 (09 Mar 2008)

  09 Mar 2008; Alexis Ballier <aballier@gentoo.org>
  +vlc-0.9.0_alpha20080309.ebuild:
  bump another snapshot

  07 Mar 2008; Santiago M. Mola <coldwind@gentoo.org> vlc-0.8.6e.ebuild:
  amd64 stable wrt security bug #211575

  04 Mar 2008; Tobias Scherbaum <dertobi123@gentoo.org> vlc-0.8.6e.ebuild:
  ppc stable, bug #211575

  02 Mar 2008; Raúl Porcel <armin76@gentoo.org> vlc-0.8.6e.ebuild:
  alpha stable wrt security #211575, thanks to Tobias Klausmann for testing

  29 Feb 2008; Ferris McCormick <fmccor@gentoo.org> vlc-0.8.6e.ebuild:
  Sparc stable, security Bug #211575.

  29 Feb 2008; Alexis Ballier <aballier@gentoo.org> -vlc-0.8.6d.ebuild,
  -vlc-0.9.0_alpha20080128.ebuild:
  remove unused versions

  29 Feb 2008; Alexis Ballier <aballier@gentoo.org>
  vlc-0.9.0_alpha20080228.ebuild:
  gnutls really requires libgcrypt, merge the useflags, bug #211759

  29 Feb 2008; Christian Faulhammer <opfer@gentoo.org> vlc-0.8.6e.ebuild:
  stable x86, security bug 211575

*vlc-0.8.6e (28 Feb 2008)

  28 Feb 2008; Alexis Ballier <aballier@gentoo.org> +vlc-0.8.6e.ebuild:
  version bump, stable candidate for security fixes

*vlc-0.9.0_alpha20080228 (28 Feb 2008)

  28 Feb 2008; Alexis Ballier <aballier@gentoo.org>
  +vlc-0.9.0_alpha20080228.ebuild:
  bump new snapshot

  15 Feb 2008; Samuli Suominen <drac@gentoo.org> vlc-0.8.6d.ebuild,
  vlc-0.8.6d-r1.ebuild:
  Remove libdts references.

  01 Feb 2008; Raúl Porcel <armin76@gentoo.org> vlc-0.8.6d-r1.ebuild:
  alpha/sparc stable wrt security #205299

  31 Jan 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  vlc-0.8.6d-r1.ebuild:
  ppc stable, bug #205299

  31 Jan 2008; Peter Weller <welp@gentoo.org> vlc-0.8.6d-r1.ebuild:
  Stable on amd64; bug 205299

  29 Jan 2008; Christian Faulhammer <opfer@gentoo.org> vlc-0.8.6d-r1.ebuild:
  stable x86, security bug 205299

*vlc-0.8.6d-r1 (28 Jan 2008)

  28 Jan 2008; Alexis Ballier <aballier@gentoo.org> +vlc-0.8.6d-r1.ebuild:
  add patches for bug #205299, atighten deps on ffmpeg because it will not
  work with swscaler

  28 Jan 2008; Alexis Ballier <aballier@gentoo.org> -vlc-0.8.6c.ebuild:
  remove old

*vlc-0.9.0_alpha20080128 (28 Jan 2008)

  28 Jan 2008; Alexis Ballier <aballier@gentoo.org>
  +vlc-0.9.0_alpha20080128.ebuild:
  bump a new snapshot

  19 Jan 2008; Raúl Porcel <armin76@gentoo.org> vlc-0.8.6d.ebuild:
  alpha stable wrt security #203345, thanks to Tobias Klausmann for testing

  19 Jan 2008; Alexis Ballier <aballier@gentoo.org>
  -vlc-0.9.0_alpha20071022.ebuild, -vlc-0.9.0_alpha20080110.ebuild:
  remove unused versions

  19 Jan 2008; Alexis Ballier <aballier@gentoo.org>
  vlc-0.9.0_alpha20080117.ebuild:
  no need to warn anymore with use=-vlm qt4, there are still some issues but
  this one is fixed

*vlc-0.9.0_alpha20080117 (17 Jan 2008)

  17 Jan 2008; Alexis Ballier <aballier@gentoo.org>
  +vlc-0.9.0_alpha20080117.ebuild:
  add a new snapshot

  12 Jan 2008; Alexis Ballier <aballier@gentoo.org>
  vlc-0.9.0_alpha20080110.ebuild:
  Add a warning when using qt4 and not vlm because qt4 will not work in that case

  11 Jan 2008; Tobias Scherbaum <dertobi123@gentoo.org> vlc-0.8.6d.ebuild:
  ppc stable, bug #203345

  11 Jan 2008; Ferris McCormick <fmccor@gentoo.org> vlc-0.8.6d.ebuild:
  Sparc stable --- Security Bug #203345 --- works as always.

  11 Jan 2008; Christian Faulhammer <opfer@gentoo.org> vlc-0.8.6d.ebuild:
  stable x86, security bug 203345

  11 Jan 2008; Alexis Ballier <aballier@gentoo.org>
  vlc-0.9.0_alpha20080110.ebuild:
  filter -fforce-addr on x86 because it fails

  11 Jan 2008; Steve Dibb <beandog@gentoo.org> vlc-0.8.6d.ebuild:
  amd64 stable, bug 203345

*vlc-0.8.6d (10 Jan 2008)

  10 Jan 2008; Alexis Ballier <aballier@gentoo.org> +vlc-0.8.6d.ebuild:
  bump to 0.8.6d, applying some security patches

*vlc-0.9.0_alpha20080110 (10 Jan 2008)

  10 Jan 2008; Alexis Ballier <aballier@gentoo.org>
  +vlc-0.9.0_alpha20080110.ebuild:
  bump a new snapshot, enable faad2 support to be closer to upstream, unleash
  qt4 gui due to numerous requests, should fix a few bugs and hopefuly not
  trigger a lot

  01 Jan 2008; Alexis Ballier <aballier@gentoo.org>
  vlc-0.9.0_alpha20071022.ebuild:
  stick musicbrainz deps to -2*, bug #203784

  01 Jan 2008; Alexis Ballier <aballier@gentoo.org>
  -vlc-0.9.0_alpha20071009.ebuild:
  remove unused version

  02 Nov 2007; Samuli Suominen <drac@gentoo.org> vlc-0.8.6c.ebuild,
  vlc-0.9.0_alpha20071009.ebuild, vlc-0.9.0_alpha20071022.ebuild:
  Change local USE flag mod to global USE flag modplug.

  26 Oct 2007; Steve Dibb <beandog@gentoo.org> vlc-0.8.6c.ebuild,
  vlc-0.9.0_alpha20071009.ebuild, vlc-0.9.0_alpha20071022.ebuild:
  Move linux-headers into DEPEND

  22 Oct 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6c.ebuild:
  backport patch from trunk for 0.8.6c to have a much cleaner directfb
  detection, closes bug #196144

*vlc-0.9.0_alpha20071022 (22 Oct 2007)

  22 Oct 2007; Alexis Ballier <aballier@gentoo.org>
  +vlc-0.9.0_alpha20071022.ebuild:
  Version bump, fixing bug #157746, big thanks to Martin Schlemmer and courmisch

  13 Oct 2007; Ryan Hill <dirtyepic@gentoo.org> vlc-0.8.6c.ebuild,
  vlc-0.9.0_alpha20071009.ebuild:
  Lock wxGTK to 2.6.

  10 Oct 2007; Alexis Ballier <aballier@gentoo.org>
  vlc-0.9.0_alpha20071009.ebuild:
  get back to only one slot, add a check for older versions instead, bug #195424

  10 Oct 2007; Alexis Ballier <aballier@gentoo.org>
  vlc-0.9.0_alpha20071009.ebuild:
  actually enable svg module when svg useflag is set

  10 Oct 2007; Alexis Ballier <aballier@gentoo.org>
  vlc-0.9.0_alpha20071009.ebuild:
  cosmetics, last part, sort alphabetically by useflag or potential useflag
  econf args

  10 Oct 2007; Alexis Ballier <aballier@gentoo.org>
  vlc-0.9.0_alpha20071009.ebuild:
  cosmetics, part 2, sort alphabetically RDEPENDs

  10 Oct 2007; Alexis Ballier <aballier@gentoo.org>
  vlc-0.9.0_alpha20071009.ebuild:
  cosmetics, sort alphabetically IUSEs

  10 Oct 2007; Alexis Ballier <aballier@gentoo.org>
  vlc-0.9.0_alpha20071009.ebuild:
  add support to build against xulrunner, thanks to Frittella Laurento
  <mrfree@infinito.it>, bug #161340

  10 Oct 2007; Alexis Ballier <aballier@gentoo.org>
  vlc-0.9.0_alpha20071009.ebuild:
  use get_libdir for locating nsplugin configuration, thanks to Donnie
  Berkholz for pointing that

  10 Oct 2007; Alexis Ballier <aballier@gentoo.org>
  vlc-0.9.0_alpha20071009.ebuild:
  make libgcrypt mandatory, build would fail if not present, bug #195322

  10 Oct 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6c.ebuild:
  add gnome useflag, was automagic, bug #193443

*vlc-0.9.0_alpha20071009 (09 Oct 2007)

  09 Oct 2007; Alexis Ballier <aballier@gentoo.org>
  +vlc-0.9.0_alpha20071009.ebuild:
  bump snapshot, blocking older versions cause of bug #157746, closing bug
  #195019 and bug #183584

  14 Sep 2007; Roy Marples <uberlord@gentoo.org> vlc-0.8.6c.ebuild:
  elibtoolize now patches install-sh for us.

  15 Aug 2007; Samuli Suominen <drac@gentoo.org> vlc-0.8.6c.ebuild:
  Flip libdts and libdca deps around, so libdca gets installed over libdts
  primarily.

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

  02 Jul 2007; Alexis Ballier <aballier@gentoo.org> -vlc-0.8.6-r1.ebuild,
  -vlc-0.8.6b.ebuild:
  remove versions affected by bug #182389

  02 Jul 2007; Piotr Jaroszyński <peper@gentoo.org> vlc-0.8.6-r1.ebuild:
  (QA) RESTRICT clean up.

  24 Jun 2007; Tobias Scherbaum <dertobi123@gentoo.org> vlc-0.8.6c.ebuild:
  ppc stable, bug #182389

  24 Jun 2007; Raúl Porcel <armin76@gentoo.org> vlc-0.8.6c.ebuild:
  alpha/x86 stable wrt #182389

  22 Jun 2007; Gustavo Zacarias <gustavoz@gentoo.org> vlc-0.8.6c.ebuild:
  Stable on sparc wrt security #182389

  22 Jun 2007; Christoph Mende <angelos@gentoo.org> vlc-0.8.6c.ebuild:
  Stable on amd64 wrt security bug 181349

*vlc-0.8.6c (17 Jun 2007)

  17 Jun 2007; Alexis Ballier <aballier@gentoo.org> +vlc-0.8.6c.ebuild:
  version bump

  07 Jun 2007; Christoph Mende <angelos@gentoo.org> vlc-0.8.6b.ebuild:
  Stable on amd64 wrt bug 179862

  03 Jun 2007; Lars Weiler <pylon@gentoo.org> vlc-0.8.6b.ebuild:
  Stable on ppc; bug #179862.

  01 Jun 2007; Bjarke Istrup Pedersen <gurligebis@gentoo.org> vlc-0.8.6b.ebuild,
  vlc-0.8.6-r1.ebuild:
  net-misc/upnp has been package.mask'ed, removed dependency

  30 May 2007; Gustavo Zacarias <gustavoz@gentoo.org> vlc-0.8.6b.ebuild:
  Stable on sparc wrt #179862

  29 May 2007; Christian Faulhammer <opfer@gentoo.org> vlc-0.8.6b.ebuild:
  stable x86, bug 179862

  07 May 2007; Bjarke Istrup Pedersen <gurligebis@gentoo.org> vlc-0.8.6b.ebuild,
  vlc-0.8.6-r1.ebuild:
  net-misc/libupnp moved to net-libs/libupnp, updated dependencies

  24 Apr 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6b.ebuild:
  Add support for IIDC cameras with dc1394 useflag, thanks to Christopher
  Hogan, bug #167633

  24 Apr 2007; Alexis Ballier <aballier@gentoo.org>
  -vlc-0.8.6b_beta1.ebuild:
  Remove unused ebuild

  19 Apr 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6-r1.ebuild,
  vlc-0.8.6b_beta1.ebuild, vlc-0.8.6b.ebuild:
  switch upnp and libupnp in the || to prefer libupnp

  18 Apr 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6b_beta1.ebuild,
  vlc-0.8.6b.ebuild:
  remove confcache restricting as it's dead and buried

*vlc-0.8.6b (18 Apr 2007)

  18 Apr 2007; Alexis Ballier <aballier@gentoo.org> +vlc-0.8.6b.ebuild:
  Bump to 0.8.6b release

  18 Apr 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6-r1.ebuild,
  vlc-0.8.6b_beta1.ebuild:
  Set deps for upnp to net-misc/libupnp or net-misc/upnp, bug #169736

  18 Apr 2007; Alexis Ballier <aballier@gentoo.org>
  -vlc-0.8.6_p18636.ebuild:
  Remove unused version

  18 Apr 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6b_beta1.ebuild:
  Patch to be compatible with libdca

*vlc-0.8.6b_beta1 (13 Apr 2007)

  13 Apr 2007; Alexis Ballier <aballier@gentoo.org>
  +vlc-0.8.6b_beta1.ebuild:
  Bump to test release of 0.8.6b (bugfix), dropping some patches

  25 Mar 2007; Alexis Ballier <aballier@gentoo.org> ChangeLog, Manifest:
  Fix typos in Changelog, thanks to Mihai Moldovan <ionic@root24.de>, bug #172057

  11 Mar 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6_p18636.ebuild:
  upstream fix for fullscreen mode on amd64

  09 Mar 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6-r1.ebuild,
  vlc-0.8.6_p18636.ebuild:
  Handling skins useflags dependencies rather than dying and asking for other
  useflags to be enabled, bug #158095

  05 Mar 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6-r1.ebuild,
  vlc-0.8.6_p18636.ebuild:
  Fix compilation issue without altivec, bug #158126

  23 Feb 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6-r1.ebuild,
  vlc-0.8.6_p18636.ebuild:
  Dont erase myconf when doing live workaround

  23 Feb 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6_p18636.ebuild:
  Add x264 useflag

  14 Feb 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6-r1.ebuild,
  vlc-0.8.6_p18636.ebuild:
  Really disable altivec if not wanted, bug #158126

  12 Feb 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6-r1.ebuild:
  Disable also autodetected cflags optimisations in stable vlc

  11 Feb 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6-r1.ebuild,
  vlc-0.8.6_p18636.ebuild:
  Fix live detection, bug #160320

  11 Feb 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6-r1.ebuild,
  vlc-0.8.6_p18636.ebuild:
  Fix libnotify use_enable

  11 Feb 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6_p18636.ebuild:
  Disable extra autodetected optimizations

  11 Feb 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6-r1.ebuild,
  vlc-0.8.6_p18636.ebuild:
  Add a musepack useflag, was automagic, bug #160999

  10 Feb 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6-r1.ebuild,
  vlc-0.8.6_p18636.ebuild:
  Die if skins are wanted but not wxwindows, dont install vlc.desktop if not
  using wxwindows, bug #158095, remove inexistant docs from dodoc

  10 Feb 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6-r1.ebuild,
  vlc-0.8.6_p18636.ebuild:
  Remove duplicate docs when use=-nsplugin, bug #158536, thanks to Chris Mayo
  <mayo@clara.co.uk>

  10 Feb 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6_p18636.ebuild:
  Jack useflag, bug #157899

  10 Feb 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6-r1.ebuild:
  Fix also sdl-image automagic in stable vlc

  10 Feb 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6_p18636.ebuild:
  Remove sdl-image automagic, added as a useflag, bug #165177

  10 Feb 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6-r1.ebuild,
  vlc-0.8.6_p18636.ebuild:
  Remove libtar automagic, bug #154194

  08 Feb 2007; Alexis Ballier <aballier@gentoo.org> vlc-0.8.6-r1.ebuild,
  vlc-0.8.6_p18636.ebuild:
  update gnutls dep to >= 1.2.9, bug #165986

  08 Feb 2007; Christian Faulhammer <opfer@gentoo.org> vlc-0.8.6-r1.ebuild:
  replace flag O0 with O1, inherited flag-o-matic and ordered other eclasses
  alphabetically

  27 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> -vlc-0.8.4a-r1.ebuild:
  Remove old versions.

  27 Jan 2007; Joseph Jezak <josejx@gentoo.org> vlc-0.8.6-r1.ebuild:
  Marked ppc stable for bug #161462.

*vlc-0.8.6_p18636 (26 Jan 2007)

  26 Jan 2007; Diego Pettenò <flameeyes@gentoo.org>
  +vlc-0.8.6_p18636.ebuild:
  Add a snapshot from the bugfix branch of VLC to fix bug #161828 and other.

  15 Jan 2007; Gustavo Zacarias <gustavoz@gentoo.org> vlc-0.8.6-r1.ebuild:
  Stable on sparc wrt security #159845

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

  10 Jan 2007; <malc@gentoo.org> vlc-0.8.6-r1.ebuild:
  Stable on amd64 wrt sec. bug #159845

  06 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> -vlc-0.8.5-r3.ebuild,
  -vlc-0.8.5-r5.ebuild, -vlc-0.8.6.ebuild:
  Remove old versions.

  06 Jan 2007; Bryan Østergaard <kloeri@gentoo.org> vlc-0.8.6-r1.ebuild:
  Stable on Alpha.

  04 Jan 2007; Christian Faulhammer <opfer@gentoo.org> vlc-0.8.6-r1.ebuild:
  stable x86, security bug #159845

  04 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.6-r1.ebuild:
  Make sure the correct wx-config is used, hopefully closes bug #159674.

*vlc-0.8.6-r1 (03 Jan 2007)

  03 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> +vlc-0.8.6-r1.ebuild:
  Add patch to fix security bug #159845.

  30 Dec 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.6.ebuild:
  Update patchlevel to add a patch to build live555 as plugin when using
  system libraries, use the correct path for the live555 tree when building
  against old style ebuild, and allow using new-style live555 ebuilds.

  21 Dec 2006; Markus Rothe <corsair@gentoo.org> vlc-0.8.6.ebuild:
  Added ~ppc64; bug #139252

  16 Dec 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.6.ebuild:
  Bump libmatroska requirement to 0.8.0 as per stkn report.

*vlc-0.8.6 (10 Dec 2006)

  10 Dec 2006; Diego Pettenò <flameeyes@gentoo.org>
  -vlc-0.8.6_beta2.ebuild, -vlc-0.8.6_rc1.ebuild, +vlc-0.8.6.ebuild:
  Bump to version 0.8.6 final.

  09 Dec 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.6_rc1.ebuild:
  Bump patchset with patch for flac 1.1.3 and add dependency over libogg when
  enabling flac.

  01 Dec 2006; Vlastimil Babka <caster@gentoo.org> vlc-0.8.6_rc1.ebuild:
  Hopefully fixed the nsplugin building (bug #156067) this time.

*vlc-0.8.6_rc1 (01 Dec 2006)

  01 Dec 2006; Diego Pettenò <flameeyes@gentoo.org> +vlc-0.8.6_rc1.ebuild:
  Version bump to release candidate, fix the mozilla plugin thanks to the
  information by Tavin Cole in bug #156067.

  21 Nov 2006; Diego Pettenò <flameeyes@gentoo.org> metadata.xml:
  Give this back to video herd.

  17 Nov 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.6_beta2.ebuild:
  Update install-sh script with the libtool copy, and keyword ~x86-fbsd.

  17 Nov 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.6_beta2.ebuild:
  Run emake install in src first so that we don't need to block old versions
  of VLC.

*vlc-0.8.6_beta2 (17 Nov 2006)

  17 Nov 2006; Diego Pettenò <flameeyes@gentoo.org>
  +vlc-0.8.6_beta2.ebuild:
  Add the test2a version of VLC, masked. Unfortunately here are troubles with
  libtool and shared libvlc, and thus you need to remove old version before
  merging this one.

  11 Nov 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.5-r5.ebuild:
  Ignore patch 230_all_libcdio-0.78.2.patch when using older versions of
  libcdio. Closes bug #154193.

  04 Nov 2006; Patrick McLean <chutzpah@gentoo.org> vlc-0.8.5-r5.ebuild:
  Add patch to allow compilation with media-video/vlc-0.8.5-r5 (bug #153931).

  19 Oct 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4a-r1.ebuild,
  vlc-0.8.5-r3.ebuild, vlc-0.8.5-r5.ebuild:
  Depend on 1.1.2 version of flac, as the 1.1.3 version changes API.

  01 Oct 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4a-r1.ebuild,
  vlc-0.8.5-r3.ebuild, vlc-0.8.5-r5.ebuild:
  Remove build-time dependency on xproto and/or xextproto.

  22 Sep 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4a-r1.ebuild,
  vlc-0.8.5-r3.ebuild, vlc-0.8.5-r5.ebuild:
  Force latest version of autotools, and be done with that.

  21 Sep 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4a-r1.ebuild,
  vlc-0.8.5-r3.ebuild, vlc-0.8.5-r5.ebuild:
  Add dependency on automake 1.8 as per bug #148420. Thanks to Åsmund
  Grammeltvedt for reporting.

  09 Sep 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.5-r5.ebuild:
  Bump patchset trying to fix bug #139843.

  31 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4a-r1.ebuild,
  vlc-0.8.5-r3.ebuild, vlc-0.8.5-r5.ebuild:
  Remove nls and screen useflags that weren't being used. Thanks to Sascha
  Geschwandtner for noticing in bug #141956.

  09 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4a-r1.ebuild,
  vlc-0.8.5-r3.ebuild, vlc-0.8.5-r5.ebuild:
  Pinpoint virtual/x11 version to less than 7.

*vlc-0.8.5-r5 (08 Jul 2006)

  08 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> -vlc-0.8.5-r4.ebuild,
  +vlc-0.8.5-r5.ebuild:
  Fix (hopefully) the nsplugin location, thanks to Alex, Caster and Sascha
  Geschwandtner in bug #139317.

*vlc-0.8.5-r4 (04 Jul 2006)

  04 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> +vlc-0.8.5-r4.ebuild:
  Re-add nsplugin support with dependency on firefox or seamonkey (use
  seamonkey useflag). Enable optimise for memory with optimisememory useflag.

  04 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.5-r3.ebuild:
  Bump patchset to fix the parallel install problem reported in bug #139176.

  01 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> -vlc-0.8.2-r2.ebuild:
  Remove obsolete version.

  01 Jul 2006; Seemant Kulleen <seemant@gentoo.org> vlc-0.8.4a-r1.ebuild:
  stable for bug #121558

  01 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> -vlc-0.8.1-r1.ebuild:
  Remove obsolete version.

  30 Jun 2006; Thomas Cort <tcort@gentoo.org> vlc-0.8.4a-r1.ebuild:
  Stable on alpha wrt Bug #121558.

  29 Jun 2006; Diego Pettenò <flameeyes@gentoo.org> -vlc-0.8.4a.ebuild:
  Drop old version.

  29 Jun 2006; Chris Gianelloni <wolf31o2@gentoo.org> vlc-0.8.4a-r1.ebuild:
  Stable on x86 wrt bug #136890.

  26 Jun 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  vlc-0.8.4a-r1.ebuild, vlc-0.8.5-r3.ebuild:
  adding gnome2 to inherit (resolves bug #117158)

  23 Jun 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.2-r2.ebuild,
  vlc-0.8.4a.ebuild, vlc-0.8.4a-r1.ebuild, -vlc-0.8.5-r2.ebuild,
  vlc-0.8.5-r3.ebuild:
  Remove nsplugin support as per bug #137665.

  18 Jun 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.1-r1.ebuild,
  vlc-0.8.2-r2.ebuild, vlc-0.8.4a.ebuild, vlc-0.8.4a-r1.ebuild,
  vlc-0.8.5-r2.ebuild, vlc-0.8.5-r3.ebuild:
  Restrict confcache as per bugs #1371445 and #137023.

*vlc-0.8.5-r3 (18 Jun 2006)

  18 Jun 2006; Diego Pettenò <flameeyes@gentoo.org> +vlc-0.8.5-r3.ebuild:
  Add new version with patchset to fix strict aliasing and make wx build
  without permissive.

*vlc-0.8.5-r2 (16 Jun 2006)

  16 Jun 2006; Diego Pettenò <flameeyes@gentoo.org> -vlc-0.8.5-r1.ebuild,
  +vlc-0.8.5-r2.ebuild:
  Remove aac useflag and use ffmpeg decoding instead. Fixes AAC playing.

  16 Jun 2006; Gustavo Zacarias <gustavoz@gentoo.org> vlc-0.8.4a-r1.ebuild:
  Stable on sparc

  05 Jun 2006; Diego Pettenò <flameeyes@gentoo.org> -vlc-0.8.5.ebuild,
  vlc-0.8.5-r1.ebuild:
  Depend on version 1.2 of upnp or it won't work correctly. THanks to Colin
  Carle for reporting and Samuli Suominen for finding the solution. Closes bug
  #135681.

*vlc-0.8.5-r1 (02 Jun 2006)

  02 Jun 2006; Diego Pettenò <flameeyes@gentoo.org> +vlc-0.8.5-r1.ebuild:
  Add new revision with a fix for stream containing ' character.

  28 May 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.5.ebuild:
  Bump patchlevel to add a patch to support ffmpeg with (experimental) hidden
  visibility.

  09 May 2006; Diego Pettenò <flameeyes@gentoo.org> ChangeLog:
  Sign manifest after key expiration.

  09 May 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.5.ebuild:
  Bump patchset to fix bug #132809.

  09 May 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.5.ebuild:
  Bump patchlevel to fix bugs #132776 and #132780.

  08 May 2006; Markus Rothe <corsair@gentoo.org> vlc-0.8.5.ebuild:
  Added ~ppc64

  07 May 2006; <tcort@gentoo.org> vlc-0.8.5.ebuild:
  Added ~alpha keyword.

*vlc-0.8.5 (06 May 2006)

  06 May 2006; Diego Pettenò <flameeyes@gentoo.org>
  -vlc-0.8.5_beta4.ebuild, +vlc-0.8.5.ebuild:
  Update to 0.8.5, dropped ~alpha keyword.

  04 May 2006; Mark Loeser <halcy0n@gentoo.org> vlc-0.8.4a.ebuild:
  Stable on x86; bug #121558

  02 May 2006; Diego Pettenò <flameeyes@gentoo.org> -vlc-0.8.4.ebuild:
  Drop old version.

*vlc-0.8.5_beta4 (02 May 2006)

  02 May 2006; Diego Pettenò <flameeyes@gentoo.org>
  -vlc-0.8.5_beta2.ebuild, -vlc-0.8.5_beta3.ebuild, +vlc-0.8.5_beta4.ebuild:
  Update to last test version.

  20 Apr 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.5_beta3.ebuild:
  Bump patchset to fix directfb support, and make ebuild handle that, too.

*vlc-0.8.5_beta3 (20 Apr 2006)

  20 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  +vlc-0.8.5_beta3.ebuild:
  Bump to latest test version from upstream.

  15 Apr 2006; Thomas Cort <tcort@gentoo.org> vlc-0.8.5_beta2.ebuild:
  Added ~alpha keyword.

  12 Apr 2006; Thomas Cort <tcort@gentoo.org> vlc-0.8.4a-r1.ebuild:
  Added ~alpha keyword wrt Bug #121558.

  11 Apr 2006; Gustavo Zacarias <gustavoz@gentoo.org> vlc-0.8.4a.ebuild:
  Stable on sparc wrt #121558

  11 Apr 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4.ebuild,
  vlc-0.8.4a.ebuild, vlc-0.8.4a-r1.ebuild, vlc-0.8.5_beta2.ebuild:
  Rename real useflag to rtsp as real usually involves realplayer/helixplayer
  and thus is masked on non-x86 profiles.

*vlc-0.8.5_beta2 (02 Apr 2006)

  02 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  +vlc-0.8.5_beta2.ebuild:
  New beta version from upstream, please try it out if you can. New in this
  release the directfb support and Intel UPnP stack support.

  21 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4a-r1.ebuild:
  Bump patchset to fix bug #125071.

  15 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.2-r2.ebuild,
  vlc-0.8.4.ebuild, vlc-0.8.4a.ebuild, vlc-0.8.4a-r1.ebuild:
  Replace xml2 useflag with xml useflag.

  14 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4a-r1.ebuild:
  Bump patchset to allow building with GCC 4.1, see bug #126202.

  02 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4a-r1.ebuild:
  Cleanup modular x deps.

*vlc-0.8.4a-r1 (01 Mar 2006)

  01 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> +vlc-0.8.4a-r1.ebuild:
  New patchset with a patch to build against libcddb 1.2 finally. This allows
  to remove cddb and libcdio from unmask.

  28 Feb 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4a.ebuild:
  Enable streamout support when vlm is enabled also if stream is not. Thanks
  to Robert Lippmann <rlippmann@hotmail.com> for pointing this out in bug
  #124356.

  12 Feb 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4a.ebuild:
  Make cddb an useflag so that people can decide whether to use it or not,
  allowing to stop the up/down cycle with libcdio 0.76 that requires newer
  cddb.

  04 Feb 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4a.ebuild:
  Change dep on wxGTK 2.6.2-r1 as per bug #118631. Drop autotools dependencies.

  12 Jan 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4a.ebuild:
  Add xinerama useflag and make it optional, after bumping patchset to version
  13.

  04 Jan 2006; Simon Stelling <blubb@gentoo.org> vlc-0.8.2-r2.ebuild:
  stable on amd64 wrt bug 116181

  04 Jan 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4a.ebuild:
  Bump patchset to include the patch to fix textrels provided by PaX team.

  04 Jan 2006; Diego Pettenò <flameeyes@gentoo.org> -vlc-0.8.2-r1.ebuild,
  -vlc-0.8.4-r1.ebuild:
  Drop old versions.

  03 Jan 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4a.ebuild:
  Filter out --as-needed when using wxwindows, it makes ld segfault.

  03 Jan 2006; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4-r1.ebuild,
  vlc-0.8.4a.ebuild:
  Make domenu conditional to use wxwindows as the desktop file is specifically
  for wxvlc command.

  02 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org> vlc-0.8.4.ebuild:
  Stable on sparc wrt #116181

  02 Jan 2006; Mark Loeser <halcy0n@gentoo.org> vlc-0.8.2-r2.ebuild:
  Stable on x86; bug #116181

  30 Dec 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.1-r1.ebuild:
  Fix the last version still using freetype useflag instead of truetype.

  27 Dec 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.2-r1.ebuild,
  vlc-0.8.2-r2.ebuild, vlc-0.8.4.ebuild, vlc-0.8.4-r1.ebuild,
  vlc-0.8.4a.ebuild:
  Change freetype useflag to truetype.

  17 Dec 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.1-r1.ebuild,
  vlc-0.8.2-r1.ebuild, vlc-0.8.2-r2.ebuild, vlc-0.8.4.ebuild,
  vlc-0.8.4-r1.ebuild, vlc-0.8.4a.ebuild:
  Fix the dependency, for alsa is over alsa-lib, not virtual/alsa that points
  to the drivers. Close bug #115857.

*vlc-0.8.4a (13 Dec 2005)

  13 Dec 2005; Diego Pettenò <flameeyes@gentoo.org> +vlc-0.8.4a.ebuild:
  Updated VLC to 0.8.4a as released by upstream. Avahi and HAL patches are now
  part of vanilla sources.

  10 Dec 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4-r1.ebuild:
  Made modular-friendly.

  08 Dec 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4.ebuild,
  vlc-0.8.4-r1.ebuild:
  As per bug #113449, disable ability to build vlc with wxGTK built without
  unicode, as 2.6 version has non-experimental support, and vlc 0.8.4 seems to
  require it strictly.

  02 Dec 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4-r1.ebuild:
  Added patch from Giandomenico De Tullio for enabing avahi support on 0.6
  version and later, now bonjour support can be enabled on avahi greater than
  0.3. Install the (patched) desktop file from debian directory instead of
  creating a new one.

  01 Dec 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.1-r1.ebuild:
  Changing dep for ffmpeg to any revision of 20050226 snapshot to avoid dummy
  people to use newer ffmpeg and filing tons of bugs without looking.

  30 Nov 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.1-r1.ebuild:
  Completely remove nsplugin logic in vlc 0.8.1, too bugged.

  29 Nov 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4-r1.ebuild:
  Die if skins are requested but freetype is not enabled. Don't remove the
  default skin when using skins. Thanks to Gergan Penkov in bug #113860.

  28 Nov 2005; Diego Pettenò <flameeyes@gentoo.org> metadata.xml:
  Take over maintainership directly.

  28 Nov 2005; Chris White <chriswhite@gentoo.org> vlc-0.8.1-r1.ebuild:
  Re-fixed bug #77153.

*vlc-0.8.4-r1 (27 Nov 2005)

  27 Nov 2005; Diego Pettenò <flameeyes@gentoo.org> +vlc-0.8.4-r1.ebuild:
  Added new testing version (not yet stable candidate). This version uses
  ffmpeg as a plugin instead of builtin, reducing the linking on vlc binary.
  Also backports HAL changes from upstream to allow using HAL 0.5 with it.

*vlc-0.8.4 (27 Nov 2005)

  27 Nov 2005; Diego Pettenò <flameeyes@gentoo.org>
  -vlc-0.8.4_beta3.ebuild, +vlc-0.8.4.ebuild:
  New version, 0.8.4 final: closed bug #113590; applied formats patch by
  solar; transformed sed lines in patches; fixed tests for avahi and hal to
  avoid misunderstanding if someone tries to enable them; build DTS support as
  plugin instead of builtin; removed comments inside the code as the
  maintainer's guide carry all the needed informations; old for deprecated
  interfaces are removed from upstream's package.

  27 Nov 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4_beta3.ebuild:
  Remove bonjour support or vlc would fail if avahi 0.6 is installed. See bug
  #113665.

  24 Nov 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.1-r1.ebuild,
  vlc-0.8.2-r1.ebuild, vlc-0.8.2-r2.ebuild, vlc-0.8.4_beta3.ebuild:
  Remove comments about missing useflags as they are now reported on the
  maintainer's guide.

*vlc-0.8.4_beta3 (23 Nov 2005)

  23 Nov 2005; Diego Pettenò <flameeyes@gentoo.org>
  -vlc-0.8.4_beta1.ebuild, -vlc-0.8.4_beta2.ebuild, +vlc-0.8.4_beta3.ebuild:
  Update to latest test version before final release.

  22 Nov 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.1-r1.ebuild,
  vlc-0.8.2-r1.ebuild, vlc-0.8.2-r2.ebuild, vlc-0.8.4_beta1.ebuild,
  vlc-0.8.4_beta2.ebuild:
  Use mirror://gentoo/ for patchsets.

  16 Nov 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.1-r1.ebuild,
  vlc-0.8.2-r1.ebuild, vlc-0.8.2-r2.ebuild, vlc-0.8.4_beta1.ebuild,
  vlc-0.8.4_beta2.ebuild:
  Forcefully disable x264 support, so that installed x264 library does not get
  detected and the build does not fail. See bug #112670.

*vlc-0.8.4_beta2 (05 Nov 2005)

  05 Nov 2005; Diego Pettenò <flameeyes@gentoo.org>
  +vlc-0.8.4_beta2.ebuild:
  Added last beta version. Requires testing.

  30 Oct 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.1-r1.ebuild,
  vlc-0.8.2-r1.ebuild:
  Don't allow to enable hal, as it anyways does not work fine and has bad
  behavior when hal 0.5 is being used.

  30 Oct 2005; Mark Loeser <halcy0n@gentoo.org> vlc-0.8.2-r1.ebuild,
  vlc-0.8.2-r2.ebuild, vlc-0.8.4_beta1.ebuild:
  Add back logic to strip -fomit-frame-pointer only when using gcc-2; fixes bug
  #99813

  14 Oct 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.4_beta1.ebuild:
  Remove comments that are no more needed here as they are on the project page
  documentation.

  12 Oct 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.2-r2.ebuild:
  Remove gtk1 support from latest 0.8.2 version as wxGTK 2.6 nos just supports
  GTK2.

*vlc-0.8.2-r2 (03 Oct 2005)

  03 Oct 2005; Diego Pettenò <flameeyes@gentoo.org> +vlc-0.8.2-r2.ebuild:
  Added new revision for vlc 0.8.2 with hal disabled, as it seems not to be so
  reliable.

*vlc-0.8.4_beta1 (03 Oct 2005)

  03 Oct 2005; Diego Pettenò <flameeyes@gentoo.org>
  +vlc-0.8.4_beta1.ebuild:
  Added 0.8.4-test1 version. Most of the patches are applied upstream for now.

  15 Sep 2005; Aron Griffis <agriffis@gentoo.org> vlc-0.8.1-r1.ebuild:
  Mark 0.8.1-r1 stable on alpha

  10 Sep 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.1-r1.ebuild,
  vlc-0.8.2-r1.ebuild:
  Don't install ABOUT-NLS file.

  02 Sep 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.2-r1.ebuild:
  Added patch to compile with samba 3.0.20 (and also previous versions).

  30 Aug 2005; Diego Pettenò <flameeyes@gentoo.org> -vlc-0.8.1-r2.ebuild,
  -vlc-0.8.1-r3.ebuild, -vlc-0.8.2.ebuild:
  Removed old versions.

  13 Jul 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.1-r1.ebuild:
  Disabled threads from stable version as it's for 0.8.1-r2 and following.
  Threads support isn't safe with some external libraries.

  13 Jul 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.2-r1.ebuild:
  Add patch to build vlc fine when +debug is enabled in wxGTK. Closes #97169.

  12 Jul 2005; Diego Pettenò <flameeyes@gentoo.org>
  -files/mpeg2dec-20030612-configure.in-fpic.patch,
  -files/0.6.2-mozilla-fix.patch, -files/glide.patch, -vlc-0.6.2.ebuild,
  -vlc-0.6.2-r1.ebuild, -vlc-0.7.2.ebuild, vlc-0.8.1-r1.ebuild,
  vlc-0.8.1-r2.ebuild, vlc-0.8.1-r3.ebuild, vlc-0.8.2.ebuild:
  Rename mozilla useflag into nsplugin. Removed old (bugged) versions.

*vlc-0.8.2-r1 (11 Jul 2005)

  11 Jul 2005; Diego Pettenò <flameeyes@gentoo.org> +vlc-0.8.2-r1.ebuild:
  Added nsplugin flag to build the mozilla-compatible plugin (depends on
  gecko-sdk).

  10 Jul 2005; Jason Wever <weeve@gentoo.org> vlc-0.8.2.ebuild:
  Added ~sparc keyword wrt bug #95625.

  27 Jun 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.2.ebuild:
  Disabled also slp support as upstream still uses an older API which breaks
  with current version. See bug #97169.

  27 Jun 2005; Diego Pettenò <flameeyes@gentoo.org>
  -vlc-0.8.2_beta2.ebuild, vlc-0.8.2.ebuild:
  Removed vlc-0.8.2_beta2. Disabled mozilla support waiting for new gecko-sdk,
  see bug #97164.

*vlc-0.8.2 (26 Jun 2005)

  26 Jun 2005; Diego Pettenò <flameeyes@gentoo.org> +vlc-0.8.2.ebuild:
  New upstream version, missing ~sparc keyword until daap dependency is fixed.
  Uses the same patches as 0.8.2_beta2 minus the sap one.

  10 Jun 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.1-r3.ebuild,
  vlc-0.8.2_beta2.ebuild:
  Fixed mp3/mad params for 0.8.1 and 0.8.2_beta2. Added patch to compile clean
  with latest GCC 4.0.1 for 0.8.2_beta2.

  08 Jun 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.2_beta2.ebuild:
  Fixed checks for ffmpeg features.

*vlc-0.8.2_beta2 (08 Jun 2005)

  08 Jun 2005; Diego Pettenò <flameeyes@gentoo.org>
  +vlc-0.8.2_beta2.ebuild:
  New version (test version from upstream's snapshots. Cleaned up useflags,
  added new dependencies, fixed dependencies which changed with latest
  version, removed a few useflag. Now vcd and cdda enables also the extended
  versions (requiring libcdio).

  26 May 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.1-r3.ebuild:
  Renamed mad flag into mp3 for latest version.

  22 May 2005; Jason Wever <weeve@gentoo.org> vlc-0.8.1-r1.ebuild:
  Stable on SPARC.

  18 May 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.1-r3.ebuild:
  Added new patches to make vlc work with wxGTK 2.6. Need more testing before
  unmasking.

  17 May 2005; Fernando J. Pereda <ferdy@gentoo.org> vlc-0.8.1-r1.ebuild:
  keyworded ~alpha, wrt #90506

*vlc-0.8.1-r3 (14 May 2005)

  14 May 2005; Diego Pettenò <flameeyes@gentoo.org>
  -files/vlc-0.8.1-bool.patch, -files/vlc-0.8.1-matroska-shared.patch,
  -files/vlc-0.8.1-time.patch, vlc-0.6.2.ebuild, vlc-0.6.2-r1.ebuild,
  vlc-0.7.2.ebuild, vlc-0.8.1-r1.ebuild, vlc-0.8.1-r2.ebuild,
  +vlc-0.8.1-r3.ebuild:
  New revision which now uses wxGTK 2.6 instead of 2.4. Added patch to disable
  hal support in configure (just for -r3 for now). Moved patches into patchset
  tarball and removed from files. Converted from gcc to toolchain-funcs
  eclass.

  09 May 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.1-r1.ebuild,
  vlc-0.8.1-r2.ebuild:
  Fixed hal dependency to 0.4, fixes bug #91913. Removed !amd64 check on 3dfx
  (use.masked).

  07 May 2005; Diego Pettenò <flameeyes@gentoo.org>
  +files/vlc-0.8.1-bool.patch, vlc-0.8.1-r1.ebuild, vlc-0.8.1-r2.ebuild:
  Added patch to compile ncurses support on -r2. Fixes #91603. Removed ncurses
  useflag and disabled it on -r1 as it's stable and better not add patches to
  it.

  02 May 2005; Diego Pettenò <flameeyes@gentoo.org> -files/vlc.desktop,
  -vlc-0.8.1.ebuild, vlc-0.8.1-r1.ebuild:
  Marked 0.8.1-r1 stable on amd64 and x86, and removed the old 0.8.1 with its
  files.

  25 Apr 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.1-r2.ebuild:
  Added build-time dependencies on autotools, pkgconfig, gettext and cvs
  (needed by gettext's autopoint). Fixes #90321.

*vlc-0.8.1-r2 (24 Apr 2005)

  24 Apr 2005; Diego Pettenò <flameeyes@gentoo.org>
  +files/vlc-0.8.1-matroska-shared.patch, vlc-0.8.1-r1.ebuild,
  +vlc-0.8.1-r2.ebuild:
  Removed portaudio useflag, vlc needs portaudio v19 (development branch) 
  which is not in portage.
  Added 0.8.1-r2 version which depends in a recent libmatroska (0.7.3-r1 
  at least) which builds .so version of the library, so to build a dynamic 
  plugin instead of a static module (with the newly added patch to 
  configure).
  Disabled threads useflag from 0.8.1-r2 as it seems not mess up vlc with
  at least latest ffmpeg and libmatroska.

  20 Apr 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.6.2.ebuild,
  vlc-0.6.2-r1.ebuild, vlc-0.7.2.ebuild, vlc-0.8.1.ebuild,
  vlc-0.8.1-r1.ebuild:
  Removed deprecated oggvorbis useflag. Made vlc-0.8.1-r1 install all the docs
  by dodoc instead of installing it on /usr/share/doc/vlc.

  18 Apr 2005; Diego Pettenò <flameeyes@gentoo.org> metadata.xml,
  -vlc-0.6.0-r1.ebuild, -vlc-0.6.1.ebuild, vlc-0.6.2.ebuild,
  -vlc-0.7.1.ebuild, -vlc-0.7.1-r1.ebuild, -vlc-0.7.2-r1.ebuild,
  -vlc-0.8.0.ebuild:
  Pruned old ebuilds, as many bugs are fixed in recent ~arch ebuilds, and 
  0.8.1-r1 is the wannabe-stable. Fixed dependency on libmpeg2-0.3* 
  for vlc-0.6.2 (fixes #60696). Updated metadata, ChrisWhite is retired :/

  18 Apr 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.6.0-r1.ebuild,
  vlc-0.6.1.ebuild, vlc-0.6.2.ebuild, vlc-0.6.2-r1.ebuild:
  VLC 0.6.x needs xvid .9.x, can't build with 1.0.

  17 Apr 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.1-r1.ebuild:
  Add check for wxwindows before request it (fixex #89436).

  13 Apr 2005; Jan Brinkmann <luckyduck@gentoo.org>
  +files/vlc-0.8.1-time.patch, vlc-0.8.1-r1.ebuild:
  added patch to include missing time.h, fixes #88378. patch grabbed from
  upstream cvs.

  04 Apr 2005; Jan Brinkmann <luckyduck@gentoo.org> vlc-0.8.1-r1.ebuild:
  introduced support for several useflags, implemented enhancement suggestions
  which were made by Diego Pettenò <dgp85@users.sourceforge.net>. Fixes #87289

*vlc-0.8.1-r1 (28 Mar 2005)

  28 Mar 2005; Chris White <chriswhite@gentoo.org> +vlc-0.8.1-r1.ebuild:
  Revbump to -r1. Fixes detailed in bug #86419. Thanks to Diego Pettenò for
  the ebuild cleanup.

  23 Mar 2005; Seemant Kulleen <seemant@gentoo.org> vlc-0.6.0-r1.ebuild,
  vlc-0.6.1.ebuild, vlc-0.6.2.ebuild, vlc-0.6.2-r1.ebuild, vlc-0.7.1.ebuild,
  vlc-0.7.1-r1.ebuild, vlc-0.7.2.ebuild, vlc-0.7.2-r1.ebuild,
  vlc-0.8.0.ebuild, vlc-0.8.1.ebuild:
  change dep from net-www/mozilla to www-client/mozilla

  10 Mar 2005; Chris White <chriswhite@gentoo.org> vlc-0.8.1.ebuild:
  Fixed bug #77611.

  03 Mar 2005; Chris White <chriswhite@gentoo.org> vlc-0.8.1.ebuild:
  Fixed bug #83880.

  27 Feb 2005; Jeremy Huddleston <eradicator@gentoo.org> vlc-0.8.1.ebuild:
  Back to using oggvorbis in IUSE.

  29 Jan 2005; Jan Brinkmann <luckyduck@gentoo.org> vlc-0.8.1.ebuild:
  removed unnecessary line from DEPEND, see #78830

  09 Jan 2005; Jan Brinkmann <luckyduck@gentoo.org> vlc-0.8.1.ebuild:
  added missing faad? dependency. fixes #77200.

  09 Jan 2005; Chris White <chriswhite@gentoo.org> vlc-0.8.1.ebuild:
  Fixed mozilla plugin not working because it was looking in the wrong place
  for a file :).

  08 Jan 2005; Chris White <chriswhite@gentoo.org> vlc-0.8.1.ebuild:
  Fixed #77119.  Also fixed 2 syntax errors located in #60696.

  08 Jan 2005; Chris White <chriswhite@gentoo.org> vlc-0.8.1.ebuild:
  Fixing MOZILLA_CONFIG errors that I'll surely be getting in about 30 minutes.

  08 Jan 2005; Chris White <chriswhite@gentoo.org> +files/vlc.desktop,
  vlc-0.8.1.ebuild:
  Fixing bug #39213.  Thanks to Keith Lea for providing the vlc.desktop file.

*vlc-0.8.1 (08 Jan 2005)

  08 Jan 2005; Chris White <chriswhite@gentoo.org> +vlc-0.8.1.ebuild:
  Bump to version 0.8.1. This is a nice cleanup of the ebuild for deps and
  all. Should run alot better than previous versions. Fixes bug #72338.

  14 Dec 2004; Jeremy Huddleston <eradicator@gentoo.org> vlc-0.6.1.ebuild,
  vlc-0.6.2-r1.ebuild, vlc-0.6.2.ebuild, vlc-0.7.1-r1.ebuild,
  vlc-0.7.1.ebuild, vlc-0.7.2-r1.ebuild, vlc-0.7.2.ebuild, vlc-0.8.0.ebuild:
  Changed USE flag to aac.

  11 Nov 2004; Luca Barbato <lu_zero@gentoo.org> vlc-0.8.0.ebuild:
  Temporary removed slp

*vlc-0.8.0 (09 Nov 2004)

  09 Nov 2004; Luca Barbato <lu_zero@gentoo.org> +vlc-0.8.0.ebuild:
  New release

  23 Oct 2004; Jason Wever <weeve@gentoo.org> vlc-0.7.2-r1.ebuild:
  Added ~sparc keyword.

  01 Sep 2004; Martin Holzer <mholzer@gentoo.org> vlc-0.7.2-r1.ebuild,
  vlc-0.7.2.ebuild:
  adding theora support through IUSE. closes 41383

  20 Aug 2004; Chris White <chriswhite@gentoo.org> vlc-0.7.2-r1.ebuild:
  Fixed LIVE version.

*vlc-0.7.2-r1 (10 Aug 2004)

  10 Aug 2004; Chris White <chriswhite@gentoo.org> metadata.xml,
  +files/vlc-0.7.2-live.patch, vlc-0.7.2-r1.ebuild:
  Removed CFLAGS unsetting, disabled broken interfaces, added myself as
  maintainer, and stopped the live downgrading issue.

  01 Jul 2004; Joel Martin <kanaka@gentoo.org>:
  Add dts use flag, update dependancy version requirements to more closely match
  official requirements, integrate some ebuild changes from ebuild included in
  the source tree, fix default font file location.

  25 Jun 2004; Joel Martin <kanaka@gentoo.org> vlc-0.7.2.ebuild:
  Add depend on automake 1.7.9 to close bug 54498. No version bump necessary,
  this is a getting it to build type fix

  09 Jun 2004; Aron Griffis <agriffis@gentoo.org> vlc-0.6.0-r1.ebuild,
  vlc-0.6.1.ebuild, vlc-0.6.2-r1.ebuild, vlc-0.6.2.ebuild, vlc-0.7.1.ebuild:
  Fix use invocation

*vlc-0.7.2 (07 Jun 2004)

  07 Jun 2004; Travis Tilley <lv@gentoo.org> +vlc-0.7.2.ebuild:
  version bump. this version contains improved interfaces with support for
  embedded video outputs, new formats support, an improved DVB input, subtitles
  improvements, major stream output improvements, a VideoLAN manager to manage
  several streams with only one instance of VLC, and (most importantly, at least
  here) numerous fixes for compiling with gcc 3.4.

  07 Jun 2004; Travis Tilley <lv@gentoo.org> vlc-0.7.1-r1.ebuild:
  stable on amd64

  03 May 2004; Jeremy Huddleston <eradicator@gentoo.org> vlc-0.6.0-r1.ebuild,
  vlc-0.6.1.ebuild, vlc-0.6.2-r1.ebuild, vlc-0.6.2.ebuild:
  Changing mad dep to madplay.

  09 Apr 2004; Travis Tilley <lv@gentoo.org> vlc-0.7.1-r1.ebuild:
  added ~amd64 keyword

*vlc-0.7.1-r1 (26 Mar 2004)

  26 Mar 2004; David Holm <dholm@gentoo.org> vlc-0.7.1-r1.ebuild:
  Added to ~ppc. AltiVec is broken in 0.7.1, disabled.

  20 Mar 2004; Joel Martin <kanaka@gentoo.org>:
  Changed to live.com ebuild rather than importing source. Disabled qt and kde
  interfaces and xvid since they are deprecated, added libdvdnav dependency,
  restructured configuration of dvd and dvb features, synchronized the format
  of the ebuild with the one by Derk-Jan Hartman.

  17 Mar 2004; Joel Martin <kanaka@gentoo.org> vlc-0.6.2-r1.ebuild,
  vlc-0.7.1.ebuild:
  Fix svga dep in 0.7.1, remove ~ia64 from 0.6.2-r1 because of bad deps

  15 Mar 2004; Luca Barbato <lu_zero@gentoo.org> vlc-0.7.1.ebuild:
  Marked -ppc the ffmpeg req has issues

*vlc-0.7.1 (11 Mar 2004)

  11 Mar 2004; Joel Martin <kanaka@gentoo.org> vlc-0.7.1.ebuild,
  files/live-gcc3-3.patch:
  Merged latest unstable vlc-0.6.2-r1, and vlc provided ebuild by Derk-Jan
  Hartman. Depend on new ffmpeg ebuild instead of pulling down ffmpeg directly.
  Add LiveMedia, libcaca support. No implicit mplayer dependency. Bump faad2
  requirement. General cleanup. Removed other arches because or arch dependency
  issues.

  23 Feb 2004; Michael Sterrett <mr_bones_@gentoo.org> vlc-0.6.0-r1.ebuild,
  vlc-0.6.1.ebuild, vlc-0.6.2-r1.ebuild, vlc-0.6.2.ebuild:
  fix KEYWORDS to match available deps

  07 Jan 2004; Daniel Ahlberg <aliz@gentoo.org> vlc-0.6.2-r1.ebuild,
  files/mpeg2dec-20030612-configure.in-fpic.patch:
  Patch configure.in instead of configure

*vlc-0.6.2-r1 (13 Dec 2003)

  13 Dec 2003; Seemant Kulleen <seemant@gentoo.org> vlc-0.6.2-r1.ebuild:
  Switch to using internal ffmpeg and mpeg2dec becausethat means that mplayer
  does not have to be a dependency any more. Thanks to the ebuild enclosed
  within the tarball for the clues

  12 Dec 2003; Seemant Kulleen <seemant@gentoo.org> metadata.xml,
  vlc-0.4.4.ebuild, vlc-0.4.5.ebuild, vlc-0.5.2-r1.ebuild, vlc-0.5.2.ebuild,
  vlc-0.6.0.ebuild, vlc-0.6.2.ebuild:
  remove crufty ebuilds and move to use_enable syntax for configure options

  22 Nov 2003; Luca Barbato <lu_zero@gentoo.org> vlc-0.6.2.ebuild,
  files/0.6.2-mozilla-fix.patch:
  Patch to build mozilla plugin on mozilla-1.5*

  21 Nov 2003; Nick Hadaway <raker@gentoo.org> vlc-0.6.2.ebuild:
  The Mozilla plugin only works with Mozilla 1.4 currently.

  19 Oct 2003; Max Kalika <max@gentoo.org> vlc-0.6.2.ebuild:
  Revert location of libdvd, it belongs in media-libs but was only 
  partly moved there previously.

  17 Oct 2003; Nick Hadaway <raker@gentoo.org> vlc-0.6.2.ebuild:
  Fixed portage location of libdvb.  Marked stable for x86.

  17 Aug 2003; Nick Hadaway <raker@gentoo.org> vlc-0.6.2.ebuild:
  Made minor change as suggested by brandy@gentoo.org on bug #24119

  16 Aug 2003; Nick Hadaway <raker@gentoo.org> vlc-0.6.2.ebuild,
  files/glide.patch:
  Glide works now possibly.  See bug #24119.  Also added the touch stuff
  from the videolan cvs ebuild.

  15 Aug 2003; Nick Hadaway <raker@gentoo.org> vlc-0.6.2.ebuild:
  Stripping -fomit-frame-pointer if gcc-major-version -eq 2.  See bug
  #24678.

*vlc-0.6.2 (13 Aug 2003)

  13 Aug 2003; Nick Hadaway <raker@gentoo.org> vlc-0.6.2.ebuild:
  Version bump.  Removed 0.6.1 related workarounds.  Added support
  for the altivec USE variable.  Up to 34 USE variables now. :)

*vlc-0.6.1 (01 Aug 2003)

  01 Aug 2003; Nick Hadaway <raker@gentoo.org> vlc-0.6.1.ebuild,
  files/buildorder.patch:
  The "elusive math equation" release.
  Version bump.  Re-organized the ebuild to coincide with the listing
  of configure options outputted by ./configure --help.  Added support
  for USE variables faad, xosd, and matroska.  Added a patch based on
  upstream cvs which allows the mozilla plugin to compile properly.
  I have updated the dependancies to the new ebuilds of libdvdcss-1.2.8
  and libdvbpsi-0.1.3 as upstream authors suggest these versions.
  We are now weighing in at 33 use variables folks. :)  Presently, 
  perhaps the most prolific package in Portage. :)

  21 Jul 2003; Nick Hadaway <raker@gentoo.org> vlc-0.6.0-r1.ebuild:
  Removed the matrox use variable and forced disable-mga as the
  module is known not to work, slower than other rendering, and will
  not be updated upstream anymore.

  20 Jul 2003; Nick Hadaway <raker@gentoo.org> vlc-0.6.0-r1.ebuild:
  Added support for the debug USE variable.  Added the matroska
  local USE variable.

  19 Jul 2003; Nick Hadaway <raker@gentoo.org> vlc-0.6.0-r1.ebuild:
  Added the dvb USE variable.  Added a comment re: truetype for 0.6.1
  Now showing the whole list of IUSE variables.  Updated
  wxwindows dependancy to >=wxGTK-2.4.1 as 2.4.0 has problems.
  Added -i to kde-related sed statements.  Re-worded some comments.
  General ebuild beautification.

  19 Jul 2003; Nick Hadaway <raker@gentoo.org>:
  Removed unneeded vlc-0.6.0-r2.ebuild.

*vlc-0.6.0-r2 (17 Jul 2003)

  17 Jul 2003; Nick Hadaway <raker@gentoo.org> vlc-0.6.0-r2.ebuild:
  Changed "mad" depends to the new libmad/libid3tag

*vlc-0.6.0-r1 (16 Jul 2003)

  16 Jul 2003; Nick Hadaway <raker@gentoo.org> vlc-0.6.0-r1.ebuild,
  files/mozplugin.patch:
  Now utilizes the mozilla USE variable to install a way cool
  mozilla plugin.  The code has been tested with mozilla 1.4
  and may work with 1.3.

  16 Jul 2003; Nick Hadaway <raker@gentoo.org> vlc-0.6.0.ebuild:
  Adding mplayer as a dependancy until the libpostproc issue is
  figured out.  See bug #22811

  09 Jul 2003; Nick Hadaway <raker@gentoo.org> vlc-0.6.0.ebuild:
  A little sed to change glide location from /usr/include/glide to
  /usr/include/glide3

  06 Jul 2003; Nick Hadaway <raker@gentoo.org> vlc-0.6.0.ebuild:
  Marked stable for x86

*vlc-0.6.0 (25 Jun 2003)

  25 Jun 2003; Nick Hadaway <raker@gentoo.org> vlc-0.6.0.ebuild:
  Lots more IUSE madness.  More proper enabling/disabling of configure
  options.  Some portions of this ebuild were inspired from the 
  videolan.org official ebuild.

*vlc-0.5.2-r1 (29 Mar 2003)

  29 Mar 2003; Martin Holzer <mholzer@gentoo.org> vlc-0.5.2-r1.ebuild:
  Added some IUSE vars and option flags. Closes #18321.

*vlc-0.5.2 (13 Mar 2003)

  13 Mar 2003; Seemant Kulleen <seemant@gentoo.org> vlc-0.5.2.ebuild:
  version bump

*vlc-0.4.5 (09 Nov 2002)

  22 Dec 2002; Martin Holzer <mholzer@gentoo.org> vlc-0.4.4.ebuild files/digest-vlc-0.4.4 Changelog:
  Changed .tar.gz to .tar.bz2, removed --disable-a52

  09 Nov 2002; Seemant Kulleen <seemant@gentoo.org>  vlc-0.4.5.ebuild
  files/digest-vlc-0.4.5:

  Version bump, thanks to: mholzer@gentoo.org (Martin Holzer) in bug #10426

*vlc-0.4.4 (13 Aug 2002)

  22 Dec 2002; Martin Holzer <mholzer@gentoo.org> vlc-0.4.4.ebuild files/digest-vlc-0.4.4 Changelog:
  Changed .tar.gz to .tar.bz2, removed --disable-a52

  28 Sep 2002; Nick Hadaway <raker@gentoo.org> vlc-0.4.4.ebuild:
  Removed redundant configure options.  Changed to einstall.

  17 Aug 2002; Dan Armak <danarmak@gentoo.org> ChangeLog:
  Use kde-functions.eclass to determine kdelibs, arts locations.

  15 Aug 2002; Mark Guertin <gerk@gentoo.org> vlc-0.4.4.ebuild:
  Added ppc to keywords

  13 Aug 2002; Seemant Kulleen <seemant@gentoo.org> vlc-0.4.4.ebuild:
  Version bump.

*vlc-0.4.3 (25 Jul 2002)

  02 Aug 2002; Nick Hadaway <raker@gentoo.org> vlc-0.4.3.ebuild:
  Added support for libdvbpsi.

  29 Jul 2002; Nick Hadaway <raker@gentoo.org>:
  Added support for a52dec by default as it is marked as enabled by
  default in vlc's configure options and the a52dec author says we
  should give it a try.  :)  I have it set to depend on
  >=media-libs/a52dec-0.7.4 as previous versions were not thread
  safe.

  25 Jul 2002; Seemant Kulleen <seemant@gentoo.org>  vlc-0.4.3.ebuild:
  Version bump.

*vlc-0.4.2 (13 Jul 2002)

  13 Jul 2002; Nick Hadaway <raker@gentoo.org> 
  vlc-0.4.2.ebuild files/digest-vlc-0.4.2:
  Version bump.

*vlc-0.4.1 (09 Jul 2002)

  09 Jul 2002; Nick Hadaway <raker@gentoo.org> vlc-0.4.1.ebuild
  files/digest-vlc-0.4.1:
  Version bump.  Added required dependancy for mad (MPEG audio library)
  which allows vlc to read divx files.  Updated configure options.
  Special thanks to to the vlc support team for the quick response
  to my inquiry.

*vlc-0.4.0 (17 Jun 2002)

  17 Jun 2002; Seemant Kulleen <seemant@gentoo.org> vlc-0.4.0-r1.ebuild
  files/digest-vlc-0.4.0-r1:
  This now works with Qt2 and Qt3, depending on which is reflected in
  $QTDIR.  Thanks to BradPritt@gmx.de (Markus Mohr) in bug #3678 for
  providing this fix.

*vlc-0.4.0 (24 May 2002)

  24 May 2002; Seemant Kulleen <seemant@gentoo.org> vlc-0.4.0.ebuild
  files/digest-vlc-0.4.0:
  Version bump.

*vlc-0.3.1-r1 (19 May 2002)

  19 May 2002; Seemant Kulleen <seemant@gentoo.org> vlc-0.3.1-r1.ebuild
  files/digest-vlc-0.3.1-r1:
  Added USE dependent ALSA support, since gentoo now defaults to alsa-0.9

*vlc-0.3.1 (07 May 2002)

  07 May 2002; Karl Trygve Kalleberg <karltk@gentoo.org> vlc-0.3.1.ebuild files/digest-vlc-0.3.1:
  New upstream version.


*vlc-0.2.91 (1 Feb 2002)

  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.