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

  11 Jan 2009; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-server/files/2.0.0.122956/007_all_use-modprobe-over-i
  nsmod.patch:
  Remove -f from modprobe in vmware-server-2 so that it works on newer
  kernels.

  11 Jan 2009; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-server/vmware-server-2.0.0.122956.ebuild:
  Fix up typo in vmware-server-2.0.0 with libXft.

  11 Jan 2009; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-player/Manifest,
  app-emulation/vmware-server/Manifest,
  app-emulation/vmware-workstation/Manifest:
  Fix the manifests because echangelog decides to udpate all the copyright
  texts without recalculating them. Grrrr.

  11 Jan 2009; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-server/vmware-server-1.0.8.126538.ebuild,
  app-emulation/vmware-player/vmware-player-1.0.9.126128.ebuild,
  app-emulation/vmware-server/vmware-server-2.0.0.122956.ebuild,
  app-emulation/vmware-player/vmware-player-2.5.1.126130.ebuild,
  app-emulation/vmware-workstation/vmware-workstation-5.5.9.126128.ebuild,
  app-emulation/vmware-workstation/vmware-workstation-6.5.1.126130.ebuild:
  Remove virtual/xft to keep in sync with the main tree.

  10 Jan 2009; Mike Auty <ikelos@gentoo.org> -eclass/vmware.eclass,
  -eclass/vmware-mod.eclass:
  Sync with tree and remove eclasses.

  06 Jan 2009; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-modules/vmware-modules-1.0.0.15-r2.ebuild:
  Fix up typo with kernel_is in vmware-modules-1.0.0.15.

  06 Jan 2009; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-modules/vmware-modules-1.0.0.15-r2.ebuild:
  Ensure we check for UNUSED_SYMBOLS in vmware-modules-1.0.0.15-r2.

  04 Jan 2009; Mike Auty <ikelos@gentoo.org>
  -app-emulation/vmware-modules/files/1.0.0.22-makefile-kernel-dir.patch,
  +app-emulation/vmware-modules/files/patches/vmnet/030_all_kernel-2.6.27.pa
  tch,
  +app-emulation/vmware-modules/files/patches/vmmon/040_all_kernel-2.6.27.pa
  tch:
  Update vmware-modules-1.0.0.15, and remove the no-longer-necessary
  1.0.0.22.

  31 Dec 2008; Mike Auty <ikelos@gentoo.org> -x11-libs/libview/metadata.xml,
  -x11-libs/libview/files/libview-0.5.6-pcfix.patch:
  Remove libview since it's now in the main tree.

  31 Dec 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-workstation/files/helpers/vmware-config.sh:
  Remove debugging statement from vmware-config.sh

  31 Dec 2008; Mike Auty <ikelos@gentoo.org>
  -app-emulation/open-vm-tools/open-vm-tools-0.0.20080414.87182.ebuild,
  -app-emulation/open-vm-tools/open-vm-tools-0.0.20080515.93241.ebuild,
  -app-emulation/open-vm-tools/open-vm-tools-0.0.20080701.102166.ebuild,
  -app-emulation/open-vm-tools/open-vm-tools-0.0.20080808.109361.ebuild,
  -app-emulation/open-vm-tools/open-vm-tools-0.0.20081010.123053.ebuild,
  +app-emulation/open-vm-tools/open-vm-tools-0.0.20081223.137496.ebuild:
  Update open-vm-tools to the latest version in the tree, clean out the
  cruft.

  20 Dec 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-server/files/vmware-server-2.rc:
  Add hald requirement to vmware-server-2 initscript.

  28 Nov 2008; Mike Auty <ikelos@gentoo.org>
  -app-emulation/vmware-player/files/vmware-player-2.5.0.118166-installer.pa
  tch, ++, ++, ++,
  -app-emulation/vmware-player/files/2.5.0.118166/vmware-player.py.patch,
  -app-emulation/vmware-player/files/2.5.0.118166/vmware-player-extras.py.pa
  tch, app-emulation/vmware-player/files/helpers/vmware-config.sh:
  Version bump vmware-player to 2.5.1.126130 and fix the vmware-config.sh
  issue.

  27 Nov 2008; Mike Auty <ikelos@gentoo.org>
  -app-emulation/vmware-workstation/files/vmware-workstation-6.5.0.118166-in
  staller.patch,
  +app-emulation/vmware-workstation/files/6.5.1.126130/vmware-player.py.patc
  h, -app-emulation/vmware-workstation/files/6.5.0.118166,
  +app-emulation/vmware-workstation/files/6.5.1.126130/vmware-player-extras.
  py.patch,
  +app-emulation/vmware-workstation/files/6.5.1.126130/vmware-vix.py.patch,
  +app-emulation/vmware-workstation/files/vmware-workstation-6.5.1.126130-in
  staller.patch,
  +app-emulation/vmware-workstation/files/6.5.1.126130/vmware-workstation.py
  .patch, app-emulation/vmware-workstation/files/helpers/vmware-config.sh:
  Version bump vmware-workstation and fix an issue with the vmware-config
  helper.

  20 Nov 2008; Mike Auty <ikelos@gentoo.org>
  x11-libs/libview/libview-0.6.2.ebuild:
  Include fix in libview for 239325.

  20 Nov 2008; Mike Auty <ikelos@gentoo.org>
  +x11-libs/libview/libview-0.6.2.ebuild:
  Bump latest version of libview.

  19 Nov 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/open-vm-tools-0.0.20080808.109361.ebuild,
  app-emulation/open-vm-tools/open-vm-tools-0.0.20081010.123053.ebuild:
  Change hardened warning on open-vm-tools.

  17 Nov 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-player/vmware-player-2.5.0.118166.ebuild,
  app-emulation/vmware-workstation/vmware-workstation-6.5.0.118166.ebuild:
  Sync up ncurses and screen error messages with main tree.

  11 Nov 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-modules/vmware-modules-1.0.0.22.ebuild,
  app-emulation/vmware-modules/vmware-modules-1.0.0.23.ebuild,
  app-emulation/vmware-server/vmware-server-1.0.8.126538.ebuild,
  app-emulation/vmware-workstation/vmware-workstation-6.5.0.118166.ebuild:
  Sync minor syntax fixes from the tree.

  10 Nov 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-player/vmware-player-2.5.0.118166.ebuild,
  app-emulation/vmware-workstation/vmware-workstation-6.5.0.118166.ebuild:
  Fix up proper deaths on rollbacks.

  09 Nov 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-server/vmware-server-1.0.8.126538.ebuild,
  app-emulation/vmware-server-console/vmware-server-console-1.0.8.126538.ebu
  ild, app-emulation/vmware-server/vmware-server-2.0.0.122956.ebuild,
  app-emulation/vmware-player/vmware-player-2.5.0.118166.ebuild,
  app-emulation/vmware-workstation/vmware-workstation-6.5.0.118166.ebuild:
  Add in -* keyword for clarity.

  09 Nov 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/open-vm-tools-0.0.20080808.109361.ebuild,
  +app-emulation/open-vm-tools/open-vm-tools-0.0.20081010.123053.ebuild,
  app-emulation/vmware-server/vmware-server-1.0.8.126538.ebuild,
  app-emulation/vmware-server-console/vmware-server-console-1.0.8.126538.ebu
  ild, app-emulation/vmware-player/vmware-player-1.0.9.126128.ebuild,
  app-emulation/vmware-player/vmware-player-2.5.0.118166.ebuild,
  app-emulation/vmware-workstation/vmware-workstation-6.5.0.118166.ebuild:
  Fix up minor issues and bump open-vm-tools to the latest version.

  09 Nov 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-workstation/files/6.5.0.118166/vmware-workstation.py.
  patch:
  Fix up some bugs (path, env.d-path, eclipse, mime & term) in
  vmware-workstation-6.5 and vmware-player-2.5.

  09 Nov 2008; Mike Auty <ikelos@gentoo.org>
  -app-emulation/vmware-modules/files/1.0.0.19-makefile-kernel-dir.patch,
  -app-emulation/vmware-player/files/1.0.8.108000,
  -app-emulation/vmware-workstation/files/5.5.8.108000,
  +app-emulation/vmware-player/files/1.0.9.126128/004_all_do-not-build-modul
  es.patch, -app-emulation/vmware-server/files/2.0.0.116503,
  +app-emulation/vmware-server/files/2.0.0.122956/000_all_initd-location.pat
  ch,
  +app-emulation/vmware-player/files/1.0.9.126128/007_all_use-modprobe-over-
  insmod.patch,
  +app-emulation/vmware-workstation/files/5.5.9.126128/000_all_initd-locatio
  n.patch,
  +app-emulation/vmware-workstation/files/5.5.9.126128/001_all_fix-permissio
  ns.patch,
  +app-emulation/vmware-player/files/1.0.9.126128/009_all_init.d-modules-war
  ning.patch,
  -app-emulation/vmware-player/files/2.0.5.109488/000_all_initd-location.pat
  ch,
  +app-emulation/vmware-server/files/2.0.0.122956/001_all_fix-permissions.pa
  tch,
  +app-emulation/vmware-workstation/files/5.5.9.126128/002_all_pagebreak-det
  ection-fix.patch,
  -app-emulation/vmware-player/files/2.0.5.109488/001_all_fix-permissions.pa
  tch,
  +app-emulation/vmware-server/files/2.0.0.122956/002_all_pagebreak-detectio
  n-fix.patch,
  -app-emulation/vmware-player/files/2.0.5.109488/002_all_pagebreak-detectio
  n-fix.patch,
  +app-emulation/vmware-workstation/files/5.5.9.126128/004_all_do-not-build-
  modules.patch,
  +app-emulation/vmware-workstation/files/5.5.9.126128/007_all_use-modprobe-
  over-insmod.patch,
  -app-emulation/vmware-modules/files/1.0.0.17-update115-nasty-hack.patch,
  -app-emulation/vmware-player/files/2.0.5.109488/004_all_do-not-build-modul
  es.patch,
  +app-emulation/vmware-server/files/2.0.0.122956/004_all_do-not-build-modul
  es.patch,
  -app-emulation/vmware-modules/files/1.0.0.20-vmblock-2.6.26-1.patch,
  +app-emulation/vmware-player/files/1.0.9.126128/000_all_initd-location.pat
  ch,
  -app-emulation/vmware-player/files/2.0.5.109488/011_all_legit-modules-only
  .patch,
  +app-emulation/vmware-server/files/2.0.0.122956/007_all_use-modprobe-over-
  insmod.patch,
  +app-emulation/vmware-workstation/files/5.5.9.126128/009_all_init.d-module
  s-warning.patch,
  -app-emulation/vmware-workstation/files/6.0.5.109488/000_all_initd-locatio
  n.patch,
  -app-emulation/vmware-modules/files/1.0.0.20-vmblock-2.6.26-2.patch,
  -app-emulation/vmware-modules/files/1.0.0.20-makefile-kernel-dir.patch,
  -app-emulation/vmware-modules/files/1.0.0.21-makefile-kernel-dir.patch,
  +app-emulation/vmware-player/files/1.0.9.126128/001_all_fix-permissions.pa
  tch,
  -app-emulation/vmware-player/files/2.0.5.109488/007_all_use-modprobe-over-
  insmod.patch,
  +app-emulation/vmware-server/files/2.0.0.122956/009_all_init.d-modules-war
  ning.patch,
  +app-emulation/vmware-server/files/2.0.0.122956/011_all_legit-modules-only
  .patch,
  -app-emulation/vmware-workstation/files/6.0.5.109488/001_all_fix-permissio
  ns.patch, -app-emulation/vmware-modules/files/1.0.0.20-vmnet-2.6.26.patch,
  +app-emulation/vmware-player/files/1.0.9.126128/002_all_pagebreak-detectio
  n-fix.patch,
  -app-emulation/vmware-player/files/2.0.5.109488/009_all_init.d-modules-war
  ning.patch,
  -app-emulation/vmware-workstation/files/6.0.5.109488/002_all_pagebreak-det
  ection-fix.patch,
  -app-emulation/vmware-workstation/files/6.0.5.109488/004_all_do-not-build-
  modules.patch,
  -app-emulation/vmware-workstation/files/6.0.5.109488/011_all_legit-modules
  -only.patch,
  -app-emulation/vmware-modules/files/1.0.0.20-vmmon-2.6.26.patch,
  -app-emulation/vmware-modules/files/1.0.0.19-vsock-kernel-makefile.patch,
  -app-emulation/vmware-workstation/files/6.0.5.109488/007_all_use-modprobe-
  over-insmod.patch,
  -app-emulation/vmware-workstation/files/6.0.5.109488/009_all_init.d-module
  s-warning.patch:
  Massive version bump and cleanup for bug 245941.

  30 Oct 2008; Mike Auty <ikelos@gentoo.org>
  +app-emulation/vmware-modules/files/1.0.0.23-makefile-kernel-dir.patch:
  Fix up kernel paths for vmware-modules-1.0.0.23.

  26 Oct 2008; Mike Auty <ikelos@gentoo.org>
  -app-emulation/vmware-server/files/2.0.0.84186,
  +app-emulation/vmware-server/files/2.0.0.116503/000_all_initd-location.pat
  ch,
  +app-emulation/vmware-server/files/2.0.0.116503/001_all_fix-permissions.pa
  tch,
  +app-emulation/vmware-server/files/2.0.0.116503/002_all_pagebreak-detectio
  n-fix.patch,
  +app-emulation/vmware-server/files/2.0.0.116503/004_all_do-not-build-modul
  es.patch,
  +app-emulation/vmware-server/files/2.0.0.116503/007_all_use-modprobe-over-
  insmod.patch,
  +app-emulation/vmware-server/files/2.0.0.116503/009_all_init.d-modules-war
  ning.patch,
  +app-emulation/vmware-server/files/2.0.0.116503/011_all_legit-modules-only
  .patch:
  Version bump vmware-server to 2.0.0.116503.

  20 Oct 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-player/vmware-player-2.5.0.118166.ebuild,
  app-emulation/vmware-workstation/vmware-workstation-6.5.0.118166.ebuild:
  Fix up vmware-player-2.5/vmware-workstation-6.5 lxml dependency.

  19 Oct 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-player/vmware-player-2.5.0.118166.ebuild,
  app-emulation/vmware-workstation/vmware-workstation-6.5.0.118166.ebuild:
  Add binchecks to cut down the huge amount of wasted time. Fix up desktop
  files for workstation.

  19 Oct 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-modules/Manifest:
  Fix up manifest for amd64 vmware-modules-1.0.0.23.

  19 Oct 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-player/vmware-player-2.5.0.118166.ebuild,
  app-emulation/vmware-workstation/vmware-workstation-6.5.0.118166.ebuild:
  Ensure python requires sqlite.

  19 Oct 2008; Mike Auty <ikelos@gentoo.org>
  +app-emulation/vmware-player/files/2.5.0.118166/vmware-player.py.patch,
  +app-emulation/vmware-workstation/files/6.5.0.118166/vmware-player.py.patc
  h, +app-emulation/vmware-player/files/vmware-player-2.5.rc,
  app-emulation/vmware-workstation/files/vmware-workstation-6.5.0.118166-ins
  taller.patch,
  +app-emulation/vmware-workstation/files/6.5.0.118166/vmware-player-extras.
  py.patch,
  +app-emulation/vmware-workstation/files/vmware-workstation-6.5.rc,
  +app-emulation/vmware-player/files/2.5.0.118166/vmware-player-extras.py.pa
  tch,
  +app-emulation/vmware-workstation/files/6.5.0.118166/vmware-vix.py.patch,
  +app-emulation/vmware-workstation/files/6.5.0.118166/vmware-workstation.py
  .patch,
  +app-emulation/vmware-player/files/vmware-player-2.5.0.118166-installer.pa
  tch, +app-emulation/vmware-player/files/helpers/module_patcher.sh,
  +app-emulation/vmware-player/files/helpers/unbundler.sh,
  +app-emulation/vmware-player/files/helpers/vmware-config.sh,
  +app-emulation/vmware-workstation/files/helpers/module_patcher.sh,
  +app-emulation/vmware-workstation/files/helpers/unbundler.sh,
  +app-emulation/vmware-workstation/files/helpers/vmware-config.sh,
  -app-emulation/vmware-workstation/files/unbundler.sh:
  Initial attempt at bundle installers.

  15 Oct 2008; Mike Auty <ikelos@gentoo.org>
  +app-emulation/vmware-workstation/files/vmware-workstation-6.5.0.118166-in
  staller.patch, +app-emulation/vmware-workstation/files/unbundler.sh:
  Add in 6.5.0 patches and auxiliary files for testing.

  18 Sep 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-modules/Manifest:
  Remove vmware-modules for expired vmware-workstation beta.

  18 Sep 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-workstation/Manifest:
  Remove expired vmware-workstation beta.

  18 Sep 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/open-vm-tools-0.0.20080808.109361.ebuild:
  Fix up open-vm-tools to install the xinitrc script executably.

  14 Sep 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-player/files/1.0.8.108000/007_all_use-modprobe-over-i
  nsmod.patch,
  app-emulation/vmware-player/files/2.0.5.109488/007_all_use-modprobe-over-i
  nsmod.patch,
  app-emulation/vmware-workstation/files/5.5.8.108000/007_all_use-modprobe-o
  ver-insmod.patch,
  app-emulation/vmware-workstation/files/6.0.5.109488/007_all_use-modprobe-o
  ver-insmod.patch,
  app-emulation/vmware-workstation/files/6.5.0.99530/007_all_use-modprobe-ov
  er-insmod.patch:
  Bump various vmware products and remove modprobe forcing (since it's now
  optional in kernels >2.6.25).

  21 Aug 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-workstation/vmware-workstation-6.0.4.93057.ebuild,
  app-emulation/vmware-workstation/vmware-workstation-6.5.0.91182.ebuild,
  app-emulation/vmware-workstation/vmware-workstation-6.5.0.99530.ebuild:
  Fix up hicolor icons symlink issue and manifest for open-vm-tools.

  20 Aug 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/open-vm-tools-0.0.20080808.109361.ebuild:
  Finally get the open-vm-tools unity dependencies right.

  20 Aug 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/open-vm-tools-0.0.20080808.109361.ebuild:
  Fix up the unity USE flag in open-vm-tools.

  20 Aug 2008; Mike Auty <ikelos@gentoo.org>
  +app-emulation/open-vm-tools/files/10-vmware-tools:
  Bump open-vm-tools and add patch from Mrness for autostarting vmware-user.

  19 Aug 2008; Mike Auty <ikelos@gentoo.org>
  -app-emulation/vmware-server/vmware-server-2.0.0.101586.ebuild:
  Remove the broken vmware-server ebuild.

  19 Aug 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-modules/vmware-modules-1.0.0.20.ebuild:
  Clean up UNUSED_SYMBOLS check. Also forgot to thank Jeff Mitchell for his
  patches in the last update. Thanks Jeff!

  19 Aug 2008; Mike Auty <ikelos@gentoo.org>
  +app-emulation/vmware-workstation/files/6.5.0.99530/000_all_initd-location
  .patch,
  +app-emulation/vmware-workstation/files/6.5.0.99530/001_all_fix-permission
  s.patch,
  +app-emulation/vmware-workstation/files/6.5.0.99530/002_all_pagebreak-dete
  ction-fix.patch,
  +app-emulation/vmware-workstation/files/6.5.0.99530/004_all_do-not-build-m
  odules.patch,
  +app-emulation/vmware-modules/files/1.0.0.20-vmblock-2.6.26-1.patch,
  +app-emulation/vmware-workstation/files/6.5.0.99530/007_all_use-modprobe-o
  ver-insmod.patch,
  +app-emulation/vmware-modules/files/1.0.0.20-vmblock-2.6.26-2.patch,
  +app-emulation/vmware-modules/files/1.0.0.21-makefile-kernel-dir.patch,
  +app-emulation/vmware-workstation/files/6.5.0.99530/009_all_init.d-modules
  -warning.patch,
  +app-emulation/vmware-workstation/files/6.5.0.99530/011_all_legit-modules-
  only.patch,
  +app-emulation/vmware-modules/files/1.0.0.20-vmnet-2.6.26.patch,
  +app-emulation/vmware-modules/files/1.0.0.20-vmmon-2.6.26.patch:
  Add in vmware-server 2 new beta, vmware-workstation 6 new beta, and module
  fixes for 1.0.0.20 courtesy of Cyrius who did a great job with the
  patches. Thanks Cyrius!

  12 Jul 2008; Mike Auty <ikelos@gentoo.org>
  +app-emulation/open-vm-tools/files/makefile-destdir.patch:
  Version bump open-vm-tools, and use internal install mechanism.

  18 Jun 2008; Mike Auty <ikelos@gentoo.org>
  +app-emulation/vmware-modules/files/1.0.0.20-makefile-kernel-dir.patch:
  Fix up vmware-modules for kernel directory issues (bug 227941).

  10 Jun 2008; Mike Auty <ikelos@gentoo.org>
  +app-emulation/vmware-server/files/vmware-server-2.rc, ++:
  Bump vmware-server-console and fix up init script and digests for
  vmware-server-2.

  08 Jun 2008; Mike Auty <ikelos@gentoo.org>
  -app-emulation/vmware-workstation/files/5.5.6.80404, ++,
  +app-emulation/vmware-player/files/1.0.7.91707/000_all_initd-location.patc
  h,
  +app-emulation/vmware-player/files/1.0.7.91707/001_all_fix-permissions.pat
  ch,
  +app-emulation/vmware-player/files/1.0.7.91707/002_all_pagebreak-detection
  -fix.patch,
  +app-emulation/vmware-player/files/1.0.7.91707/004_all_do-not-build-module
  s.patch,
  +app-emulation/vmware-player/files/1.0.7.91707/007_all_use-modprobe-over-i
  nsmod.patch,
  +app-emulation/vmware-player/files/1.0.7.91707/009_all_init.d-modules-warn
  ing.patch,
  +app-emulation/vmware-workstation/files/5.5.7.91707/000_all_initd-location
  .patch,
  +app-emulation/vmware-workstation/files/5.5.7.91707/001_all_fix-permission
  s.patch,
  +app-emulation/vmware-workstation/files/5.5.7.91707/002_all_pagebreak-dete
  ction-fix.patch, ++,
  +app-emulation/vmware-workstation/files/5.5.7.91707/004_all_do-not-build-m
  odules.patch,
  +app-emulation/vmware-workstation/files/5.5.7.91707/007_all_use-modprobe-o
  ver-insmod.patch,
  +app-emulation/vmware-workstation/files/5.5.7.91707/009_all_init.d-modules
  -warning.patch:
  Security version bump vmware-player-1 vmware-server-1 and
  vmware-workstation-5.

  05 Jun 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-server/vmware-server-2.0.0.84186.ebuild:
  Fix up amd64 dependencies for vmware-server.

  05 Jun 2008; Mike Auty <ikelos@gentoo.org>
  -app-emulation/vmware-server/files/2.0.0.63231/000_all_initd-location.patc
  h,
  -app-emulation/vmware-server/files/2.0.0.63231/001_all_fix-permissions.pat
  ch,
  -app-emulation/vmware-server/files/2.0.0.63231/002_all_pagebreak-detection
  -fix.patch,
  -app-emulation/vmware-server/files/2.0.0.63231/004_all_do-not-build-module
  s.patch,
  -app-emulation/vmware-server/files/2.0.0.63231/007_all_use-modprobe-over-i
  nsmod.patch,
  -app-emulation/vmware-server/files/2.0.0.63231/011_all_legit-modules-only.
  patch,
  -app-emulation/vmware-server/files/2.0.0.63231/009_all_init.d-modules-warn
  ing.patch:
  Fixing gtkmm dependency for vmware-server, and removing old version.

  03 Jun 2008; Mike Auty <ikelos@gentoo.org>
  -app-emulation/vmware-player/files/1.0.5.56455/000_all_initd-location.patc
  h,
  -app-emulation/vmware-player/files/1.0.5.56455/001_all_fix-permissions.pat
  ch,
  -app-emulation/vmware-player/files/1.0.5.56455/002_all_pagebreak-detection
  -fix.patch,
  -app-emulation/vmware-player/files/1.0.5.56455/004_all_do-not-build-module
  s.patch,
  -app-emulation/vmware-player/files/1.0.5.56455/007_all_use-modprobe-over-i
  nsmod.patch,
  -app-emulation/vmware-player/files/1.0.5.56455/009_all_init.d-modules-warn
  ing.patch,
  -app-emulation/vmware-player/files/2.0.3.80004/000_all_initd-location.patc
  h,
  -app-emulation/vmware-player/files/2.0.3.80004/011_all_legit-modules-only.
  patch,
  -app-emulation/vmware-player/files/2.0.3.80004/001_all_fix-permissions.pat
  ch,
  +app-emulation/vmware-player/files/2.0.4.93057/004_all_do-not-build-module
  s.patch,
  +app-emulation/vmware-player/files/2.0.4.93057/007_all_use-modprobe-over-i
  nsmod.patch,
  -app-emulation/vmware-player/files/2.0.3.80004/002_all_pagebreak-detection
  -fix.patch,
  +app-emulation/vmware-player/files/2.0.4.93057/009_all_init.d-modules-warn
  ing.patch,
  -app-emulation/vmware-player/files/2.0.3.80004/004_all_do-not-build-module
  s.patch,
  -app-emulation/vmware-player/files/2.0.3.80004/007_all_use-modprobe-over-i
  nsmod.patch,
  -app-emulation/vmware-player/files/2.0.3.80004/009_all_init.d-modules-warn
  ing.patch,
  +app-emulation/vmware-player/files/2.0.4.93057/000_all_initd-location.patc
  h,
  +app-emulation/vmware-player/files/2.0.4.93057/001_all_fix-permissions.pat
  ch,
  +app-emulation/vmware-player/files/2.0.4.93057/002_all_pagebreak-detection
  -fix.patch,
  +app-emulation/vmware-player/files/2.0.4.93057/011_all_legit-modules-only.
  patch, -app-emulation/vmware-workstation/files/5.5.5.56455,
  -app-emulation/vmware-workstation/files/6.0.2.59824,
  -app-emulation/vmware-workstation/files/6.0.3.80004,
  +app-emulation/vmware-workstation/files/6.0.4.93057/000_all_initd-location
  .patch,
  +app-emulation/vmware-workstation/files/6.0.4.93057/001_all_fix-permission
  s.patch,
  +app-emulation/vmware-workstation/files/6.0.4.93057/002_all_pagebreak-dete
  ction-fix.patch,
  +app-emulation/vmware-workstation/files/6.0.4.93057/004_all_do-not-build-m
  odules.patch,
  +app-emulation/vmware-workstation/files/6.0.4.93057/007_all_use-modprobe-o
  ver-insmod.patch,
  +app-emulation/vmware-workstation/files/6.0.4.93057/009_all_init.d-modules
  -warning.patch,
  +app-emulation/vmware-workstation/files/6.0.4.93057/011_all_legit-modules-
  only.patch, -app-emulation/vmware-workstation/files/6.5.0.84113:
  Bump vmware-player and workstation, and bump modules because vmware felt
  it was necessary, again... (sigh)

  27 May 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-player/files/vmware-player.rc:
  Sync up vmware-player.rc with the tree.

  27 May 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-modules/vmware-modules-1.0.0.19.ebuild:
  Fix up the vmware-modules-1.0.0.19 SRC_URI.

  24 May 2008; Mike Auty <ikelos@gentoo.org>
  +app-emulation/open-vm-tools/files/default-scripts.patch:
  Add in initial patch for default scripts.

  24 May 2008; Mike Auty <ikelos@gentoo.org>
  +app-emulation/open-vm-tools/open-vm-tools-0.0.20080515.93241.ebuild:
  Bump open-vm-tools version.

  22 May 2008; Mike Auty <ikelos@gentoo.org>
  +app-emulation/vmware-workstation/files/6.5.0.91182/000_all_initd-location
  .patch,
  +app-emulation/vmware-workstation/files/6.5.0.91182/001_all_fix-permission
  s.patch,
  +app-emulation/vmware-workstation/files/6.5.0.91182/002_all_pagebreak-dete
  ction-fix.patch,
  +app-emulation/vmware-workstation/files/6.5.0.91182/004_all_do-not-build-m
  odules.patch,
  +app-emulation/vmware-workstation/files/6.5.0.91182/007_all_use-modprobe-o
  ver-insmod.patch,
  +app-emulation/vmware-workstation/files/6.5.0.91182/009_all_init.d-modules
  -warning.patch,
  +app-emulation/vmware-workstation/files/6.5.0.91182/011_all_legit-modules-
  only.patch:
  Version bump vmware-workstation-6.5.0.

  26 Apr 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-workstation/vmware-workstation-5.5.5.56455.ebuild,
  app-emulation/vmware-workstation/vmware-workstation-5.5.6.80404.ebuild,
  app-emulation/vmware-workstation/vmware-workstation-6.0.2.59824.ebuild,
  app-emulation/vmware-workstation/vmware-workstation-6.0.3.80004.ebuild:
  Sync vmware-workstation up with the tree.

  26 Apr 2008; Mike Auty <ikelos@gentoo.org>
  -app-emulation/vmware-workstation-tools/files/5.5.1/000_all_initd-scripts.
  patch,
  -app-emulation/vmware-workstation-tools/files/5.5.2/000_all_initd-scripts.
  patch,
  -app-emulation/vmware-workstation-tools/files/5.5.3/000_all_initd-scripts.
  patch,
  -app-emulation/vmware-workstation-tools/files/6.0.0.45731/000_all_vmware-t
  ools.patch, -app-emulation/vmware-workstation-tools/files/90vmware-tools,
  -app-emulation/vmware-workstation-tools/files/patches/000_all_makefile-inc
  lude-directory.patch,
  -app-emulation/vmware-workstation-tools/files/vmware-workstation-tools,
  -app-emulation/vmware-workstation-tools/files/vmware-workstation-tools.rc,
  -app-emulation/vmware-workstation-tools/files/xorg.conf:
  Deprecating vmware-workstation-tools in favour of open-vm-tools.

  26 Apr 2008; Mike Auty <ikelos@gentoo.org>
  -app-emulation/vmware-player/files/2.0.2.59824:
  Sync vmware-server-console with tree.

  26 Apr 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-server/vmware-server-1.0.4.56528.ebuild,
  app-emulation/vmware-server/vmware-server-1.0.5.80187.ebuild:
  Sync vmware-server with tree.

  26 Apr 2008; Mike Auty <ikelos@gentoo.org>
  -app-emulation/vmware-modules/files/1.0.0.17-kernel-2.6.13-rtnl.patch:
  Sync vmware-player with the tree.

  26 Apr 2008; Mike Auty <ikelos@gentoo.org>
  -app-emulation/vmware-modules/files/1.0.0.17-kernel-2.6.13-rtnl.patch:
  Sync vmware-modules with the tree.

  26 Apr 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/files/open-vm.initd,
  -app-emulation/open-vm-tools/files/open-vm-tools-as-needed.patch:
  Sync open-vm-tools with tree. Merge dependencies between x86 and amd64
  arches.

  25 Apr 2008; Mike Auty <ikelos@gentoo.org>
  +app-emulation/vmware-server/files/2.0.0.84186/000_all_initd-location.patc
  h,
  +app-emulation/vmware-server/files/2.0.0.84186/001_all_fix-permissions.pat
  ch,
  +app-emulation/vmware-server/files/2.0.0.84186/002_all_pagebreak-detection
  -fix.patch,
  +app-emulation/vmware-server/files/2.0.0.84186/004_all_do-not-build-module
  s.patch,
  +app-emulation/vmware-server/files/2.0.0.84186/007_all_use-modprobe-over-i
  nsmod.patch,
  +app-emulation/vmware-server/files/2.0.0.84186/009_all_init.d-modules-warn
  ing.patch,
  +app-emulation/vmware-server/files/2.0.0.84186/011_all_legit-modules-only.
  patch:
  Bump vmware-server to version 2 beta 2.

  23 Apr 2008; Mike Auty <ikelos@gentoo.org>
  +app-emulation/vmware-modules/files/patches/vmnet/025_all_kernel-2.6.25.pa
  tch,
  +app-emulation/vmware-modules/files/patches/vmmon/035_all_kernel-2.6.25.pa
  tch,
  +app-emulation/vmware-modules/files/patches/vmblock/010_all_kernel-2.6.25.
  patch:
  Add patches for building under vmware-modules-1.0.0.*-r1 under 2.6.25.

  23 Apr 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/open-vm-tools-0.0.20080414.87182.ebuild:
  Fix bug 218979, thanks to Brandon Holbrook for pointing this out.

  22 Apr 2008; Mike Auty <ikelos@gentoo.org>
  -app-emulation/open-vm-tools/open-vm-tools-0.0.20080123.74039.ebuild,
  -app-emulation/open-vm-tools/open-vm-tools-0.0.20080319.82724.ebuild,
  +app-emulation/open-vm-tools/open-vm-tools-0.0.20080414.87182.ebuild:
  Version bump open-vm-tools.

  19 Apr 2008; Mike Auty <ikelos@gentoo.org>
  +app-emulation/vmware-modules/files/1.0.0.19-makefile-kernel-dir.patch:
  Fix kernel location for modules 1.0.0.19.

  09 Apr 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-server-console/vmware-server-console-1.0.5.80187.ebui
  ld,
  app-emulation/vmware-workstation/vmware-workstation-6.5.0.84113.ebuild:
  Add fuse as dependency to vmware-workstation-6.5 (bug 217024).

  06 Apr 2008; Mike Auty <ikelos@gentoo.org>
  -app-emulation/open-vm-tools/open-vm-tools-0.0.20080213.77928.ebuild,
  +app-emulation/open-vm-tools/open-vm-tools-0.0.20080319.82724.ebuild:
  Version bump open-vm-tools.

  06 Apr 2008; Mike Auty <ikelos@gentoo.org>
  +app-emulation/vmware-workstation/files/6.5.0.84113/000_all_initd-location
  .patch,
  +app-emulation/vmware-workstation/files/6.5.0.84113/001_all_fix-permission
  s.patch,
  +app-emulation/vmware-workstation/files/6.5.0.84113/002_all_pagebreak-dete
  ction-fix.patch,
  +app-emulation/vmware-workstation/files/6.5.0.84113/004_all_do-not-build-m
  odules.patch,
  +app-emulation/vmware-workstation/files/6.5.0.84113/009_all_init.d-modules
  -warning.patch,
  +app-emulation/vmware-workstation/files/6.5.0.84113/011_all_legit-modules-
  only.patch,
  +app-emulation/vmware-modules/files/1.0.0.19-vsock-kernel-makefile.patch,
  +app-emulation/vmware-workstation/files/6.5.0.84113/007_all_use-modprobe-o
  ver-insmod.patch, eclass/vmware.eclass:
  Push in testing version of vmware-workstation-6.5.

  06 Apr 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/files/open-vm.initd:
  Sync open-vm-tools with tree.

  04 Apr 2008; Chris Gianelloni <wolf31o2@gentoo.org>
  app-emulation/vmware-workstation/vmware-workstation-5.5.6.80404.ebuild:
  We remove libgcc_s.so.1, since it causes us all kinds of fun little problems.

  04 Apr 2008; Chris Gianelloni <wolf31o2@gentoo.org>
  app-emulation/vmware-workstation/vmware-workstation-5.5.6.80404.ebuild:
  Updated 5.5.6 Workstation ebuild.

  30 Mar 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/Manifest:
  Fix open-vm-tools manifest bug 215393.

  29 Mar 2008; Mike Auty <ikelos@gentoo.org>
  +app-emulation/vmware-workstation/files/vmware-player.desktop,
  +app-emulation/vmware-workstation/files/vmware-workstation.desktop:
  Add in patch from bug 123655 and update the server ebuilds.

  22 Mar 2008; Mike Auty <ikelos@gentoo.org|>
  +app-emulation/vmware-player/files/1.0.6.80404/000_all_initd-location.patc
  h,
  +app-emulation/vmware-player/files/1.0.6.80404/001_all_fix-permissions.pat
  ch,
  +app-emulation/vmware-player/files/1.0.6.80404/002_all_pagebreak-detection
  -fix.patch,
  +app-emulation/vmware-player/files/1.0.6.80404/004_all_do-not-build-module
  s.patch,
  +app-emulation/vmware-player/files/1.0.6.80404/009_all_init.d-modules-warn
  ing.patch,
  +app-emulation/vmware-player/files/1.0.6.80404/007_all_use-modprobe-over-i
  nsmod.patch:
  Bump vmware-player-1.0.6.

  16 Mar 2008; Mike Auty <ikelos@gentoo.org>
  +app-emulation/vmware-player/files/2.0.3.80004/000_all_initd-location.patc
  h,
  +app-emulation/vmware-player/files/2.0.3.80004/001_all_fix-permissions.pat
  ch,
  +app-emulation/vmware-player/files/2.0.3.80004/002_all_pagebreak-detection
  -fix.patch,
  +app-emulation/vmware-player/files/2.0.3.80004/004_all_do-not-build-module
  s.patch,
  +app-emulation/vmware-player/files/2.0.3.80004/007_all_use-modprobe-over-i
  nsmod.patch,
  +app-emulation/vmware-player/files/2.0.3.80004/009_all_init.d-modules-warn
  ing.patch,
  +app-emulation/vmware-player/files/2.0.3.80004/011_all_legit-modules-only.
  patch,
  +app-emulation/vmware-workstation/files/6.0.3.80004/000_all_initd-location
  .patch,
  +app-emulation/vmware-workstation/files/6.0.3.80004/001_all_fix-permission
  s.patch,
  +app-emulation/vmware-workstation/files/6.0.3.80004/002_all_pagebreak-dete
  ction-fix.patch,
  +app-emulation/vmware-workstation/files/6.0.3.80004/004_all_do-not-build-m
  odules.patch,
  +app-emulation/vmware-workstation/files/6.0.3.80004/007_all_use-modprobe-o
  ver-insmod.patch,
  +app-emulation/vmware-workstation/files/6.0.3.80004/009_all_init.d-modules
  -warning.patch,
  +app-emulation/vmware-workstation/files/6.0.3.80004/011_all_legit-modules-
  only.patch:
  Bump vmware-workstation and vmware-player.

  21 Feb 2008; Mike Auty <ikelos@gentoo.org>
  +app-emulation/open-vm-tools/open-vm-tools-0.0.20080213.77928.ebuild:
  Bump open-vm-tools, but keep it masked because I haven't been able to test it.

  05 Feb 2008; Mike Auty <ikelos@gentoo.org>
  +app-emulation/open-vm-tools/files/open-vm-tools-as-needed.patch:
  Fix bug #208741.

  30 Jan 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/Manifest:
  Fix manifest.

  30 Jan 2008; Mike Auty <ikelos@gentoo.org>
  -app-emulation/open-vm-tools/files/open-vm-tools-kernel_stdint-soren.patch
  :
  Fix left over patch, remove old version.

  30 Jan 2008; Mike Auty <ikelos@gentoo.org>
  +app-emulation/open-vm-tools/open-vm-tools-0.0.20080123.74039.ebuild:
  Bump open-vm-tools.

  28 Jan 2008; Mike Auty <ikelos@gentoo.org>
  -app-emulation/open-vm-tools/files/open-vm-tools-hardened.patch,
  +app-emulation/open-vm-tools/files/open-vm-tools-kernel_stdint-soren.patch
  :
  Fix open-vm-tools kernel detection and build issues with 2.6.24.

  26 Jan 2008; Mike Auty <ikelos@gentoo.org> eclass/vmware-mod.eclass:
  Fix gtkmm with USE=accessibility requirements in vmware-player.

  12 Jan 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/open-vm-tools-0.0.20071121.64693-r1.ebuild:
  Fix up pam file installation, bug 205087.

  12 Jan 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-modules/files/1.0.0.17-update115-nasty-hack.patch,
  +app-emulation/vmware-modules/files/patches/vmmon/030_all_fix-linux-header
  s.patch, eclass/vmware-mod.eclass:
  Apply the linux header patch to all -r1 ebuilds.
  Remove original 1.0.0.17 ebuild.
  Ensure patches are only applied to -r1 ebuilds.

  09 Jan 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/open-vm-tools-0.0.20071121.64693-r1.ebuild:
  Fix up further ${ROOT} issues pointed out by Jakub.  5;)

  09 Jan 2008; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/open-vm-tools-0.0.20071121.64693-r1.ebuild:
  Fix up $ROOT usage in open-vm-tools.

  06 Jan 2008; Mike Auty <ikelos@gentoo.org>
  +app-emulation/vmware-modules/files/1.0.0.17-kernel-2.6.13-rtnl.patch,
  +app-emulation/vmware-modules/files/1.0.0.17-update115-nasty-hack.patch,
  +app-emulation/vmware-modules/files/patches/vmnet/021_all_wireless_fix.pat
  ch:
  Add in 3 module patches, and put in a temporary hack to build 1.0.0.17 from
  vmware-any-any.

  28 Dec 2007; Mike Auty <ikelos@gentoo.org>
  +app-emulation/open-vm-tools/files/open-vm-tools-hardened.patch:
  Add in hardened patch as an actual fix for bug 200376.

  26 Dec 2007; Mike Auty <ikelos@gentoo.org>
  -app-emulation/open-vm-tools/open-vm-tools-0.0.20070904.56574.ebuild,
  -app-emulation/open-vm-tools/open-vm-tools-0.0.20071008.99999.ebuild,
  -app-emulation/open-vm-tools/open-vm-tools-0.0.20071121.64693.ebuild,
  +app-emulation/open-vm-tools/open-vm-tools-0.0.20071121.64693-r1.ebuild:
  Bump open-vm-tools with eautoreconf to try to fix bug 200376.

  02 Dec 2007; Mike Auty <ikelos@gentoo.org>
  +app-emulation/vmware-server/files/authorization.xml:
  Bump to vmware-any-any-update115.
  Remove need for any-any in server-1,2, workstation-6, player-2.
  Add in initial (but not really usable) vmware server-2 beta.

  26 Nov 2007; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/open-vm-tools-0.0.20071121.64693.ebuild:
  Ensure default scripts are installed and executable.

  25 Nov 2007; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-player/files/vmware-player.rc,
  app-emulation/vmware-server/files/vmware-server.rc,
  app-emulation/vmware-workstation/files/vmware-workstation.rc:
  Synchronize with the main portage tree.

  24 Nov 2007; Mike Auty <ikelos@gentoo.org>
  +app-emulation/open-vm-tools/open-vm-tools-0.0.20071121.64693.ebuild,
  app-emulation/vmware-modules/vmware-modules-1.0.0.17.ebuild:
  Fix the manifests for vmware-any-any-update114, and put in the latest
  open-vm-tools.

  24 Oct 2007; Mike Auty <ikelos@gentoo.org> ++, ++, ++,
  -app-emulation/vmware-player/files/2.0.1.55017/000_all_initd-location.patc
  h,
  -app-emulation/vmware-workstation/files/6.0.1.55017/000_all_initd-location
  .patch, ++,
  -app-emulation/vmware-player/files/2.0.1.55017/001_all_fix-permissions.pat
  ch,
  -app-emulation/vmware-player/files/2.0.1.55017/002_all_pagebreak-detection
  -fix.patch,
  -app-emulation/vmware-player/files/2.0.1.55017/004_all_do-not-build-module
  s.patch,
  -app-emulation/vmware-player/files/2.0.1.55017/007_all_use-modprobe-over-i
  nsmod.patch,
  -app-emulation/vmware-player/files/2.0.1.55017/009_all_init.d-modules-warn
  ing.patch,
  -app-emulation/vmware-player/files/2.0.1.55017/011_all_legit-modules-only.
  patch,
  -app-emulation/vmware-workstation/files/6.0.1.55017/001_all_fix-permission
  s.patch,
  -app-emulation/vmware-workstation/files/6.0.1.55017/002_all_pagebreak-dete
  ction-fix.patch,
  -app-emulation/vmware-workstation/files/6.0.1.55017/004_all_do-not-build-m
  odules.patch,
  -app-emulation/vmware-workstation/files/6.0.1.55017/007_all_use-modprobe-o
  ver-insmod.patch,
  -app-emulation/vmware-workstation/files/6.0.1.55017/009_all_init.d-modules
  -warning.patch,
  -app-emulation/vmware-workstation/files/6.0.1.55017/011_all_legit-modules-
  only.patch, eclass/vmware.eclass:
  Bump vmware-workstation and vmware-player. Also bump vmware-any-any-update
  to 114.

  15 Oct 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  app-emulation/vmware-server/vmware-server-1.0.4.56528.ebuild:
  Typo fix in amd64 check. Thanks to Daniel Robbins <drobbins@funtoo.org> for
  pointing it out.

  12 Oct 2007; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/open-vm-tools-0.0.20071008.99999.ebuild:
  Fix up ebuild breakage.

  12 Oct 2007; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/open-vm-tools-0.0.20071008.99999.ebuild:
  Mask off the broken ebuild.

  12 Oct 2007; Mike Auty <ikelos@gentoo.org>
  -app-emulation/vmware-server-tools/files/1.0.3.44356/000_all_vmware-tools.
  patch,
  -app-emulation/vmware-server-tools/files/patches/000_all_makefile-include-
  directory.patch,
  -app-emulation/vmware-server-tools/files/patches/vmdesched/001_all_kernel-
  2.6.19-syscall.patch,
  -app-emulation/vmware-server-tools/files/patches/vmhgfs/000_all_driver-get
  _sb_nodev.patch,
  -app-emulation/vmware-server-tools/files/patches/vmhgfs/001_all_kernel-2.6
  .19-mount.patch,
  -app-emulation/vmware-server-tools/files/vmware-server-tools.rc,
  -app-emulation/vmware-server-tools/metadata.xml:
  Remove the obsolete vmware-server-tools. People should try out open-vm-tools
  instead.

  12 Oct 2007; Mike Auty <ikelos@gentoo.org> +manifest1_obsolete:
  Get rid of those pesky digest- files.

  12 Oct 2007; Mike Auty <ikelos@gentoo.org> ++:
  Initial commit of 2007-10-08-SNAPSHOT for open-vm-tools.

  06 Oct 2007; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-server-console/vmware-server-console-1.0.4.56528.ebui
  ld:
  Ensure vmware-server-console installs a vmware group.

  28 Sep 2007; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/files/open-vm.initd:
  Fix bad test syntax.

  28 Sep 2007; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/open-vm-tools-0.0.20070904.56574.ebuild:
  Fix up digest and post-install information.

  23 Sep 2007; Mike Auty <ikelos@gentoo.org>
  +app-emulation/open-vm-tools/files/open-vm.confd,
  app-emulation/open-vm-tools/files/open-vm.initd, eclass/vmware.eclass:
  Add cleanup comments only when product is completely removed. Also allow
  disabling of DnD in open-vm-tools.

  20 Sep 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  +app-emulation/vmware-player/files/1.0.5.56455/000_all_initd-location.patc
  h,
  +app-emulation/vmware-player/files/1.0.5.56455/001_all_fix-permissions.pat
  ch,
  +app-emulation/vmware-player/files/1.0.5.56455/002_all_pagebreak-detection
  -fix.patch,
  +app-emulation/vmware-player/files/1.0.5.56455/004_all_do-not-build-module
  s.patch,
  +app-emulation/vmware-player/files/1.0.5.56455/007_all_use-modprobe-over-i
  nsmod.patch,
  +app-emulation/vmware-workstation/files/5.5.5.56455/000_all_initd-location
  .patch,
  +app-emulation/vmware-workstation/files/5.5.5.56455/001_all_fix-permission
  s.patch,
  +app-emulation/vmware-player/files/1.0.5.56455/009_all_init.d-modules-warn
  ing.patch,
  +app-emulation/vmware-workstation/files/5.5.5.56455/002_all_pagebreak-dete
  ction-fix.patch,
  +app-emulation/vmware-workstation/files/5.5.5.56455/004_all_do-not-build-m
  odules.patch,
  +app-emulation/vmware-workstation/files/5.5.5.56455/007_all_use-modprobe-o
  ver-insmod.patch,
  +app-emulation/vmware-workstation/files/5.5.5.56455/009_all_init.d-modules
  -warning.patch, -app-emulation/vmware-workstation/metadata.xml:
  Added a new version of VMware Workstation 5.5 and VMware Player 1.0 for
  testing.

  19 Sep 2007; Mike Auty <ikelos@gentoo.org>
  -app-emulation/vmware-modules/files/1.0.0.16-kernel-2.6.22.patch :
  Version bump vmware-modules because vmware changed it, yet again.

  19 Sep 2007; Mike Auty <ikelos@gentoo.org>
  +app-emulation/vmware-player/files/2.0.1.55017/011_all_legit-modules-only.
  patch:
  Fix up extra check in vmware-config.pl

  19 Sep 2007; Mike Auty <ikelos@gentoo.org>
  +app-emulation/vmware-workstation/files/6.0.1.55017/011_all_legit-modules-
  only.patch:
  Fix up extra check in vmware-config.pl.

  19 Sep 2007; Mike Auty <ikelos@gentoo.org> ++, ++,
  -app-emulation/vmware-workstation/files/6.0.0.45731/000_all_initd-location
  .patch,
  -app-emulation/vmware-workstation/files/6.0.0.45731/001_all_fix-permission
  s.patch,
  -app-emulation/vmware-workstation/files/6.0.0.45731/002_all_pagebreak-dete
  ction-fix.patch,
  -app-emulation/vmware-workstation/files/6.0.0.45731/004_all_do-not-build-m
  odules.patch,
  -app-emulation/vmware-workstation/files/6.0.0.45731/007_all_use-modprobe-o
  ver-insmod.patch, ++,
  -app-emulation/vmware-workstation/files/6.0.0.45731/009_all_init.d-modules
  -warning.patch:
  Version bump vmware-workstation-6.

  19 Sep 2007; Mike Auty <ikelos@gentoo.org>
  -app-emulation/vmware-player/files/2.0.0.45731/000_all_initd-location.patc
  h,
  -app-emulation/vmware-player/files/2.0.0.45731/001_all_fix-permissions.pat
  ch,
  -app-emulation/vmware-player/files/2.0.0.45731/002_all_pagebreak-detection
  -fix.patch,
  -app-emulation/vmware-player/files/2.0.0.45731/004_all_do-not-build-module
  s.patch,
  -app-emulation/vmware-player/files/2.0.0.45731/007_all_use-modprobe-over-i
  nsmod.patch,
  -app-emulation/vmware-player/files/2.0.0.45731/009_all_init.d-modules-warn
  ing.patch, app-emulation/vmware-player/files/vmware-player.rc:
  Version bump vmware-player.

  19 Sep 2007; Mike Auty <ikelos@gentoo.org> :
  Version bump vmware-server and vmware-server-console.

  18 Sep 2007; Mike Auty <ikelos@gentoo.org>
  app-emulation/vmware-server/files/vmware-server.rc,
  app-emulation/vmware-workstation/files/vmware-workstation.rc:
  Make some changes to the rc files to be more POSIX compliant. Also added
  support to vmware-workstation for Drag and Drop into the host.

  18 Sep 2007; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/files/open-vm.initd:
  Fix the order of creating the DnD directory and mount the vmblock filesystem.

  18 Sep 2007; Mike Auty <ikelos@gentoo.org> +x11-libs/libview/metadata.xml,
  +x11-libs/libview/files/libview-0.5.6-pcfix.patch,
  eclass/vmware-mod.eclass:
  Add in libview-0.6.0. Change vmware-mod and modules-1.0.0.16-r1 to build the
  vmblock module for Drag and Drop support.

  17 Sep 2007; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/open-vm-tools-0.0.20070904.56574.ebuild:
  Fix up open-vm-tools to install libguestlib.so and .a

  17 Sep 2007; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/files/open-vm.initd, eclass/vmware.eclass,
  eclass/vmware-mod.eclass:
  Some fixes and changes from Elias Probst.

  17 Sep 2007; Mike Auty <ikelos@gentoo.org>
  app-emulation/open-vm-tools/files/open-vm.initd:
  Make extra changes to open-vm.initd

  16 Sep 2007; Mike Auty <ikelos@gentoo.org>:
  Synchronizing with the main tree.
  
  16 Sep 2007; Mike Auty <ikelos@gentoo.org>:
  Initial commit of open-vm-tools for all gentoo guests.
  Huge thanks to Elias Probst for contributing this ebuild.

  05 Sep 2007; Mike Auty <ikelos@gentoo.org>:
  Changed vmware-modules-1.0.0.16 to use vmware-any-any.

  22 Aug 2007; Chris Gianelloni <wolf31o2@gentoo.org> eclass/vmware.eclass:
  Add debug version of vmware/vmware-vmx to pax allow list.

  22 Aug 2007; Chris Gianelloni <wolf31o2@gentoo.org> eclass/vmware.eclass,
  eclass/vmware-mod.eclass:
  Moved the creation of the vmware group from the product ebuilds to the
  modules ebuilds. Closing bug #188642.

  15 Aug 2007; Mike Auty <ikelos@gentoo.org>:
  Bump to any-any-113, fix for gcc-3.x.

  31 Jul 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  app-emulation/vmware-workstation/vmware-workstation-6.0.0.45731.ebuild:
  Typo fix.

  28 Jul 2007; Mike Auty <ikelos@gentoo.org>:
  Big re-sync with the main tree.
  Hopefully baselayout-2 rc's are still here, but not in the tree.
  Also added a minor fix for bug 178562.
  
  26 Jul 2007; Mike Auty <ikelos@gentoo.org>:
  Bumped any-any *again*, let's hope this one works.

  22 Jul 2007; Mike Auty <ikelos@gentoo.org>:
  Updated the any-any mirror location in vmware-mod.eclass.
  Also bumped to vmware-any-any-update111 which should cure compilation issues on post 2.6.21.

  18 Jul 2007; Mike Auty <ikelos@gentoo.org>:
  Redigested a lot of the overlay ebuilds, something funny digest-wise has been going on recently...

  13 Jul 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  app-emulation/vmware-workstation-tools/vmware-workstation-tools-4.5.3-r1.e
  build:
  Added another mirror.

  13 Jul 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  app-emulation/vmware-workstation/vmware-workstation-6.0.0.45731.ebuild:
  Added another mirror.

  13 Jul 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  app-emulation/vmware-server/vmware-server-1.0.3.44356.ebuild:
  Added another mirror.

  13 Jul 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  app-emulation/vmware-player/vmware-player-2.0.0.45731.ebuild:
  Added another mirror.

  13 Jul 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  -app-emulation/vmware-esx-tools/vmware-esx-tools-3.0.1.ebuild,
  -app-emulation/vmware-esx-tools/files/vmware-esx-tools:
  Removing older version of the vmware-esx-tools ebuild.

  11 Jul 2007; Mike Auty <ikelos@gentoo.org>:
  Bump to vmware-any-any-update110.
  Add patch for 2.6.22 to 1.0.0.16 (110 should take care of <1.0.0.16).
  Revert bash changes, to allow vmware to start with baselayout-2/dash.
  Try to fix up vmware-workstation-tools for version 6.

  08 Jul 2007; Mike Auty <ikelos@gentoo.org>:
  Attempt to get vmware-any-any-update fetched from the gentoo mirrors, even with fetch restrictions.
  Also ensure fetch restrictions message is correct.

  21 Jun 2007; Mike Auty <ikelos@gentoo.org>:
  Added fetch restrictions to workstation-6.
  Change the icon installation also.
  
  20 Jun 2007; Mike Auty <ikelos@gentoo.org>:
  Removed old expired vmware-workstations.
  Added new vmware-workstation ebuild.

  26 May 2007; Mike Auty <ikelos@gentoo.org>:
  Update vmware-modules-1.0.0.16 and for the new vmware-player-2.0 which was also added.
  Fixed up amd64 PAM settings in vmware-server hopefully.

  08 May 2007; Mike Auty <ikelos@gentoo.org>:
  Fix up update-modules in postinst.
  
  08 May 2007; Mike Auty <ikelos@gentoo.org>:
  Add in a patch for server-tools on >=2.6.20.

  07 May 2007; Mike Auty <ikelos@gentoo.org>:
  Cleanup and resync vmware-server ebuilds with tree.
  
  29 Apr 2007; Mike Auty <ikelos@gentoo.org>:
  Eagle eyed Percy Jahn spotted the typo in vmware-mod.eclass,
  which is now fixed.
  
  29 Apr 2007; Mike Auty <ikelos@gentoo.org>:
  Forgot to bump vmware server console at the same time.
  
  28 Apr 2007; Mike Auty <ikelos@gentoo.org>:
  Version bump vmware server 1.0.3.44356.
  Fixed up vmware-workstation-6 ebuild to support native amd64.
  
  23 Apr 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  app-emulation/vmware-workstation/files/vmware-workstation.rc:
  Added use hald to vmware-workstation init script due to bug #155450.

  22 Apr 2007; Mike Auty <ikelos@gentoo.org>:
  Version bumped vmware workstation 6.0.0.44426.
  Problems still existing with the beta:
  	Using gnome-2.18.0 seems to be missing a symbol.
	Using baselayout-2 the config trying to stop a stopped service fails.
	The application icons don't install/work properly.
  
  18 Apr 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  app-emulation/vmware-workstation/vmware-workstation-6.0.0.36983.ebuild:
  Changed x11-libs/libsexymm to dev-cpp/libsexymm to match what's in the tree.
  Thanks to Bo Ørsted Andresen <bo.andresen@zlin.dk> for pointing it out.

  16 Apr 2007; Mike Auty <ikelos@gentoo.org>:
  Change the init script to start vmware-tools rather than vmware.
  
  15 Apr 2007; Mike Auty <ikelos@gentoo.org>:
  Version bump to 1.0.0.15 and remove patch Spanky added a while ago.

  11 Apr 2007; Mike Auty <ikelos@gentoo.org>:
  Fix up a naming issue when bash is called as sh for baselayout-2.
  
  09 Apr 2007; Mike Auty <ikelos@gentoo.org>:
  Fix up misconfiguration warning when stopping vmware-server
  whilst a server is still running.  Bug 173752.
  
  09 Apr 2007; Mike Auty <ikelos@gentoo.org>:
  Sync changes in the tree back into the overlay.
  
  09 Apr 2007; Mike Auty <ikelos@gentoo.org>:
  Fix up vmware-server-tools configs:
    Only build vmxnet vmdesched for server-tools
    Only build vmdesched if not on amd64
    Comment out all the module compilation problems
    Use modprobe to add the required modules

  01 Apr 2007; Mike Auty <ikelos@gentoo.org>:
  Add in vmware-server-tools initd script and block on
  vmware-workstation-tools.
  
  31 Mar 2007; Mike Auty <ikelos@gentoo.org>:
  Attempt to allow vmware-server-tools to compile under amd64.
  
  26 Mar 2007; Mike Auty <ikelos@gentoo.org>:
  Fix the location of BUILD_TARGETS so that all the variables are
  correctly initialized.  Bug 172337, thanks Georgi.
  
  26 Mar 2007; Mike Auty <ikelos@gentoo.org>:
  Removed ~amd64 support from vmware-server-tools after a
  report of compilation failure.
  
  04 Mar 2007; Mike Auty <ikelos@gentoo.org>:
  Fixed up vmware-server-tools-1.0.2 to work with both 2.6.18 and 2.6.19
  using a patch courtesy from Aaron Gipson.

  03 Mar 2007; Mike Auty <ikelos@gentoo.org>:
  Version bump to 1.0.2.39867.
  
  23 Feb 2007; Mike Auty <ikelos@gentoo.org>:
  Fix up the dates in this changelog, 5;)
  and also bump to any-any108.
  
  31 Jan 2007; Mike Auty <ikelos@gentoo.org>:
  Sync the server ebuild with the tree, and bump to any-any107.
  
  05 Jan 2007; Mike Auty <ikelos@gentoo.org>:
  Update the server and eclass einfo/elog statements in line with the 
  portage ebuilds.
  
  30 Dec 2006; Mike Auty <ikelos@gentoo.org>:
  Removed a -f from the modprobe-over-insmod patch for server.
  Leaving this to test for a little while, if there's no complaints
  it'll get pushed out to the masses (not sure whether to revbump).

  28 Dec 2006; Mike Auty <ikelos@gentoo.org>:
  Right, just added in the beta for workstation 6.  It's *very* experimental,
  as in, we won't support it at all, hence why it's -* keyword masked.

  Things that currently go wrong with it:

  * /opt/vmware/workstation/lib/bin-debug/* don't get the correct suid
  permissions. Not too much of a problem, since the debugging builds run quite
  slowly, either fix the permissions or remove the directory and symlink
  ../lib/bin to .../lib/bin-debug.
  * vmware seemed to just fail spontaneously when I started it on the latest
  gnome ~x86, but it starts ok (if looking a little ugly) when run as
  "VMWARE_USE_SHIPPED_GTK=force vmware"
  * A couple of extra dependencies were needed (simply because they didn't match
  up properly) so I've added libview and libsexymm which weren't already on my
  system.  These may not be necessary, it depends if we want to use all system 
  libs or are happy mixing and matching.
  * Some of the patches changed because of the addition of the vmblock module,
  so whilst the module builds, I'm uncertain if there's any additional
  configuration needed for the driver itself.  Gonna have to dive back into
  the perl for that.

  The good news is it seems to run quite quickly, and supports USB 2.0! 5:)

  15 Dec 2006; Mike Auty <ikelos@gentoo.org> 
  app-emulation/vmware-server/vmware-server-1.0.1.29996-r4.ebuild,
  app-emulation/vmware-server-tools/vmware-server-tools-1.0.1.29996.ebuild, 
  app-eumalation/vmware-workstation-tools/vmware-workstation-tools-4.5.3-r1.ebuild:
  Fixed a typo from obselete to obsolete (fixes bug 158134).

  09 Dec 2006; Mike Auty <ikelos@gentoo.org> eclass/vmware.eclass:
  Added in code to remove the PAX MPROTECT restrciction on certain vmware
  binaries.  Should fix bug #157602.

  01 Dec 2006; Mike Auty <ikelos@gentoo.org> eclass/vmware.eclass:
  Fix regression where we slipped back to any-any104, from 105 (which fixes
  2.6.19 build issues).  Going to push this change to the main tree this
  weekend.

  29 Nov 2006; Chris Gianelloni <wolf31o2@gentoo.org> eclass/vmware.eclass:
  Fixed bug #156387 with a sync from the tree.

  22 Nov 2006; Chris Gianelloni <wolf31o2@gentoo.org> eclass/vmware.eclass:
  Make sure we only unpack the openssl stuff if it is listed in SRC_URI, not
  if it exists in DISTDIR. We also only remove the openssl stuff if we have
  newer versions in S.

  21 Nov 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  app-emulation/vmware-workstation-tools/vmware-workstation-tools-4.5.3-r1.e
  build,
  app-emulation/vmware-workstation-tools/vmware-workstation-tools-5.5.1-r2.e
  build,
  app-emulation/vmware-workstation-tools/vmware-workstation-tools-5.5.2.ebui
  ld,
  app-emulation/vmware-workstation-tools/vmware-workstation-tools-5.5.3.ebui
  ld:
  Added ANY_ANY to all of the vmware-workstation-tools ebuilds, so we don't
  unpack it, since they aren't listed in SRC_URI.

  21 Nov 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  app-emulation/vmware-esx-tools/vmware-esx-tools-3.0.1-r1.ebuild:
  Added ANY_ANY so we don't pull down the files, and changed dir to
  /opt/vmware/esx/tools instead of /opt/vmware/tools.

  21 Nov 2006; Chris Gianelloni <wolf31o2@gentoo.org> eclass/vmware.eclass:
  Moved CD fetching to src_unpack, so binary packages don't need the CD.

  21 Nov 2006; Chris Gianelloni <wolf31o2@gentoo.org> eclass/vmware.eclass:
  OK, unpack doesn't like absolute paths.

  21 Nov 2006; Chris Gianelloni <wolf31o2@gentoo.org> eclass/vmware.eclass:
  Yeah, should be CDROM_ROOT, not CD_ROOT.

  21 Nov 2006; Chris Gianelloni <wolf31o2@gentoo.org> eclass/vmware.eclass:
  Made sure we check the CD for MY_P.tar.gz when doing our unpack.

  21 Nov 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  app-emulation/vmware-esx-tools/vmware-esx-tools-3.0.1-r1.ebuild:
  Made sure we keep both sbin and bin for vmware-esx-tools.

  21 Nov 2006; Chris Gianelloni <wolf31o2@gentoo.org> ++,
  -app-emulation/vmware-workstation-tools/metadata.xml:
  Renamed 5.5.3 vmware-workstation-tools ebuild to match the other ebuilds.

  20 Nov 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  +app-emulation/vmware-workstation-tools/files/5.5.3/000_all_initd-scripts.
  patch:
  Added new 5.5.3 version of vmware-workstation-tools.

  18 Nov 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Did some work on the vmware-server-tools ebuild, inspired by Chris.
  It now builds the modules and installs the revelant files automatically.
  TODO: Comment out the module building from the config script.
  TODO: Fix some of the inconsistencies between /opt/vmware/tools and
        /opt/vmware/server/tools usage.

  17 Nov 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  app-emulation/vmware-esx-tools/vmware-esx-tools-3.0.1.ebuild,
  +app-emulation/vmware-esx-tools/vmware-esx-tools-3.0.1-r1.ebuild:
  Added a new revision of the ESX tools, which should work with the new
  eclass. I have not tested it yet, but will do so next week if someone else
  hasn't let me know that it works by then.

  16 Nov 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  +app-emulation/vmware-workstation-tools/files/5.5.2/000_all_initd-scripts.
  patch:
  Added the 5.5.2 directory to vmware-workstation-tools, so it'll patch
  correctly.

  16 Nov 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  +app-emulation/vmware-esx-tools/files/90vmware-tools,
  +app-emulation/vmware-esx-tools/files/vmware-esx-tools,
  +app-emulation/vmware-esx-tools/files/vmware-esx-tools.rc,
  +app-emulation/vmware-esx-tools/files/xorg.conf,
  +app-emulation/vmware-esx-tools/metadata.xml:
  Initial import of ESX tools. This should work, but requires some manual
  intervention. Before running the vmware-config-tools.pl, you need to rmmod
  pcnet32. You will also need to rm /etc/vmware-tools/not_configured and
  /etc/init.d/vmware-tools start afterwards. I will be working on making sure
  this works with the eclass soon enough with a -r1 revision. Feel free to use
  this now, using the above instructions.

  16 Nov 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -app-emulation/vmware-workstation-tools/vmware-workstation-tools-5.5.1-r1.
  ebuild,
  app-emulation/vmware-workstation-tools/vmware-workstation-tools-5.5.1-r2.e
  build,
  +app-emulation/vmware-workstation-tools/vmware-workstation-tools-5.5.2.ebu
  ild:
  Added vmware-workstation-tools-5.5.2 and removed the -r1 ebuild for 5.5.1.

  15 Nov 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Brought the overlay back in sync with the main tree for vmware-modules and
  vmware-server{-console}.
  Also updated to vmware-any-any105 for testing.

  30 Oct 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  -app-emulation/vmware-modules/vmware-modules-1.0.0.8.ebuild:
  Removed vmware-modules-0.0.8 since we no longer support VMware Workstation
  3.2.1 in the main tree.

  17 Oct 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  I just realized the typo was causing vmware-any-any not to build with server.
  Out goes the huge 100 Mb download, it should all work fine now, sorry.  5:(
  
  17 Oct 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Fix a typo in vmware-mod before it gets in the tree.
  Also clean up some whitespace errors.

  04 Oct 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Reorder VMWARE_VER to ensure it gets picked up in time.
  Fix for bug 149679 thanks to Jason Urbank.

  04 Oct 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Synced up the vmware.eclass from the overlay and fixed up a directory/file mismatch.

  03 Oct 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Hope this openssl problem can finally be done with.
  Thanks Chris for getting the libraries built and done so quickly!!!  5:)
  
  02 Oct 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Oops, very quick fix for vmware-server-console to actually unpack the new openssl lib
  (since we don't inherit the unpack of vmware.eclass).  Hopefully got it out in time...
  
  02 Oct 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Sync vmware.eclass, vmware-server and vmware-server-console with the in-tree version.
  
  02 Oct 2006; Chris Gianelloni <wolf31o2@gentoo.org> ChangeLog:
  Updated eclass with the in-tree version for bug #148862.

  27 Sep 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Update vmware-server{,-console}'s dbus restrictions and bump to ensure security fix.

  27 Sep 2006; Chris Gianelloni <wolf31o2@gentoo.org> ChangeLog:
  Sync vmware.eclass with the in-tree version due to bug #148682.

  27 Sep 2006; Chris Gianelloni <wolf31o2@gentoo.org> ChangeLog:
  Updated vmware.eclass and vmware-mods.eclass from portage.

  22 Sep 2006; Chris Gianelloni <wolf31o2@gentoo.org> ChangeLog:
  We should be setting MY_P if we expect our tarball to be unpacked.  Ooops...

  22 Sep 2006; Chris Gianelloni <wolf31o2@gentoo.org> ChangeLog:
  Manifest/digest fix.

  21 Sep 2006; Chris Gianelloni <wolf31o2@gentoo.org> ChangeLog:
  Sync vmware.eclass with the in-tree version and fix the variables in
  vmware-workstation-tools.

  13 Sep 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Since I think the patch is probably only relevant to gcc-4.1, I've moved it
  out of the patch directory and applied it directly if the gcc version matches.
  I'm going to leave the eclass changes in place (but only in the overlay),
  since they'll probably be handy in the future...

  03 Sep 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Added an experimental patch vmware-modules-1.0.0.15 in an attempt to fix bug
  146004.

  17 Aug 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Version bump vmware-server-1.0.1.29996.
  Version bump vmware.eclass to use vmware-any-any104.

  11 Aug 2006; Chris Gianelloni <wolf31o2@gentoo.org> ChangeLog:
  Sync eclass with portage tree.  See bug #137423 for more information.

  09 Aug 2006; Chris Gianelloni <wolf31o2@gentoo.org> ChangeLog:
  Removed vmware-player, since it has been moved to the tree.

  08 Aug 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Try to keep the main tree and overlay synched, by copying over the minor
  edits in vmware.eclass

  05 Aug 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Added a fix from bug 142855 for issues arising if KBUILD_OUTPUT is set.
  
  04 Aug 2006; Chris Gianelloni <wolf31o2@gentoo.org> ChangeLog:
  Added a new revision of vmware-player and vmware-workstation-tools (5.5) for
  testing.  The new revisions of both fully utilize the vmware eclass, so they
  should end up much easier to maintain in the future.  They have not been
  tested, but looking at what they are actually doing, they should work
  perfectly, since support for all of their code was already in the eclass.

  04 Aug 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Updated the patch for vmware-modules to use any kernel path, rather than
  just /usr/src/linux, with a new patch courtesy of Alon Bar-Lev
  (see bug 137422).
  
  31 Jul 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Fixing up quoting issues in the eclasses.  Might have gone overboard in
  the vmware.eclass, but at least it won't sting us in the tail if we 
  add a space in later for any reason...
  
  28 Jul 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Fixing up quoting issues in the eclasses, kindly pointed out by phreak``.
  
  27 Jul 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Fix up basic repoman failings, in preparation for merging with the main tree...
  
  17 Jul 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Thanks to the eagle eyes of Cardoe, we now have a dependency in the vmware
  eclass for the update-mime-info tool.  That should get inheritted automatically
  by every ebuild, so this should fix it for all our packages.
  
  14 Jul 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Fixed up the LONGNAME/SHORTNAME issue when using the vmware-any-any init
  script.  Also added patch 009 to the workstation-4.5 patchset.
  
  14 Jul 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Added patch 009 to the latest versions of player, workstation and server.
  This patch changes the "not configured" error message of the init script.
  
  14 Jul 2006; Mike Auty <ikelos@gentoo.org> ChangeLog:
  Fixed up three broken manifests...

  13 Jul 2006; Chris Gianelloni <wolf31o2@gentoo.org> ChangeLog:
  This is another fairly large update from me, but it is mostly clean-up stuff.
  
  * Removed old and unused vmware-pkg.eclass
  * Removed older "test" functions from vmware.eclass for the modules builds
  * Changed not-vmware_src_install to vmware_src_install and exported it
  * Added vmware-workstation-tools-5.5.1-r1 ebuild
  * Renamed vmware-workstation-tools-4.5.3 ebuild to
  vmware-workstation-tools-4.5.3-r1 so it is an "upgrade" for users
  * Removed vmware-workstation-5.5.1.19175-r6
  * Cleaned older vmware-server and vmware-server-console ebuilds
  * Cleaned older vmware-player ebuilds
  * Made sure everything has ~amd64 ~x86 KEYWORDS, except Workstation 3.x
  * Made sure all digests were correct for packages I touched
  
  This is the preliminary clean-up for possible tree inclusion.  Hopefully,
  there won't be much editing required, if any, for this stuff to start making
  its way into the portage tree.

  12 Jul 2006; Mike Auty <ikelos@gentoo.org>:
  Still UNUSABLE attempt at a vmware-server-tools ebuild.  It's currently
  descended from vmware-mod.eclass, and does all the installation stuff itself.
  It currently needs the vmware.eclass too, but I'm hoping to move that need
  out of there, and then maybe remove those bits in vmware.eclass that were
  expecting the tools to be a part of it.

  I decided to have just a single ebuild for each of the tools and have the
  modules done as part of that, because of determining the location of the
  source files.  Rather than downloading them, I am actually trying to get them
  live from the cd-rom.  Issues with this are if the bits that need installing
  are different for different versions, and if the number of ebuilds necessary
  grows too much.

  Still, hopefully we'll have something going soon, we can remove the remaining
  installation bits off to vmware.eclass or something, and then it should all
  be good to go...  5:)
  
  12 Jul 2006; Mike Auty <ikelos@gentoo.org>:
  Pushing out build 1.0.0.28343, which seems to be the final Vmware-server!
  YAY!  5:)
  
  08 Jul 2006; Mike Auty <ikelos@gentoo.ogr>:
  Re-arranged the vmware-mod.eclass.  It looks like it should be able to handle 
  the various modules for the vmware-*-tools.  The problem is that since we
  don't have a nice vmware-any-any package for the tool modules, we can't just
  use an environment variable and a single source package.  So how do we go
  about unpacking it from the provided tarball, if the main package is built
  elsewhere?  Do we require the file for both programs?  Do we augment the
  vmware-tools-modules to require the install file, and if so, how do we know
  which version we installed?
  Ideas on a postcard to...  5:)
  
  08 Jul 2006; Mike Auty <ikelos@gentoo.org>:
  First attempt at a vmware-server-tools package, based on a user submitted
  ebuild (thanks to Anthony Red in bug 122670) and the vmware-workstation-tools
  ebuild. There are likely to be a lot of changes to it, whilst I work out what
  it does, during that time I'd suggest NOT using it...  5:)

  02 Jul 2006; Mike Auty <ikelos@gentoo.org>:
  Fixed a mistake in the vmware-mod.eclass, where I'd left out the EPATCH_SUFFIX.
  It didn't show itself because I was always building the modules for the running
  kernel.  And that why you have other people bugtest for you...  5:)
  
  29 Jun 2006; Mike Auty <ikelos@gentoo.org>:
  Added the required files for the vmware-overlay to work as a Paludis
  overlay.  Make note: new files are one thing, deviations that will break
  the ebuild with portage are another...  5:)
  
  27 Jun 2006; Mike Auty <ikelos@gentoo.org>:
  Changed the vmware-server ebuild to make use of ${config_dir}.
  It should also now start applying the amd64 pam.d patch correctly again.
  
  27 Jun 2006; Mike Auty <ikelos@gentoo.org>:
  Finally remove the old vmware-modules-101 ebuild, since it's not
  required by any packages in the tree anymore.  I hope to remove the
  vmware-pkg.eclass soon (I can't even remember which version of server
  made use of it, but if that ever gets unmerged, vmware-pkg still needs
  to be there).

  Once all that's done, we should probably move not-vmware-src-install
  over to vmware-src-install (and alias not-vmware-src-install to avoid
  breakages).  After that, there's a few fix-ups (symlinks, desktop icons)
  that need doing.  We're getting closer though, so it might be time
  to start adding ~x86 to some of the workstation/player builds, to get
  some people testing them... 5:)
  
  25 Jun 2006; Mike Auty <ikelos@gentoo.org>:
  Pushed out the latest builds for vmware-server/server-console (27828).
  
  23 Jun 2006; Mike Auty <ikelos@gentoo.org>:
  Altered the vmware.eclass to create a VMWARE_GROUP for console products too.

  19 Jun 2006; Mike Auty <ikelos@gentoo.org>:
  Comment out a line in the eclass that was breaking vmware-server when
  compiled with FEATURES="userpriv".  It seemed to reset all the permissions
  including the set-UID bit.  It was only included to avoid permission
  warnings with vmware-workstation.  If the warnings start again, we'll
  try and figure out another workaround.
  
  19 Jun 2006; Mike Auty <ikelos@gentoo.org>:
  Refactored several bits of the vmware.eclass based on the inconsistent naming
  scheme used by vmware-server-console to locate it's configuration info.

  I also finished off converting vmware-server over to the vmware.eclass
  and pushed vmware-server-console over to it too.  Hopefully we're nearly there
  now...  5:)
  
  16 Jun 2006; Mike Auty <ikelos@gentoo.org>:
  Ok, just double checked/lined up the vmware-module version numbers
  with the packages building against them.
  
  16 Jun 2006; Mike Auty <ikelos@gentoo.org>:
  Just a couple quick changes.
  I modified the vmware-player-1.0.x-r5 ebuild, just a bit of cleaning up.
  I also fixed a tiny typo in the vmware.eclass.

  vmware-player now seems to be a go with the new modules on ~x86 (although I've
  left it masked).

  14 Jun 2006; Chris Gianelloni <wolf31o2@gentoo.org>:
  Well, I've done quite a few changes.
  
  - Ported all of the remaining code from src_install in vmware-workstation to
  vmware.eclass
  - Ported vmware-workstation 3.x and 4.x to vmware-modules and the
  vmware.eclass
  - Removed all older versions/revisions that are currently in the portage tree,
  as they're unnecessary
  - Marked the new 5.5 version of vmware-workstation as ~amd64 and ~x86 as it
  has now been tested and appears to work just fine

  13 Jun 2006; Mike Auty <ikeloes@gentoo.org>:
  Also today, I removed the last few svn:keywords that meant I had to keep
  recalculating the manifests.  Handy though they might have been, it's easier
  to do revbumps to differentiate the versions, than it is to manually keep 
  redoing those manifests and checking them back in again...
  
  13 Jun 2006; Mike Auty <ikelos@gentoo.org>:
  Added revision bumps for vmware-player-1 and vmware-workstation-5.5, to use
  the new style vmware-modules ebuilds.  These haven't been tested at all, but
  are also keyworded "-*" so shouldn't cause any problems.  I've also added 
  the required ebuilds for when vmware-workstations-{3,4} get given the 
  vmware.eclass treatment.

  Let me just reiterate that these ebuilds are *extremely* untested, not just
  the normal untested you're used to...  5;)

  07 Jun 2006; Mike Auty <ikelos@gentoo.org>:
  Added a vmware-mod.eclass, and associated vmware-modules-1.0.0.15.ebuild for
  vmware-server-1.0.0.24927.  As soon as an any-any update comes out that
  supports this version, the ebuild will be altered to use that instead.
  
  In the meantime, I've published a small tar file containing the sources from
  the vmware-server release itself.  Hopefully this won't happen very often. 
  I've also added a vmware-modules-1.0.0.14.ebuild, which I'll eventually move 
  the older vmware-server build over to (even though that'll expire soon), just
  so you can see how it's supposed to work...  5:)

  Also updated the vmware-server-console package to build 24927 too.  I need to
  rework the 24927 ebuild PATCHES variable, so I don't need two copies of patches
  floating around for the two versions in portage...

  01 Jun 2006; Chris Gianelloni <wolf31o2@gentoo.org> ChangeLog:
  Restored older (working) vmware-workstation and vmware-player ebuilds. I also
  masked the newer revisions of the ebuilds for both until I can get everything
  into the eclass like I want.  They ebuilds *shold* work, but I make no
  guarantees.
  
  Some other changes:
  
  * Removed erroneous DEPEND from vmware-workstation-tools
  * Updated eclass to work with either a patch directory or the PATCHES variable
  * Started on src_install for the eclass
  * fixed a few typos here and there
  * Added lots more comments to the eclass

  28 May 2006; Mike Auty <ikelos@gentoo.org> :
  Ok, a lot of changes this time round:

  * vmware-player converted to use vmware.eclass
  * workstation/player converted to use vmware-modules
  * udev rule creation moved to vmware-modules
  * eclass modified to work with patch directories
  * dhcpd.conf location fix added to vmware-server
  * vmware-server converted to use vmware_src-unpack
  * player/workstaton added a patch to use modprobe over insmod

  I've tested the latest player/server ebuilds on x86.
  Workstation installed fine, but without a license was hard to test.  5:)
  I didn't want to mess with the any_any patching for the testing, so if 
  that's required we'll have to add the any_any source back into SRC_URI,
  and remove the ANY_ANY="" lines.  Note there may still be some ${product}
  changes needed in the vmware-player ebuild too.

  19 May 2006; Chris Gianelloni <wolf31o2@gentoo.org> :
  I know that this is the first version of the ChangeLog, even though we have
  already been committing, but I figured I would add this here to keep things
  in order and so that people know what is going on with the overlay. I just
  made some modifications to the vmware.eclass to give it support for
  pkg_setup, src_unpack, pkg_preinst, and pkg_postinst. I also created a new
  vmware-server revision, but since I haven't tested it yet, I have it marked
  as -* so nobody gets it by accident and blames ikelos. The
  vmware-workstation ebuild for 5.5.1 has been updated, and *should* work, but
  I make no guarantees. I plan on slowly updating everything as time permits,
  and will also be adding more functionality to the eclass. I'm really trying
  to put the brunt of all the code from all of the packages into the eclass,
  since they are all so similar. Anyway, enough of my ranting. Enjoy.