summaryrefslogtreecommitdiff
blob: 9a50832459b36e6d058449d3fbf77c8e32c6e407 (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
# ChangeLog for profiles/prefix
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/ChangeLog,v 1.192 2010/07/26 20:55:21 grobian Exp $

  26 Jul 2010; Fabian Groffen <grobian@gentoo.org> darwin/make.defaults:
  Add -dead_strip_dylibs to LDFLAGS on Darwin (equivalent of --as-needed on
  ELF)

  26 Jul 2010; Jeremy Olexa <darkside@gentoo.org> mint/use.mask:
  Mask USE=ipv6 on mint, bug 329883

  14 Jul 2010; Jeremy Olexa <darkside@gentoo.org> package.mask:
  Preemptive mask for python-updater-0.8

  13 Jul 2010; Markus Duft <mduft@gentoo.org>
  windows/interix/6.1/x86/make.defaults:
  corrected CHOST for interix-6.1 profile

  13 Jul 2010; Markus Duft <mduft@gentoo.org>
  -windows/interix/6.0/use.force, -windows/interix/6.1/use.force:
  remove masks for obsolete USE flag (interix prefix only)

  23 Jun 2010; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  emacs-23.2 is segfaulting too, extend mask

  19 Jun 2010; Jonathan Callen <abcd@gentoo.org> package.mask:
  Finish move of dev-util/cvs* to dev-vcs/cvs*

  19 Jun 2010; Jonathan Callen <abcd@gentoo.org> package.mask:
  Duplicate dev-util/cvs* as dev-vcs/cvs* to keep current masks

  16 Jun 2010; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/10.5/ppc/package.use.mask:
  Undo masking of git USE-flag by sping, we DO have git, but it's still in
  our svn tree.

  16 Jun 2010; Sebastian Pipping <sping@gentoo.org>
  darwin/macos/10.5/ppc/package.use.mask:
  Package use mask git for dev-vcs/cvs2svn on ppc-macos

  13 Jun 2010; Fabian Groffen <grobian@gentoo.org> mint/package.use.mask:
  Add mask for dev-db/sqlite threadsafe, bug #323771

  09 Jun 2010; Jeremy Olexa <darkside@gentoo.org> linux/package.mask:
  Revert global ghostscript-gpl mask because it appears to work fine on
  linux.

  09 Jun 2010; Jeremy Olexa <darkside@gentoo.org> package.mask:
  Drop mask for packages that require root privs to run, as discussed on the
  gentoo-alt mailing list

  29 May 2010; Fabian Groffen <grobian@gentoo.org> package.mask:
  Drop git mask for version no longer in the tree

  23 May 2010; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  Mask >=sys-devel/binutils-2.20.51.0.7 on solaris, because it seems to
  produce targets that GCC doesn't know about, bug #320561

  23 May 2010; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask dev-vcs/git-1.7.1 since it Bus Errors on cherry-pick

  20 May 2010; Fabian Groffen <grobian@gentoo.org> package.mask:
  Drop mask for Dev Tools 3.2.2 goodies, seems to behave pretty much ok.

  18 May 2010; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask upcoming gcc, binutils and gdb from Developer Tools 3.2.2

  14 May 2010; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask upcoming baselayout-prefix-1.12.5-r7 due to its experimental nature

  06 May 2010; Jeremy Olexa <darkside@gentoo.org> hpux/package.mask:
  Fix atom syntax

  23 Apr 2010; Fabian Groffen <grobian@gentoo.org> darwin/package.mask:
  Masked media-libs/mesa on Darwin as we should be using opengl-apple

  21 Apr 2010; Jeremy Olexa <darkside@gentoo.org> linux/packages:
  Add back sys-process/{procps,psmisc} to system set on Gentoo Prefix linux
  profiles to diverge less from Gentoo Linux

  18 Apr 2010; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/10.4/ppc64/package.mask, darwin/macos/10.5/x64/package.mask,
  darwin/macos/10.6/x64/package.mask, linux/package.mask, package.mask,
  sunos/solaris/5.9/sparc64/package.mask,
  sunos/solaris/5.10/sparc64/package.mask,
  sunos/solaris/5.10/x64/package.mask,
  sunos/solaris/5.11/sparc64/package.mask,
  sunos/solaris/5.11/x64/package.mask:
  Move zlib mask up, since it breaks everywhere but on Linux

  16 Apr 2010; Fabian Groffen <grobian@gentoo.org>
  +darwin/macos/10.4/ppc64/package.mask, darwin/macos/10.5/x64/package.mask,
  darwin/macos/10.6/x64/package.mask,
  sunos/solaris/5.9/sparc64/package.mask,
  sunos/solaris/5.10/sparc64/package.mask,
  sunos/solaris/5.10/x64/package.mask,
  +sunos/solaris/5.11/sparc64/package.mask,
  sunos/solaris/5.11/x64/package.mask:
  Mask zlib-1.2.4 on 64-bits platforms for bug #310209

  06 Apr 2010; Jeremy Olexa <darkside@gentoo.org>
  darwin/macos/10.4/ppc/package.mask, darwin/macos/package.mask,
  darwin/package.mask, package.mask, sunos/solaris/package.mask,
  windows/interix/3.5/package.mask, windows/interix/package.mask:
  cleanup obsolete version

  03 Apr 2010; Fabian Groffen <grobian@gentoo.org> windows/interix/use.mask:
  Mask USE=multitarget on Interix, since it breaks

  26 Mar 2010; Jeremy Olexa <darkside@gentoo.org> hpux/package.mask:
  Extend gcc mask on hpux, bug 311239

  26 Mar 2010; Fabian Groffen <grobian@gentoo.org> package.mask:
  Drop mask for gcc-config-1.5. It seems to work after some fixes, but it's
  still masked by dropped keywords in gx86, so we will shadow that

  26 Mar 2010; Fabian Groffen <grobian@gentoo.org> package.mask:
  Drop mask for >=autoconf-2.64, should be safe now, drop mask for patch-2.6
  which is no longer in the tree

  26 Mar 2010; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask python-2.4, current plans are not to merge it to gx86

  23 Mar 2010; Fabian Groffen <grobian@gentoo.org> darwin/package.mask:
  Unmask binutils-apple-3.2-r1 sooner than expected, since it is the key to
  solving problems on Snow Leopard

  22 Mar 2010; Markus Duft <mduft@gentoo.org> windows/interix/use.mask,
  windows/winnt/use.mask:
  removed reference to unused qt3 USE flag for windows

  21 Mar 2010; Fabian Groffen <grobian@gentoo.org> darwin/package.mask:
  Mask upcoming sys-devel/binutils-apple-3.2-r1, it needs some testing first

  20 Mar 2010; Fabian Groffen <grobian@gentoo.org>
  +bsd/freebsd/package.mask:
  Add mask for sys-devel/m4-1.4.14 on FreeBSD, bug #310335

  19 Mar 2010; Fabian Groffen <grobian@gentoo.org> package.mask:
  Revert e2fsprogs mask for the time being, since it's the only compiling
  version for us.

  14 Mar 2010; Fabian Groffen <grobian@gentoo.org> package.use.mask:
  drop use-masks for darcs:doc and subversion:nowebdav, we do have texlive
  for a while now, and we no longer use subversion for our main tree (so no
  emerge --sync affected)

  13 Mar 2010; Jonathan Callen <abcd@gentoo.org> package.mask:
  Add mask for >=autoconf-2.64

  10 Mar 2010; Michael Haubenwallner <haubi@gentoo.org> aix/package.mask:
  drop >=net-misc/openssh-5.0_p1-r2 mask on aix, works just fine with proper
  interix-rootuid-fix

  10 Mar 2010; Michael Haubenwallner <haubi@gentoo.org> +aix/profile.bashrc:
  re-adding aix/profile.bashrc to keep setting CONFIG_SHELL

  08 Mar 2010; Fabian Groffen <grobian@gentoo.org> darwin/package.mask:
  Update cssc mask to point to the right category (dev-util -> dev-vcs)

  08 Mar 2010; Fabian Groffen <grobian@gentoo.org> darwin/package.mask:
  Unmask Snow Leopard compilers, their ebuilds should be fine now.

  04 Mar 2010; Markus Duft <mduft@gentoo.org>
  +windows/interix/6.1/package.provided, +windows/interix/6.1/parent,
  +windows/interix/6.1/use.force, +windows/interix/6.1/use.mask,
  +windows/interix/6.1/x86/make.defaults, +windows/interix/6.1/x86/parent,
  +windows/winnt/6.1/package.provided, +windows/winnt/6.1/parent,
  +windows/winnt/6.1/x86/make.defaults, +windows/winnt/6.1/x86/parent:
  added windows 7/2008R2 profiles for interix and winnt, based on the
  vista/2008 profiles.

  25 Feb 2010; Jonathan Callen <abcd@gentoo.org>
  windows/interix/profile.bashrc:
  Fix grep to work even on files with odd names (like /usr/bin/[)

  22 Feb 2010; Jonathan Callen <abcd@gentoo.org> package.use.mask:
  Add ppp on kdenetwork-meta to p.use.mask

  17 Feb 2010; Markus Duft <mduft@gentoo.org> windows/interix/package.mask:
  masked perl >=5.10 for ~x86-interix - does not build atm.

  14 Feb 2010; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  Mask binutils-2.20.51.0.5, doesn't compile

  11 Feb 2010; Jonathan Callen <abcd@gentoo.org> package.mask:
  Remove KDE 4.4 mask

  10 Feb 2010; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/package.use.mask:
  Heiko Przybyl felt like fixing cmake building a .app with USE=qt4

  10 Feb 2010; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/package.use.mask:
  Mask qt4 USE-flag for cmake on Darwin, since we don't want the .app
  version of cmake

  09 Feb 2010; Alexey Shvetsov <alexxy@gentoo.org> package.mask:
  mask kde sc 4.4.0 since neede deps not keyworded

  09 Feb 2010; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  Mask binutils-2.20.51.0.6, doesn't compile

  03 Feb 2010; Fabian Groffen <grobian@gentoo.org> darwin/package.mask:
  Mask dev-util/cssc-1.2.0, the Darwin linker doesn't like duplicate symbols
  caused by implementation code in a header file. Since noone actually uses
  this version (where is its homepage?) I'm not going to make a big patch to
  fix this.

  01 Feb 2010; Jeremy Olexa <darkside@gentoo.org> use.mask:
  Mask ruby_targets_jruby, bug 302563

  10 Jan 2010; Fabian Groffen <grobian@gentoo.org> +mint/package.use.mask:
  package.use.mask extensions for MiNT, bug #299294

  09 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
  -bsd/freebsd/8.0/x86/use.mask:
  X support is now possible so unmask USE flag

  09 Jan 2010; Christian Faulhammer <fauli@gentoo.org> package.use.mask:
  mask m17n-lib and hesiod USE flags for GNU Emacs

  08 Jan 2010; Jeremy Olexa <darkside@gentoo.org> package.use.mask:
  Fix typo and add more comment description

  08 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
  +bsd/freebsd/8.0/x86/use.mask:
  Mask X USE flag on FreeBSD due to missing keywords

  08 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
  bsd/freebsd/8.0/package.mask:
  mask GCC 4.4 and onwards, does not compile currently on FreeBSD

  07 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
  bsd/freebsd/8.0/package.mask:
  mask sys-libs/readline-6 for FreeBSD

  30 Dec 2009; Jonathan Callen <abcd@gentoo.org> linux/make.defaults:
  Disable acl by default in linux profiles

  29 Dec 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  Mask emacs-23.1 at last on Solaris, it's been broken way too long (bug
  #294479)

  29 Dec 2009; Jonathan Callen <abcd@gentoo.org> linux/use.mask:
  Unmask acl on linux

  28 Dec 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask =dev-python/beautifulsoup-3.1.0.1-r1 because it depends on python-3

  28 Dec 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/5.10/sparc/package.mask,
  +sunos/solaris/5.10/sparc64/package.mask:
  Mask gcc-4.4.2 on sparcbased Solaris 10, fails to compile

  27 Dec 2009; Ulrich Mueller <ulm@gentoo.org>
  darwin/macos/package.use.mask:
  Reflect package move from app-editors/emacs-cvs to app-editors/emacs-vcs
  in package.use.mask.

  27 Dec 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask gcc-config-1.5 so we can test it a bit first

  24 Dec 2009; Jeremy Olexa <darkside@gentoo.org> linux/arm/make.defaults:
  Add ** to ACCEPT_KEYWORDS of arm-linux

  23 Dec 2009; Jeremy Olexa <darkside@gentoo.org> linux/arm/make.defaults:
  Set a PORTAGE_BINHOST for arm-linux

  23 Dec 2009; Fabian Groffen <grobian@gentoo.org> darwin/package.mask:
  Drop mask for xmlrpc-c (the only one in the tree), it seems other patches
  have also fixed compilation on Darwin

  21 Dec 2009; Fabian Groffen <grobian@gentoo.org>
  +bsd/freebsd/8.0/package.mask, +bsd/freebsd/8.0/package.provided,
  +bsd/freebsd/8.0/parent, +bsd/freebsd/8.0/x64/make.defaults,
  +bsd/freebsd/8.0/x64/parent, +bsd/freebsd/8.0/x86/make.defaults,
  +bsd/freebsd/8.0/x86/parent:
  Add FreeBSD 8.0 profiles for i686 and x86_64

  17 Dec 2009; Jeremy Olexa <darkside@gentoo.org> +linux/arm/make.defaults,
  +linux/arm/parent:
  Add experimental arm profiles for armv7

  13 Dec 2009; Jonathan Callen <abcd@gentoo.org> package.mask:
  Unmasking KDE 4.3, as the mask was never really needed anyway (not yet in
  prefix tree)

  04 Dec 2009; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/package.mask:
  Unmask sip on Darwin, the latest version with a new patch seems to behave

  24 Nov 2009; Jeremy Olexa <darkside@gentoo.org> use.mask:
  Make USE=udev globally for Gentoo Prefix profiles, bug 293480

  22 Nov 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask sys-devel/patch-2.6, it's too much GNU is not Linux (they stopped
  with UNIX years ago)

  15 Nov 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  A new pre-release of mc, a new breakage on Solaris

  15 Nov 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  Mask eix-0.18.3 due to compilation issues

  15 Nov 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  unmask File-Spec again, perl-5.10.1 is in the Prefix tree now

  04 Nov 2009; Michael Haubenwallner <haubi@gentoo.org>
  linux/x86/make.defaults:
  add -m32 to CFLAGS, for bootstrapping i686 on x86_64-linux using host gcc

  02 Nov 2009; Michael Haubenwallner <haubi@gentoo.org> aix/package.mask:
  dropped openssl mask on aix, fixed again to build good shared libs

  01 Nov 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Unmask ssmtp-2.62 since -r7, as that one finally got the fix we'd been
  looking for

  30 Oct 2009; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/10.4/x86/package.use.mask,
  darwin/macos/10.5/x64/package.use.mask,
  darwin/macos/10.5/x86/package.use.mask,
  darwin/macos/10.6/x64/package.use.mask,
  darwin/macos/10.6/x86/package.use.mask, darwin/macos/package.use.mask,
  darwin/package.use.mask:
  Move mplayer USE-masks up to global darwin/macos level (for bug #291203),
  and cleanup mmx masking

  28 Oct 2009; Michael Haubenwallner <haubi@gentoo.org> -aix/profile.bashrc:
  portage handles merging of shared library archives on aix itself now,
  no need to do this in profile.bashrc any more.

  27 Oct 2009; Fabian Groffen <grobian@gentoo.org> darwin/package.mask:
  Mask gcc-4.{3,4} on Darwin, as it doesn't compile for a while now

  25 Oct 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Unmask pax-utils-0.1.19, I added the strndup patches to the Prefix ebuild

  22 Oct 2009; Jeremy Olexa <darkside@gentoo.org> linux/amd64/parent,
  linux/ia64/parent, linux/x86/parent:
  Move prefix/linux profiles to inherit 10.0 instead of 2008.0 now that
  those are deprecated, bug 280540

  18 Oct 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  Mask app-misc/mc-4.7.0_pre3 too, still insists on doing Linux stuff

  18 Oct 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  Mask ocaml-3.11.1 because it fails to build due to some missing symbol

  15 Oct 2009; Jeremy Olexa <darkside@gentoo.org> linux/package.mask:
  Mask ~dev-libs/nss-3.12.4 on linux only because it exposes some other
  issues

  09 Oct 2009; Fabian Groffen <grobian@gentoo.org> +irix/package.use.force:
  Force nocxx for sys-libs/db, bug #286097

  05 Oct 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  drop mask for Portage no longer in the tree

  03 Oct 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/5.10/x86/package.use.mask:
  unmask netpbm:jpeg2k on Solaris, the issue has been fixed

  02 Oct 2009; Michael Haubenwallner <haubi@gentoo.org>
  +sunos/solaris/5.9/package.use.force:
  app-admin/eselect-python still needs gnulib on solaris 9 for scandir, and
  has IUSE=gnulib

  02 Oct 2009; Michael Haubenwallner <haubi@gentoo.org>
  sunos/solaris/package.use.mask:
  ohw, solaris-provided libuuid is insufficient for x11-libs/libSM (#230981)

  30 Sep 2009; Michael Haubenwallner <haubi@gentoo.org>
  +sunos/solaris/package.use.mask:
  x11-libs/libSM can use solaris-provided libuuid (#230981)

  30 Sep 2009; Michael Haubenwallner <haubi@gentoo.org>
  +bsd/package.use.mask, linux/package.use.mask, package.use.mask:
  p.use.mask x11-libs/libSM[uuid] for prefix, but keep it unmasked for linux
  and bsd (#230981)

  30 Sep 2009; Markus Duft <mduft@gentoo.org> windows/winnt/package.mask:
  mask current xproto on winnt, since the patches need some more massage.

  30 Sep 2009; Markus Duft <mduft@gentoo.org> windows/interix/package.mask:
  mask new coreutils on interix until patches are forward-ported

  30 Sep 2009; Jeremy Olexa <darkside@gentoo.org> package.use.mask:
  mask python[berkdb] due to build failure and the fact that it is going
  away soon according to gx86 devs

  28 Sep 2009; Michael Haubenwallner <haubi@gentoo.org> irix/package.mask,
  sunos/solaris/package.mask:
  unmask perl-5.8.8-r6 as bug#269430 is fixed now

  24 Sep 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Masked =sys-apps/portage-2.2.00.14277 because it eats
  /etc/init.d/functions.sh

  23 Sep 2009; Markus Duft <mduft@gentoo.org> package.mask:
  masked some stuff that requires perl 5.10 which is not there yet

  17 Sep 2009; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/10.6/x86/make.defaults:
  set -march again on 32-bits 10.6, the compiler barf was because
  i386-apple-darwin10 by default produces/targets 64-bits code

  12 Sep 2009; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/10.5/x64/package.mask, darwin/macos/10.6/x64/package.mask,
  package.mask:
  Drop mask for binutils-apple-3.1.2-r1, it's no longer in the tree

  12 Sep 2009; Fabian Groffen <grobian@gentoo.org> darwin/package.mask:
  Unmask binutils-apple-3.2, it is 64-bits clean/safe and compiles since we
  just use an older ld64 :(

  12 Sep 2009; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/10.6/x86/make.defaults:
  Don't set -march, as it makes the host compiler vomit

  08 Sep 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  I fixed the compilation issue in rlfe on Solaris, remove mask

  07 Sep 2009; Fabian Groffen <grobian@gentoo.org>
  +darwin/macos/10.6/x86/make.defaults, +darwin/macos/10.6/x86/package.mask,
  +darwin/macos/10.6/x86/package.use.force,
  +darwin/macos/10.6/x86/package.use.mask, +darwin/macos/10.6/x86/parent,
  +darwin/macos/10.6/x86/use.mask:
  Add 32-bits Intel profile for Snow Leopard

  07 Sep 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  Mask sys-libs/readline-6.0 on (Open)Solaris, doesn't compile, bug #283793

  05 Sep 2009; Fabian Groffen <grobian@gentoo.org> darwin/package.mask:
  Mask upcoming Snow Leopard compiler and linker, as there are still some
  problems that need to be sorted out

  05 Sep 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  extend mc mask to revisions

  05 Sep 2009; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/10.4/ppc/package.mask:
  mask sci-biology/hmmer-3.0_beta2 for the same reason as its predecessors
  are masked

  03 Sep 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  Mask sys-apps/dbus-1.3.0 as it doesn't compile

  03 Sep 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  Mask mc-4.7.0_pre2, as it insists on doing linux vfs (ext2 undel) stuff

  02 Sep 2009; Fabian Groffen <grobian@gentoo.org> package.mask,
  package.use.mask:
  unmask some xfce packages and only mask offending USE-flags, since
  darkside made it all work again

  02 Sep 2009; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
  package.mask:
  Masking >= KDE-4.3 for this arch to prevent tree breakage following
  the global unmask of KDE-4.3 (bug #280312).

  02 Sep 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  mask findutils-4.5.5 on Solaris, as it dies with asserts all the time

  02 Sep 2009; Markus Duft <mduft@gentoo.org>
  windows/interix/3.5/package.mask:
  masked the latest portage on interix 3 where it seems to cause problems
  with encoding stuff

  02 Sep 2009; Markus Duft <mduft@gentoo.org> windows/interix/use.mask:
  re-enabled xcb use flag on interix, since i fixed libxcb

  02 Sep 2009; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/package.mask:
  Mask media-libs/freeglut-2.6.0_rc1 on Darwin, since it doesn't compile

  02 Sep 2009; Markus Duft <mduft@gentoo.org> windows/interix/use.mask:
  masked xcb use flag for ~x86-interix, since libxcb works only partially

  31 Aug 2009; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/package.use.mask:
  unmask aqua USE-flag for python, now it seems I sorted all outstanding
  issues

  31 Aug 2009; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/10.6/package.mask, package.mask:
  unmask readline-6 in prefix, as gx86 is stabling it

  27 Aug 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  unmask Portage again, it should have bug #282854 fixed now

  26 Aug 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  p.mask latest portage, bug 282854

  21 Aug 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  preempt mask for python:3.1, remove mask for eselect-1.1.3 (non existent)

  20 Aug 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Let's go wild, unmask latest eselect-python, now we've patched it in our
  tree

  19 Aug 2009; Jeremy Olexa <darkside@gentoo.org> windows/interix/use.mask,
  windows/winnt/use.mask:
  Remove spurious entires for USE=aqua. Not needed in subdirs when it is
  inherited from base

  19 Aug 2009; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/10.6/package.mask:
  unmask readline 6 on 10.6 profiles, since that's the only thing that
  builds there

  18 Aug 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  p.mask =app-admin/eselect-1.1.3 in favor of 1.2 coming soon

  18 Aug 2009; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/package.use.mask:
  Mask aqua USE-flag for python, since it's absolutely not yet ready for use

  18 Aug 2009; Markus Duft <mduft@gentoo.org> windows/interix/package.mask:
  p.mask'ed findutils-4.5.5 on interix - xargs broken

  18 Aug 2009; Jeremy Olexa <darkside@gentoo.org> aix/use.mask,
  bsd/use.mask, hpux/use.mask, irix/use.mask, linux/amd64/make.defaults,
  linux/x86/make.defaults, mint/use.mask, sunos/use.mask,
  windows/winnt/use.mask:
  be more strict in profile syntax, bug 281838

  17 Aug 2009; Fabian Groffen <grobian@gentoo.org> +darwin/macos/10.6/eapi,
  +darwin/macos/10.6/make.defaults, +darwin/macos/10.6/package.mask,
  +darwin/macos/10.6/package.provided, +darwin/macos/10.6/package.use.mask,
  +darwin/macos/10.6/parent, +darwin/macos/10.6/profile.bashrc,
  +darwin/macos/10.6/x64/make.defaults, +darwin/macos/10.6/x64/package.mask,
  +darwin/macos/10.6/x64/package.use.force,
  +darwin/macos/10.6/x64/package.use.mask, +darwin/macos/10.6/x64/parent,
  +darwin/macos/10.6/x64/use.mask:
  Add initial 10.6 (Snow Leopard) profile

  17 Aug 2009; Fabian Groffen <grobian@gentoo.org> +irix/package.mask,
  sunos/solaris/package.mask:
  Mask perl-5.8.8-r6 on Solaris and IRIX because it breaks autotools there,
  bug #269430

  14 Aug 2009; Markus Duft <mduft@gentoo.org> windows/interix/6.0/use.mask:
  unmask i6fork on interix 6 again - i6fork has been fixed

  13 Aug 2009; Markus Duft <mduft@gentoo.org> windows/interix/package.mask:
  masked >=startup-notification-0.10 on interix, requires xcb-util.

  13 Aug 2009; Markus Duft <mduft@gentoo.org> windows/interix/6.0/use.mask,
  windows/interix/package.mask, windows/interix/profile.bashrc:
  extended subversion mask to 1.6.4. re-formatted an expression which failed
  on windows 7. masked the i6fork flag on interix 6 for now - not working.

  11 Aug 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  fix typos

  10 Aug 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  p.mask ebuilds that need >=app-admin/eselect-python-20090801

  10 Aug 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  p.mask =virtual/emacs-23 to salvage the depgraph

  05 Aug 2009; Fabian Groffen <grobian@gentoo.org> aix/package.mask,
  hpux/package.mask, package.mask:
  Drop masks on sys-apps/file that apply to versions no longer in our tree

  05 Aug 2009; Fabian Groffen <grobian@gentoo.org> aix/package.mask,
  -aix/package.unmask:
  Unmask native-cctools without package.unmask, bug #280433, it looks like
  it did work that way, though

  03 Aug 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask eselect-python-20090801, messing around with Python is better done in
  gentoo-x86 ONLY

  31 Jul 2009; Markus Duft <mduft@gentoo.org>
  windows/interix/3.5/package.mask:
  masked numpy on interix 3.5, since it conflicts with system headers

  31 Jul 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  unmask perl's -r6 and -r7, r7 is now gone in Prefix again too, -r6 made
  its reentrance with some fixes

  30 Jul 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  p.mask perl-5.8.8-r7 because its auto-sync is messed up.

  28 Jul 2009; Michael Haubenwallner <haubi@gentoo.org>
  +hpux/B.11.11/package.use.mask:
  hpux11.11 does not have /dev/*random: use.masked 'urandom' for
  dev-libs/apr

  28 Jul 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask >=sys-apps/util-linux-2.16 too, comment #5 in bug #278341

  27 Jul 2009; Michael Haubenwallner <haubi@gentoo.org>
  +hpux/B.11.11/hppa2.0/make.defaults, +hpux/B.11.11/hppa2.0/parent,
  +hpux/B.11.11/package.provided, +hpux/B.11.11/parent:
  added 32bit profile for hppa2.0*-hp-hpux11.11

  27 Jul 2009; Markus Duft <mduft@gentoo.org> windows/winnt/package.mask:
  unmaske icu-4, seems to work

  27 Jul 2009; Markus Duft <mduft@gentoo.org> windows/interix/package.mask,
  windows/winnt/package.mask:
  remove boost mask - works now again

  26 Jul 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask >=e2fsprogs*-2.41.8. util-linux doesn't work on non-Linux and doesn't
  work in Prefix.

  23 Jul 2009; Michael Haubenwallner <haubi@gentoo.org> aix/package.mask:
  gdb-*.50 are linux-only releases and don't (need to) work on aix.

  22 Jul 2009; Michael Haubenwallner <haubi@gentoo.org> aix/profile.bashrc,
  hpux/profile.bashrc, profile.bashrc:
  work around missing mechanism to stack profile.bashrc hooks

  22 Jul 2009; Michael Haubenwallner <haubi@gentoo.org>
  hpux/B.11.31/hppa2.0/make.defaults:
  use CHOST=hppa2.0n-hp-hpux11.* in 32bit hppa2.0 hpux11 profile.

  21 Jul 2009; Markus Duft <mduft@gentoo.org> windows/interix/use.mask:
  masked a few more user flags that wont work on interix

  21 Jul 2009; Michael Haubenwallner <haubi@gentoo.org> hpux/profile.bashrc:
  typo calling 'prefix_hpux-pre_pkg_postinst' while it should have been
  'prefix_hpux-post_pkg_preinst'

  16 Jul 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  remove masks for versions of Portage no longer in the tree

  16 Jul 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  p.mask =sys-apps/portage-2.2.00.13827 due to regression, bug 278014

  16 Jul 2009; Michael Haubenwallner <haubi@gentoo.org> hpux/package.mask:
  masking gcc-4.3 on hpux for various reasons

  14 Jul 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  p.mask portage-2.2.00.13825 due to regression with virtuals

  14 Jul 2009; Michael Haubenwallner <haubi@gentoo.org> hpux/profile.bashrc:
  preserve busy text files based on installed file types, not
  to-be-installed ones

  14 Jul 2009; Michael Haubenwallner <haubi@gentoo.org> aix/package.mask:
  fixed cvs header

  14 Jul 2009; Michael Haubenwallner <haubi@gentoo.org>
  +aix/5.3.0.0/package.mask:
  masked sys-process/lsof-4.82 on aix5.3

  12 Jul 2009; Fabian Groffen <grobian@gentoo.org> make.defaults:
  Get collision-protect back on, thanks sping's smolt tool which made me
  notice. Disabling this in Prefix is lethal.

  09 Jul 2009; Markus Duft <mduft@gentoo.org>
  +windows/interix/6.0/use.force, +windows/interix/6.0/use.mask:
  added i6fork use.{mask,force} entry to enable/force i6fork on interix6 to
  fix fork() problems

  07 Jul 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask portage-2.2.00.13797, bug #276957

  07 Jul 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Remove mask on no longer existing portage version

  02 Jul 2009; Michael Haubenwallner <haubi@gentoo.org> package.mask:
  Mask =sys-apps/portage-2.2.00.13734, does merge in reverse order with
  --nodeps.

  30 Jun 2009; Jeremy Olexa <darkside@gentoo.org> linux/make.defaults:
  Remove sandbox being enabled by default on linux prefix platforms, users can
  still enable themselves if wanted

  30 Jun 2009; Jeremy Olexa <darkside@gentoo.org> aix/make.defaults,
  bsd/freebsd/make.defaults, bsd/netbsd/make.defaults,
  bsd/openbsd/make.defaults, darwin/make.defaults, hpux/make.defaults,
  irix/make.defaults, make.defaults, mint/make.defaults,
  sunos/make.defaults, windows/interix/make.defaults,
  windows/winnt/make.defaults:
  Mark FEATURES=-sandbox globally because it fails to work reliably on any
  Gentoo Prefix platform.

  30 Jun 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  Remove subversion mask

  30 Jun 2009; Jeremy Olexa <darkside@gentoo.org> package.mask, use.mask:
  Mask USE=pam and sys-libs/pam, sys-auth/pambase because the host's auth
  system should be used anyway

  30 Jun 2009; Fabian Groffen <grobian@gentoo.org> darwin/package.mask:
  Mask app-crypt/ccrypt-1.8 for it doesn't compile (does stupid things)

  28 Jun 2009; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/package.mask:
  Removed gconf masks, I fixed the issue

  28 Jun 2009; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/10.4/ppc/package.mask:
  mask hmmer-3.0_beta1, as Altivec or dummy backends are still not yet
  implemented

  28 Jun 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  Mask media-gfx/sam2p-0.46 due to compilation failure, remove mask for ruby
  version no longer in the tree

  26 Jun 2009; Michael Sterrett <mr_bones_@gentoo.org>
  +darwin/macos/10.4/eapi, +darwin/macos/10.5/eapi:
  The PM needs to know the eapi right in the child node of the profile.

  26 Jun 2009; <solar@gentoo.org> +eapi:
  - commit 1.130 of ../profile.desc enabled prefix in QA tools. Mr_Bones
  points out that slots are used in sub profiles package.mask files. This
  eapi=1 commit is in accordance with
  http://archives.gentoo.org/gentoo-dev/msg_930f58fcebcbbcbe523c001f2c825179.x
  ml (Change to a higher eapi if needed)

  25 Jun 2009; Christian Faulhammer <fauli@gentoo.org>
  windows/interix/use.mask:
  mask USE flag xemacs on Interix because it won't compile anyway

  24 Jun 2009; Markus Duft <mduft@gentoo.org> windows/winnt/use.mask:
  use.mask readline for winnt - readline doesnt work here...

  24 Jun 2009; Michael Haubenwallner <haubi@gentoo.org> package.mask:
  Mask icu-4.2, let it fix in ~main tree first (#269659).

  23 Jun 2009; Michael Haubenwallner <haubi@gentoo.org>
  +hpux/B.11.31/hppa2.0/make.defaults, +hpux/B.11.31/hppa2.0/parent:
  added profile for hppa2.0-hp-hpux11.31, the first hppa-hpux one.

  21 Jun 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask ncurses-5.7-r1 as it breaks Solaris and Darwin, and probably much
  more

  21 Jun 2009; Fabian Groffen <grobian@gentoo.org> bsd/package.mask,
  bsd/packages, darwin/package.mask, darwin/packages, package.mask:
  Prepare to remove bsd-man-pages as it doesn't really provide anything
  useful (and it already exists on the host system)

  20 Jun 2009; Fabian Groffen <grobian@gentoo.org>
  bsd/freebsd/7.1/package.mask, bsd/freebsd/7.2/package.mask:
  clean up bsd/* masks

  20 Jun 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/5.10/x64/package.mask, sunos/solaris/5.11/x64/package.mask,
  sunos/solaris/package.mask:
  clean up sunos/* masks

  20 Jun 2009; Fabian Groffen <grobian@gentoo.org>
  windows/interix/3.5/package.mask, windows/interix/package.mask:
  clean up windows/* masks

  20 Jun 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Removed mask entries for no longer existing packages/ebuilds, thanks idl0r

  19 Jun 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Unmask sandbox-2, since we should have a patched up for Prefix version
  now.

  19 Jun 2009; Markus Duft <mduft@gentoo.org> windows/interix/package.mask:
  masked libiconv 1.13 on interix - doesnt build

  17 Jun 2009; Markus Duft <mduft@gentoo.org> windows/interix/package.mask:
  updated subversion mask for interix - still not working

  07 Jun 2009; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/package.mask:
  gnome-base/gconf-2.26.2 has the same linkage problem as 2.26.0

  06 Jun 2009; <solar@gentoo.org> +aix/5.2.0.0/package.provided,
  +aix/5.2.0.0/parent, +aix/5.2.0.0/ppc/make.defaults,
  +aix/5.2.0.0/ppc/parent, +aix/5.3.0.0/package.provided,
  +aix/5.3.0.0/parent, +aix/5.3.0.0/ppc/make.defaults,
  +aix/5.3.0.0/ppc/parent, +aix/6.1.0.0/package.provided,
  +aix/6.1.0.0/parent, +aix/6.1.0.0/ppc/make.defaults,
  +aix/6.1.0.0/ppc/parent, +aix/make.defaults, +aix/package.mask,
  +aix/package.unmask, +aix/package.use.force, +aix/package.use.mask,
  +aix/packages, +aix/parent, +aix/profile.bashrc, +aix/use.force,
  +aix/use.mask, +aix/virtuals, +bsd/freebsd/7.1/package.mask,
  +bsd/freebsd/7.1/package.provided, +bsd/freebsd/7.1/parent,
  +bsd/freebsd/7.1/x64/make.defaults, +bsd/freebsd/7.1/x64/parent,
  +bsd/freebsd/7.1/x86/make.defaults, +bsd/freebsd/7.1/x86/parent,
  +bsd/freebsd/7.2/package.mask, +bsd/freebsd/7.2/package.provided,
  +bsd/freebsd/7.2/parent, +bsd/freebsd/7.2/x64/make.defaults,
  +bsd/freebsd/7.2/x64/parent, +bsd/freebsd/7.2/x86/make.defaults,
  +bsd/freebsd/7.2/x86/parent, +bsd/freebsd/make.defaults,
  +bsd/freebsd/parent, +bsd/freebsd/use.force, +bsd/freebsd/use.mask,
  +bsd/freebsd/virtuals, +bsd/netbsd/4.0/package.provided,
  +bsd/netbsd/4.0/parent, +bsd/netbsd/4.0/x86/make.defaults,
  +bsd/netbsd/4.0/x86/parent, +bsd/netbsd/make.defaults, +bsd/netbsd/parent,
  +bsd/netbsd/use.force, +bsd/netbsd/use.mask, +bsd/netbsd/virtuals,
  +bsd/openbsd/4.2/package.mask, +bsd/openbsd/4.2/package.provided,
  +bsd/openbsd/4.2/parent, +bsd/openbsd/4.2/ppc/make.defaults,
  +bsd/openbsd/4.2/ppc/parent, +bsd/openbsd/4.2/x64/make.defaults,
  +bsd/openbsd/4.2/x64/parent, +bsd/openbsd/4.2/x86/make.defaults,
  +bsd/openbsd/4.2/x86/parent, +bsd/openbsd/make.defaults,
  +bsd/openbsd/parent, +bsd/openbsd/use.force, +bsd/openbsd/use.mask,
  +bsd/openbsd/virtuals, +bsd/package.mask, +bsd/packages, +bsd/parent,
  +bsd/use.mask, +darwin/macos/10.3/make.defaults,
  +darwin/macos/10.3/package.mask, +darwin/macos/10.3/package.provided,
  +darwin/macos/10.3/parent, +darwin/macos/10.3/profile.bashrc,
  +darwin/macos/10.3/use.mask, +darwin/macos/10.4/make.defaults,
  +darwin/macos/10.4/package.mask, +darwin/macos/10.4/package.provided,
  +darwin/macos/10.4/parent, +darwin/macos/10.4/ppc/make.defaults,
  +darwin/macos/10.4/ppc/package.mask, +darwin/macos/10.4/ppc/parent,
  +darwin/macos/10.4/ppc/use.mask, +darwin/macos/10.4/ppc64/make.defaults,
  +darwin/macos/10.4/ppc64/parent, +darwin/macos/10.4/ppc64/use.mask,
  +darwin/macos/10.4/profile.bashrc, +darwin/macos/10.4/x86/make.defaults,
  +darwin/macos/10.4/x86/package.use.force,
  +darwin/macos/10.4/x86/package.use.mask, +darwin/macos/10.4/x86/parent,
  +darwin/macos/10.4/x86/use.mask, +darwin/macos/10.5/make.defaults,
  +darwin/macos/10.5/package.mask, +darwin/macos/10.5/package.provided,
  +darwin/macos/10.5/package.use.mask, +darwin/macos/10.5/parent,
  +darwin/macos/10.5/ppc/make.defaults, +darwin/macos/10.5/ppc/package.mask,
  +darwin/macos/10.5/ppc/package.use.force,
  +darwin/macos/10.5/ppc/package.use.mask, +darwin/macos/10.5/ppc/parent,
  +darwin/macos/10.5/ppc/use.mask, +darwin/macos/10.5/profile.bashrc,
  +darwin/macos/10.5/x64/make.defaults, +darwin/macos/10.5/x64/package.mask,
  +darwin/macos/10.5/x64/package.use.force,
  +darwin/macos/10.5/x64/package.use.mask, +darwin/macos/10.5/x64/parent,
  +darwin/macos/10.5/x64/use.mask, +darwin/macos/10.5/x86/make.defaults,
  +darwin/macos/10.5/x86/package.mask,
  +darwin/macos/10.5/x86/package.use.force,
  +darwin/macos/10.5/x86/package.use.mask, +darwin/macos/10.5/x86/parent,
  +darwin/macos/10.5/x86/use.mask, +darwin/macos/make.defaults,
  +darwin/macos/package.mask, +darwin/macos/package.use.force,
  +darwin/macos/package.use.mask, +darwin/macos/packages,
  +darwin/macos/parent, +darwin/macos/use.mask, +darwin/macos/virtuals,
  +darwin/make.defaults, +darwin/package.mask, +darwin/package.use.mask,
  +darwin/packages, +darwin/parent, +darwin/use.force, +darwin/use.mask,
  +darwin/virtuals, +hpux/B.11.23/ia64/make.defaults,
  +hpux/B.11.23/ia64/parent, +hpux/B.11.23/package.provided,
  +hpux/B.11.23/parent, +hpux/B.11.31/ia64/make.defaults,
  +hpux/B.11.31/ia64/parent, +hpux/B.11.31/package.provided,
  +hpux/B.11.31/parent, +hpux/make.defaults, +hpux/package.mask,
  +hpux/packages, +hpux/parent, +hpux/profile.bashrc, +hpux/use.force,
  +hpux/use.mask, +hpux/virtuals, +irix/6.5/mips/make.defaults,
  +irix/6.5/mips/parent, +irix/6.5/package.provided, +irix/6.5/parent,
  +irix/make.defaults, +irix/package.use.mask, +irix/packages, +irix/parent,
  +irix/profile.bashrc, +irix/use.force, +irix/use.mask, +irix/virtuals,
  +linux/amd64/make.defaults, +linux/amd64/parent,
  +linux/ia64/make.defaults, +linux/ia64/parent, +linux/make.defaults,
  +linux/package.mask, +linux/package.provided, +linux/package.use.mask,
  +linux/packages, +linux/parent, +linux/use.force, +linux/use.mask,
  +linux/virtuals, +linux/x86/make.defaults, +linux/x86/parent,
  +make.defaults, +mint/m68k/make.defaults, +mint/m68k/parent,
  +mint/m68k/use.mask, +mint/make.defaults, +mint/package.provided,
  +mint/packages, +mint/parent, +mint/use.mask, +mint/virtuals,
  +package.mask, +package.provided, +package.use.mask, +packages,
  +profile.bashrc, +sunos/make.defaults, +sunos/packages, +sunos/parent,
  +sunos/solaris/5.9/package.provided, +sunos/solaris/5.9/parent,
  +sunos/solaris/5.9/sparc/make.defaults,
  +sunos/solaris/5.9/sparc/package.mask, +sunos/solaris/5.9/sparc/parent,
  +sunos/solaris/5.9/sparc64/make.defaults,
  +sunos/solaris/5.9/sparc64/package.mask,
  +sunos/solaris/5.9/sparc64/parent, +sunos/solaris/5.10/package.provided,
  +sunos/solaris/5.10/parent, +sunos/solaris/5.10/sparc/make.defaults,
  +sunos/solaris/5.10/sparc/package.mask, +sunos/solaris/5.10/sparc/parent,
  +sunos/solaris/5.10/sparc64/make.defaults,
  +sunos/solaris/5.10/sparc64/package.use.mask,
  +sunos/solaris/5.10/sparc64/parent, +sunos/solaris/5.10/x64/make.defaults,
  +sunos/solaris/5.10/x64/package.mask,
  +sunos/solaris/5.10/x64/package.use.mask, +sunos/solaris/5.10/x64/parent,
  +sunos/solaris/5.10/x86/make.defaults,
  +sunos/solaris/5.10/x86/package.use.mask, +sunos/solaris/5.10/x86/parent,
  +sunos/solaris/5.11/package.mask, +sunos/solaris/5.11/package.provided,
  +sunos/solaris/5.11/parent, +sunos/solaris/5.11/sparc/make.defaults,
  +sunos/solaris/5.11/sparc/parent,
  +sunos/solaris/5.11/sparc64/make.defaults,
  +sunos/solaris/5.11/sparc64/package.use.mask,
  +sunos/solaris/5.11/sparc64/parent, +sunos/solaris/5.11/x64/make.defaults,
  +sunos/solaris/5.11/x64/package.mask,
  +sunos/solaris/5.11/x64/package.use.mask, +sunos/solaris/5.11/x64/parent,
  +sunos/solaris/5.11/x86/make.defaults,
  +sunos/solaris/5.11/x86/package.use.mask, +sunos/solaris/5.11/x86/parent,
  +sunos/solaris/package.mask, +sunos/solaris/parent, +sunos/use.force,
  +sunos/use.mask, +sunos/virtuals, +use.force, +use.mask, +virtuals,
  +windows/interix/3.5/package.mask, +windows/interix/3.5/package.provided,
  +windows/interix/3.5/parent, +windows/interix/3.5/x86/make.defaults,
  +windows/interix/3.5/x86/parent, +windows/interix/5.2/package.provided,
  +windows/interix/5.2/parent, +windows/interix/5.2/x86/make.defaults,
  +windows/interix/5.2/x86/parent, +windows/interix/6.0/package.provided,
  +windows/interix/6.0/parent, +windows/interix/6.0/x86/make.defaults,
  +windows/interix/6.0/x86/parent, +windows/interix/make.defaults,
  +windows/interix/package.mask, +windows/interix/package.use.force,
  +windows/interix/package.use.mask, +windows/interix/parent,
  +windows/interix/profile.bashrc, +windows/interix/use.force,
  +windows/interix/use.mask, +windows/interix/virtuals, +windows/parent,
  +windows/winnt/3.5/package.provided, +windows/winnt/3.5/parent,
  +windows/winnt/3.5/x86/make.defaults, +windows/winnt/3.5/x86/parent,
  +windows/winnt/5.2/package.provided, +windows/winnt/5.2/parent,
  +windows/winnt/5.2/x86/make.defaults, +windows/winnt/5.2/x86/parent,
  +windows/winnt/6.0/package.provided, +windows/winnt/6.0/parent,
  +windows/winnt/6.0/x86/make.defaults, +windows/winnt/6.0/x86/parent,
  +windows/winnt/make.defaults, +windows/winnt/package.mask,
  +windows/winnt/packages, +windows/winnt/parent,
  +windows/winnt/profile.bashrc, +windows/winnt/use.mask,
  +windows/winnt/virtuals:
  Initial commit of prefix profiles on behalf of the prefix community

  05 Jun 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  p.mask subversion-1.6.2, bug 271424

  05 Jun 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask mplayer-1.0_rc2_p20090530, piece of crap.

  03 Jun 2009; Jeremy Olexa <darkside@gentoo.org>
  darwin/macos/10.5/package.use.mask, linux/use.mask, use.mask:
  Move acl USE flag masking to a global level

  02 Jun 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  add net-fs/curlftpfs to p.mask, bug 272210

  01 Jun 2009; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/10.5/x64/package.mask:
  Unmask sys-devel/binutils-apple-3.1.2-r1 on x64-macos, as it's the
  /enabler/ for this arch

  01 Jun 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Drop perl-5.8.8-r6 mask (no longer in the tree), and mask upcoming
  sys-devel/binutils-apple-3.2.1-r1 due to its experimentalness

  30 May 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/5.10/sparc/package.mask:
  unmask gtk+, seems to be a local problem on my build host, as I can build
  it on other machines, and have been told by others the same

  30 May 2009; Fabian Groffen <grobian@gentoo.org>
  +darwin/macos/10.4/ppc/package.mask:
  Mask hmmer-3.0_alpha2 on ppc-macos, it can't work on anything but a SSE
  capable CPU in this alpha

  30 May 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/5.10/sparc/package.mask:
  Mask gtk+-2.16.1 on sparc-solaris too

  28 May 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask dev-lang/perl-5.8.8-r6 since it still breaks autotools like hell

  28 May 2009; Markus Duft <mduft@gentoo.org> windows/interix/package.mask,
  +windows/winnt/package.mask:
  masked new boost and boost-build versions, which dont currently work on
  windows

  27 May 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  mask media-libs/libmp4v2-1.5.0.1-r2 to avoid extra bugs like bug #271022

  25 May 2009; Fabian Groffen <grobian@gentoo.org>
  +sunos/solaris/5.11/package.mask:
  Mask sys-process/lsof-4.82, totally non-OpenSolaris ready

  14 May 2009; Markus Duft <mduft@gentoo.org> windows/interix/package.mask:
  mask sed 4.2, since it causes problems on interix

  24 May 2009; Fabian Groffen <grobian@gentoo.org>
  -bsd/freebsd/6.2/package.mask, -bsd/freebsd/6.2/package.provided,
  -bsd/freebsd/6.2/parent, -bsd/freebsd/6.2/x86/make.defaults,
  -bsd/freebsd/6.2/x86/parent:
  Drop FreeBSD 6.2 profile

  24 May 2009; Fabian Groffen <grobian@gentoo.org>
  +sunos/solaris/5.10/x64/package.mask, sunos/solaris/5.11/x64/package.mask:
  Mask zziplib also on 5.10/x64, update to the current version in portage,
  which is still broken

  24 May 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  I fixed dev-libs/xmlrpc-c-1.18.02 compilation for Solaris, so we can
  unmask

  24 May 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  Remove masks for packages no longer in the tree

  24 May 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/5.11/x64/package.mask:
  Mask sys-devel/m4-1.4.13, as it causes aborts on OpenSolaris/x64

  23 May 2009; Fabian Groffen <grobian@gentoo.org> profile.bashrc:
  Fix charset.alias removal hack, it didn't work, and the FreeBSD version
  isn't resistant against multiple charset.alias files, so go the safe
  route.

  22 May 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  Remove broken xscreensaver-5.08 from prefix tree

  22 May 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  Update mask for xfce4-4.6.*

  19 May 2009; Fabian Groffen <grobian@gentoo.org>
  -bsd/freebsd/6.3/package.mask, -bsd/freebsd/6.3/package.provided,
  -bsd/freebsd/6.3/parent, -bsd/freebsd/6.3/x86/make.defaults,
  -bsd/freebsd/6.3/x86/parent, bsd/freebsd/7.1/package.mask,
  bsd/freebsd/7.1/package.provided, bsd/freebsd/7.1/x64/make.defaults,
  bsd/freebsd/7.1/x86/make.defaults, bsd/freebsd/7.2/package.mask,
  bsd/freebsd/7.2/package.provided, bsd/freebsd/7.2/x64/make.defaults,
  bsd/freebsd/7.2/x86/make.defaults, bsd/freebsd/make.defaults,
  bsd/freebsd/use.force, bsd/freebsd/use.mask, bsd/freebsd/virtuals,
  bsd/netbsd/4.0/package.provided, bsd/netbsd/4.0/x86/make.defaults,
  bsd/netbsd/make.defaults, bsd/netbsd/use.force, bsd/netbsd/use.mask,
  bsd/netbsd/virtuals, bsd/openbsd/4.2/package.mask,
  bsd/openbsd/4.2/package.provided, bsd/openbsd/4.2/ppc/make.defaults,
  bsd/openbsd/4.2/x64/make.defaults, bsd/openbsd/4.2/x86/make.defaults,
  bsd/openbsd/make.defaults, bsd/openbsd/use.force, bsd/openbsd/use.mask,
  bsd/openbsd/virtuals, bsd/package.mask, bsd/packages, bsd/use.mask:
  Added copyright statements to bsd/* files, drop FreeBSD 6.x profiles

  19 May 2009; Fabian Groffen <grobian@gentoo.org> sunos/make.defaults,
  sunos/packages, sunos/solaris/5.9/package.provided,
  sunos/solaris/5.9/sparc/make.defaults,
  sunos/solaris/5.9/sparc/package.mask,
  sunos/solaris/5.9/sparc64/make.defaults,
  sunos/solaris/5.9/sparc64/package.mask,
  sunos/solaris/5.10/package.provided,
  sunos/solaris/5.10/sparc/make.defaults,
  sunos/solaris/5.10/sparc/package.mask,
  sunos/solaris/5.10/sparc64/make.defaults,
  sunos/solaris/5.10/sparc64/package.use.mask,
  sunos/solaris/5.10/x64/make.defaults,
  sunos/solaris/5.10/x64/package.use.mask,
  sunos/solaris/5.10/x86/make.defaults,
  sunos/solaris/5.10/x86/package.use.mask,
  sunos/solaris/5.11/package.provided,
  sunos/solaris/5.11/sparc/make.defaults,
  sunos/solaris/5.11/sparc64/make.defaults,
  sunos/solaris/5.11/sparc64/package.use.mask,
  sunos/solaris/5.11/x64/make.defaults, sunos/solaris/5.11/x64/package.mask,
  sunos/solaris/5.11/x64/package.use.mask,
  sunos/solaris/5.11/x86/make.defaults,
  sunos/solaris/5.11/x86/package.use.mask, sunos/solaris/package.mask,
  sunos/use.force, sunos/use.mask, sunos/virtuals:
  Added copyright statements to sunos/* files

  19 May 2009; Michael Haubenwallner <haubi@gentoo.org>
  prefix/darwin/package.mask, prefix/package.mask,
  prefix/sunos/solaris/package.mask:
  moved '=dev-libs/xmlrpc-c-1.18.02' mask from prefix/ to
  prefix/sunos/solaris/ and prefix/darwin/, as it works on aix

  17 May 2009; Fabian Groffen <grobian@gentoo.org>
  +sunos/solaris/5.10/sparc/package.mask:
  Mask x11-libs/gtk+-2.14.7-r2 on Solaris 10/Sparc as I can't get it to
  compile

  17 May 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  Mask dev-lang/ruby-1.8.7_p160 and dev-lang/ruby-1.8.6_p368 due to
  segfaulting behaviour

  16 May 2009; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/package.mask:
  Mask gnome-base/gconf-2.26.0 as it tries to link a MH_BUNDLE which won't
  work

  14 May 2009; Markus Duft <mduft@gentoo.org> windows/interix/package.mask:
  unmask python 2.6 on interix, since it seems to work fine now. time will
  show :)

  14 May 2009; Fabian Groffen <grobian@gentoo.org> package.use.mask:
  dev-python/sancho is in the tree now

  14 May 2009; Fabian Groffen <grobian@gentoo.org> darwin/package.mask:
  sys-process/proctools was removed from the tree

  14 May 2009; Fabian Groffen <grobian@gentoo.org> darwin/package.mask:
  Remove math-pari mask, I just fixed the problem instead

  13 May 2009; Jeremy Olexa <darkside@gentoo.org>
  irix/6.5/mips/make.defaults, irix/6.5/package.provided,
  irix/make.defaults, irix/package.use.mask, irix/packages,
  irix/profile.bashrc, irix/use.force, irix/use.mask, irix/virtuals,
  mint/m68k/make.defaults, mint/m68k/use.mask, mint/make.defaults,
  mint/package.provided, mint/packages, mint/use.mask, mint/virtuals:
  Update/add copyright for irix and mint profiles

  13 May 2009; Michael Haubenwallner <haubi@gentoo.org> -hpux/B.11.11,
  -hpux/B.11.11/hppa, -hpux/B.11.11/hppa/hppa1.1,
  -hpux/B.11.11/hppa/hppa1.1/make.defaults,
  -hpux/B.11.11/hppa/hppa1.1/parent, -hpux/B.11.11/hppa/hppa2.0,
  -hpux/B.11.11/hppa/hppa2.0/32,
  -hpux/B.11.11/hppa/hppa2.0/32/make.defaults,
  -hpux/B.11.11/hppa/hppa2.0/32/parent, -hpux/B.11.11/hppa/hppa2.0/64,
  -hpux/B.11.11/hppa/hppa2.0/64/make.defaults,
  -hpux/B.11.11/hppa/hppa2.0/64/parent, -hpux/B.11.11/hppa/hppa2.0/parent,
  -hpux/B.11.11/hppa/make.defaults, -hpux/B.11.11/hppa/parent,
  -hpux/B.11.11/package.provided, -hpux/B.11.11/parent,
  hpux/B.11.23/ia64/make.defaults, hpux/B.11.23/package.provided,
  hpux/B.11.31/ia64/make.defaults, hpux/B.11.31/package.provided,
  hpux/make.defaults, hpux/package.mask, -hpux/package.use, hpux/packages,
  hpux/profile.bashrc, hpux/use.force, hpux/use.mask, hpux/virtuals:
  cleanup hpux profiles: update/add copyrights.
  drop HP-UX B.11.11 profile, is hppa only, libtool still broken there.
  binutils-config does not iuse 'extwrapper' any more.

  13 May 2009; Michael Haubenwallner <haubi@gentoo.org>
  aix/5.2.0.0/package.provided, aix/5.2.0.0/ppc/make.defaults,
  aix/5.3.0.0/package.provided, aix/5.3.0.0/ppc/make.defaults,
  aix/6.1.0.0/package.provided, aix/6.1.0.0/ppc/make.defaults,
  aix/make.defaults, aix/package.unmask, -aix/package.use,
  aix/package.use.force, aix/package.use.mask, aix/packages,
  aix/profile.bashrc, aix/use.force, aix/use.mask, aix/virtuals:
  cleanup aix profiles: update/add copyrights.
  net-nds/openldap needs minimal useflag for all versions.
  aix6.1 provides libc-6.1, not libc-5.3.
  binutils-config does not iuse 'extwrapper' any more.

  13 May 2009; Markus Duft <mduft@gentoo.org>
  windows/interix/3.5/package.mask, windows/interix/3.5/package.provided,
  windows/interix/3.5/x86/make.defaults,
  windows/interix/5.2/package.provided,
  windows/interix/5.2/x86/make.defaults,
  windows/interix/6.0/package.provided,
  windows/interix/6.0/x86/make.defaults, windows/interix/make.defaults,
  windows/interix/package.mask, windows/interix/package.use.force,
  windows/interix/package.use.mask, windows/interix/profile.bashrc,
  windows/interix/use.force, windows/interix/use.mask,
  windows/interix/virtuals, windows/winnt/3.5/package.provided,
  windows/winnt/3.5/x86/make.defaults, windows/winnt/5.2/package.provided,
  windows/winnt/5.2/x86/make.defaults, windows/winnt/6.0/package.provided,
  windows/winnt/6.0/x86/make.defaults, windows/winnt/make.defaults,
  windows/winnt/packages, windows/winnt/profile.bashrc,
  windows/winnt/use.mask, windows/winnt/virtuals:
  cleaned up windows profiles (interix, winnt).

  12 May 2009; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/10.3/make.defaults, darwin/macos/10.3/package.mask,
  darwin/macos/10.3/package.provided, darwin/macos/10.3/profile.bashrc,
  darwin/macos/10.3/use.mask, darwin/macos/10.4/make.defaults,
  darwin/macos/10.4/package.mask, darwin/macos/10.4/package.provided,
  darwin/macos/10.4/ppc/make.defaults, darwin/macos/10.4/ppc/use.mask,
  darwin/macos/10.4/ppc64/make.defaults, darwin/macos/10.4/ppc64/use.mask,
  darwin/macos/10.4/profile.bashrc, darwin/macos/10.4/x86/make.defaults,
  darwin/macos/10.4/x86/package.use.force,
  darwin/macos/10.4/x86/package.use.mask, darwin/macos/10.4/x86/use.mask,
  darwin/macos/10.5/make.defaults, darwin/macos/10.5/package.mask,
  darwin/macos/10.5/package.provided, darwin/macos/10.5/package.use.mask,
  darwin/macos/10.5/ppc/make.defaults, darwin/macos/10.5/ppc/package.mask,
  darwin/macos/10.5/ppc/package.use.force,
  darwin/macos/10.5/ppc/package.use.mask, darwin/macos/10.5/ppc/use.mask,
  darwin/macos/10.5/profile.bashrc, darwin/macos/10.5/x64/make.defaults,
  darwin/macos/10.5/x64/package.mask,
  darwin/macos/10.5/x64/package.use.force,
  darwin/macos/10.5/x64/package.use.mask, darwin/macos/10.5/x64/use.mask,
  darwin/macos/10.5/x86/make.defaults, darwin/macos/10.5/x86/package.mask,
  darwin/macos/10.5/x86/package.use.force,
  darwin/macos/10.5/x86/package.use.mask, darwin/macos/10.5/x86/use.mask,
  darwin/macos/make.defaults, darwin/macos/package.mask,
  darwin/macos/package.use.force, darwin/macos/package.use.mask,
  darwin/macos/packages, darwin/macos/virtuals, darwin/make.defaults,
  darwin/package.mask, darwin/package.use.mask, darwin/packages,
  darwin/use.force, darwin/use.mask, darwin/virtuals:
  Update/add copyrights

  12 May 2009; Jeremy Olexa <darkside@gentoo.org> linux/amd64/make.defaults,
  linux/ia64/make.defaults, linux/make.defaults, linux/package.mask,
  linux/package.provided, linux/package.use.mask, linux/packages,
  linux/use.force, linux/use.mask, linux/virtuals, linux/x86/make.defaults:
  Update Copyright headers for linux/

  11 May 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  un-unmasking perl-5.8.8-r6, as I resurrected perl-5.8.8-r5 for bug #269430

  08 May 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask media-video/ffmpeg-9999 (vcs ebuild)

  08 May 2009; Michael Haubenwallner <haubi@gentoo.org>
  +aix/package.use.mask:
  use.masked javacomm for dev-java/ibm-jdk-bin:
  IBM does not provide Java Communications API support for AIX

  06 May 2009; Markus Duft <mduft@gentoo.org> windows/interix/package.mask:
  unmasked bash 4.0 - working now on interix.

  05 May 2009; Fabian Groffen <grobian@gentoo.org>
  bsd/freebsd/7.2/x64/make.defaults, bsd/freebsd/7.2/x86/make.defaults:
  Add profiles for FreeBSD 7.2 (for heiko)

  05 May 2009; Fabian Groffen <grobian@gentoo.org> package.mask,
  +profile.bashrc:
  Add charset.alias removal hack from freebsd profiles

  03 May 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Unmask dev-lang/perl-5.8.8-r6 since it's the only version we have in the
  tree

  01 May 2009; Jeremy Olexa <darkside@gentoo.org> use.mask:
  Unmask USE=prefix in prefix profiles, soon to be masked in base/

  01 May 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Unmask gentoolkit-dev, at last after 2 years :)

  30 Apr 2009; Fabian Groffen <grobian@gentoo.org> linux/package.mask,
  package.mask:
  Don't just let the Linux peepz have all the fun, globally unmask bash-4

  30 Apr 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask xmlrpc-c-1.18.02 as it doesn't compile on at least two platforms

  29 Apr 2009; Jeremy Olexa <darkside@gentoo.org> linux/package.mask:
  Unmask bash-4 on linux platforms, works fine for me

  24 Apr 2009; <mduft@gentoo.org> windows/interix/package.mask:
  masked python >= 2.6.0 on interix, since it seems to be b0rked

  21 Apr 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  p.mask aircrack-ng, libnl, iw

  21 Apr 2009; <mduft@gentoo.org> windows/interix/package.mask:
  removing ncurses mask again, since bootstrapping from zero now works with it.

  17 Apr 2009; <mduft@gentoo.org> windows/interix/package.mask:
  revert unmasking, since bad enough, ncurses exposes the hang even with a
  fresh bootstrap :(

  17 Apr 2009; <mduft@gentoo.org> windows/interix/package.mask:
  removed ncurses mask, since for new bootstraps it works...

  06 Apr 2009; Fabian Groffen <grobian@gentoo.org>
  bsd/freebsd/7.1/x64/make.defaults:
  retain backwards compatability for freebsd keywords/conditionals for new
  64-bits profile

  05 Apr 2009; Fabian Groffen <grobian@gentoo.org>
  bsd/freebsd/7.1/x64/make.defaults:
  Fix up x64-freebsd profile, there is no backwards compat issue, and the
  keyword must be x64-freebsd, not x86-freebsd

  03 Apr 2009; Fabian Groffen <grobian@gentoo.org> darwin/package.use.mask:
  mask gcj on gcc-4.3.3, ld: unknown option: -R/Library/Gentoo/usr/lib

  02 Apr 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask autoconf-2.63b for as long autoconf-wrapper doesn't deal with it

  26 Mar 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  p.mask xfce4-4.6.0 based on its dependance for xorg-server-1.5.3

  26 Mar 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Unmask gcc-4.3, we can compile @system with it, bootstrapping is still
  initially done with 4.2 since 4.3 can't be bootstrapped (fails to compile)

  25 Mar 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  revert libgphoto2 mask, probably a libtool problem involved but not specific
  to this package

  25 Mar 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask =app-text/ghostscript-gpl-8.64* due to b0rkage in real life

  24 Mar 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  p.mask media-libs/libgphoto2

  18 Mar 2009; Michael Haubenwallner <haubi@gentoo.org>
  aix/package.use.force:
  openldap builds with USE=minimal only on AIX, bug #261186

  15 Mar 2009; Fabian Groffen <grobian@gentoo.org> darwin/use.mask:
  unmask sdl again, bug #257960

  15 Mar 2009; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/package.mask, darwin/macos/package.use.force,
  darwin/macos/use.mask:
  unmask opengl use flag, it works since we have opengl in the tree, remove
  mask for libsdl for the same reason

  14 Mar 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  Mask gdb-6.8.50.20090302.8.11 and up, as it seems to be Fedora Linux only

  12 Mar 2009; Markus Duft <mduft@gentoo.org> windows/interix/package.mask:
  mask new graphviz 2.22.0 on interix. doesnt build

  10 Mar 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Enlarge findutils-4.5.3 mask, it still asserts like hell

  10 Mar 2009; Markus Duft <mduft@gentoo.org> windows/interix/package.mask:
  unmasked new coreutils 7.1 on windows, works now.

  10 Mar 2009; Markus Duft <mduft@gentoo.org> windows/interix/package.mask:
  removed unmask for gcc version on interix, which does not exist any longer

  10 Mar 2009; Markus Duft <mduft@gentoo.org> windows/interix/package.mask:
  removed obsolete unmask for cmake on interix, since it is no longer masked
  by main.

  10 Mar 2009; Markus Duft <mduft@gentoo.org> windows/interix/package.mask:
  removed mask for file >=4.24 on interix, since 5.00 now works

  06 Mar 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  remove mask on apache, bug 261105

  06 Mar 2009; Markus Duft <mduft@gentoo.org> windows/interix/package.mask:
  masked new coreutils 7.1 on interix for now. needs some more touching.

  06 Mar 2009; Markus Duft <mduft@gentoo.org> windows/interix/package.mask:
  masked ncurses 5.7 on interix.

  05 Mar 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Unmask libtool-2.2, bootstrapping seems to work on it at least

  25 Feb 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask bash-4.0 as I don't dare kicking it straight into everyone's system

  24 Feb 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask x11-misc/xscreensaver-5.08, waiting for bug #256072

  22 Feb 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Unleash ncurses-5.7, leash readline-6 because some packages need readline-5,
  depending on it, causing our depgraph to break, waiting for gentoo-x86 to
  resolve it in some way

  18 Feb 2009; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/10.5/x86/package.use.mask, darwin/macos/package.use.mask:
  Move mmx masks into the x86 profile, since there an unmask is being done,
  overriding the masks

  16 Feb 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  Mask sys-devel/binutils-2.19.51.0.2 on Solaris as well

  13 Feb 2009; Jeremy Olexa <darkside@gentoo.org> package.use.mask:
  mask USE=ssl on dev-lang/pike globally, bug 256699

  13 Feb 2009; Jeremy Olexa <darkside@gentoo.org>
  darwin/macos/package.use.mask:
  mask USE=python on libgsf for macos, bug 257572

  13 Feb 2009; Jeremy Olexa <darkside@gentoo.org> darwin/use.mask:
  mask USE=sdl on darwin, bug 257960

  13 Feb 2009; Jeremy Olexa <darkside@gentoo.org> ChangeLog:
  unmask USE={sse2,ssse3} on macos 10.5 x86

  04 Feb 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  net-analyzer/pchar requires root access

  02 Feb 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  Fails to compile, complaining about a missing target for gmon.o, maybe
  related to http://gcc.gnu.org/ml/gcc-patches/2008-11/msg00990.html

  02 Feb 2009; User generated by SUA Setup Script <mduft@gentoo.org>
  windows/interix/package.mask:
  added gconf-2.24.0 mask for interix, since from 2.22.0 onwards it requires a
  (working) dbus.

  01 Feb 2009; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/package.use.mask:
  mask mmx USE-flag for media-video/ffmpeg, bug #257225

  31 Jan 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask media-video/ffmpeg-0.4.9_p20090121 because it doesn't compile at all on
  Darwin and Solaris

  31 Jan 2009; Fabian Groffen <grobian@gentoo.org> +bsd/freebsd/7.1,
  bsd/freebsd/7.1/package.mask, bsd/freebsd/7.1/package.provided,
  +bsd/freebsd/7.1/x64, bsd/freebsd/7.1/x64/make.defaults,
  bsd/freebsd/7.1/x86/make.defaults:
  Add FreeBSD 7.1 x86 and x64 profiles

  25 Jan 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask dev-python/pygobject-2.16.0 for some strange libtool weirdness

  22 Jan 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask sys-apps/groff-1.20.1-r1 cause it generates too many bugs

  18 Jan 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask net-misc/ntp as it obviously needs root privileges

  16 Jan 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  mask media-video/mplayer-1.0_rc2_p28288 on Solaris because it doesn't
  compile, sigh

  16 Jan 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/package.mask:
  Mask sys-devel/binutils-2.19.51.0.1 on Solaris as it makes other
  packages fail to compile.

  15 Jan 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  Also mask sandbox-1.2.20_alpha2-r1, bug 255019

  13 Jan 2009; Jeremy Olexa <darkside@gentoo.org> package.mask:
  p.mask >=sandbox-1.3.0, bug 254358

  12 Jan 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Unmask mutt-1.5.19, I^W we are hardcore

  12 Jan 2009; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask git-1.6.1 till bug #254029 is solved

  12 Jan 2009; Fabian Groffen <grobian@gentoo.org>
  sunos/solaris/5.11/x64/package.mask:
  mask dev-libs/zziplib-0.13.50 on Solaris 11/x64

  08 Jan 2009; Jeremy Olexa <darkside@gentoo.org> aix/package.mask:
  p.mask >=net-misc/openssh-5.0_p1-r2 on aix

  07 Jan 2009; Jeremy Olexa <darkside@gentoo.org> aix/package.mask:
  p.mask >=dev-libs/openssl-0.9.8i on aix

  06 Jan 2009; Jeremy Olexa <darkside@gentoo.org> package.mask,
  sunos/package.mask:
  elevate p.mask on findutils-4.5.3

  30 Dec 2008; Jeremy Olexa <darkside@gentoo.org> +aix/6.1.0.0,
  +aix/6.1.0.0/package.provided, +aix/6.1.0.0/parent, +aix/6.1.0.0/ppc,
  +aix/6.1.0.0/ppc/make.defaults, +aix/6.1.0.0/ppc/parent:
  Adding AIX-6.1 profiles

  30 Dec 2008; Fabian Groffen <grobian@gentoo.org> ChangeLog:
  Mask aqua USE-flag for app-editors/emacs-cvs on request of pipping

  29 Dec 2008; Jeremy Olexa <darkside@gentoo.org> +linux/package.mask:
  unmask app-misc/pax-utils-0.1.19 on linux

  27 Dec 2008; Fabian Groffen <grobian@gentoo.org> irix/package.use.mask:
  Mask ipv6 USE-flag for python, as the latter seems not to be able to use the
  former on IRIX

  27 Dec 2008; Fabian Groffen <grobian@gentoo.org> sunos/package.mask:
  Mask sys-apps/findutils-4.5.3 on Solaris, as it asserts there (maybe on
  other platforms too, but haven't encountered it yet)

  23 Dec 2008; Jeremy Olexa <darkside@gentoo.org> +linux/ia64,
  +linux/ia64/make.defaults, +linux/ia64/parent:
  Initial commit of ia64-linux profiles (it returns!)

  23 Dec 2008; Jeremy Olexa <darkside@gentoo.org> package.mask,
  sunos/solaris/5.11/x64/package.mask:
  Move mask up because it fails on linux too

  22 Dec 2008; Fabian Groffen <grobian@gentoo.org>
  +sunos/solaris/5.11/x64/package.mask:
  Mask binutils-2.19.50.0.1 on x64/OpenSolaris since it seems it can't
  recompile itself

  21 Dec 2008; Fabian Groffen <grobian@gentoo.org>
  darwin/macos/package.use.mask:
  Use.mask some non-working flags for packages, by Elias Pipping

  03 Dec 2008; Fabian Groffen <grobian@gentoo.org> package.mask:
  Mask pax-utils/0.1.19 due to GNU-isms

  02 Dec 2008; Jeremy Olexa <darkside@gentoo.org> package.mask:
  sync package.mask from default-prefix

  18 Nov 2008; Jeremy Olexa <darkside@gentoo.org> -linux/package.mask:
  sync profiles from default-prefix/

  13 Nov 2008; Jeremy Olexa <darkside@gentoo.org> linux/amd64/make.defaults:
  LIBDIR_amd64 is def needed, otherwise stuff gets installed to usr//blah,
  instead of usr/$LIBDIR_amd64/blah

  13 Nov 2008; Jeremy Olexa <darkside@gentoo.org> linux/amd64/make.defaults:
  setting LIBDIR_amd64 to null 'fixes' things, not sure why

  12 Nov 2008; Jeremy Olexa <darkside@gentoo.org> linux/amd64/make.defaults:
  add SYMLINK_LIB=no to amd64 make.defaults

  10 Nov 2008; Jeremy Olexa <darkside@gentoo.org> package.mask:
  sync p.mask from default-prefix

  07 Nov 2008; Jeremy Olexa <darkside@gentoo.org> +linux/package.use.mask:
  can't built_with_use check on something that we package.provide, mask
  USE=pam on app-office/openoffice

  06 Nov 2008; Jeremy Olexa <darkside@gentoo.org> linux/use.mask:
  re-add linux stuff to linux/use.mask that was missing from that file

  06 Nov 2008; Jeremy Olexa <darkside@gentoo.org> linux/packages:
  remove sys-apps/man-pages from linux/packages because we now inherit it from
  default/linux/

  06 Nov 2008; Jeremy Olexa <darkside@gentoo.org> +linux/use.mask:
  add USE=acl to linux/use.mask

  06 Nov 2008; Jeremy Olexa <darkside@gentoo.org> use.mask:
  add gpm to use.mask

  05 Nov 2008; Jeremy Olexa <darkside@gentoo.org> linux/amd64/parent,
  linux/packages, linux/x86/parent, +package.provided, use.mask:
  change order of parents for proper inheritance, remove items from the system
  set that get pulled in by default/linux/, use.mask cups, forgot to cp
  package.provided when I made the initial cp

  05 Nov 2008; Jeremy Olexa <darkside@gentoo.org> linux/amd64/make.defaults,
  linux/x86/make.defaults:
  remove $ARCH from default linux ACCEPT_KEYWORDS

  31 Oct 2008; Jeremy Olexa <darkside@gentoo.org> +., +linux, +linux/amd64,
  +linux/amd64/make.defaults, +linux/amd64/parent, +linux/make.defaults,
  +linux/package.mask, +linux/package.provided, +linux/packages,
  +linux/parent, +linux/use.force, +linux/virtuals, +linux/x86,
  +linux/x86/make.defaults, +linux/x86/parent, +make.defaults,
  +package.mask, +package.use.mask, +packages, +use.force, +use.mask,
  +virtuals:
  initial commit of a *new* profile system for prefix, details forthcoming
  after testing