summaryrefslogtreecommitdiff
blob: bb2559f25ea0af76ef7442c8925ed7811749fdd2 (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
[
    {
        "CATEGORY": "dev-libs", 
        "distfile_list": [], 
        "pkg_name": "json-c-0.9"
    }, 
    {
        "CATEGORY": "media-fonts", 
        "distfile_list": [], 
        "pkg_name": "gnu-gs-fonts-std-8.11"
    }, 
    {
        "CATEGORY": "x11-proto", 
        "distfile_list": [], 
        "pkg_name": "xextproto-7.1.1"
    }, 
    {
        "CATEGORY": "x11-libs", 
        "distfile_list": [], 
        "pkg_name": "xtrans-1.2.5"
    }, 
    {
        "CATEGORY": "x11-libs", 
        "distfile_list": [
            {
                "RMD160": "5f3fea120f2dba274c4150b02162bba40b65a872", 
                "SHA1": "977c10b88a2230e96868edc78a9e3789c0fcbf70", 
                "SHA256": "176f51ddb06dce67ab4b2efc6b327dc21ed8f764c5d97acc15ff1f907c2affae", 
                "name": "qt-everywhere-opensource-src-4.6.2.tar.gz", 
                "size": 160601949, 
                "url_list": [
                    "ftp://gentoo.mirrors.tds.net/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://ftp.lug.udel.edu/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://www.gtlib.gatech.edu/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://ftp.wallawalla.edu/pub/mirrors/ftp.gentoo.org/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://gentoo.netnitco.net/pub/mirrors/gentoo/source/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.mirrors.easynews.com/linux/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://mirror.usu.edu/mirrors/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://gentoo.chem.wisc.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.osuosl.org/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.mirrors.hoobly.com/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://mirror.its.uidaho.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://gentoo.llarian.net/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://mirrors.rit.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://www.cyberuse.com/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://mirror.datapipe.net/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.mirrors.tds.net/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://mirrors.cs.wmich.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://mirrors.rit.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://mirror.iawnet.sandia.gov/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://mirror.mcs.anl.gov/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.cs.uni.edu/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://mirror.datapipe.net/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://lug.mtu.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://mirror.its.uidaho.edu/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://lug.mtu.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.chem.wisc.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.llarian.net/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.netnitco.net/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://mirror.mcs.anl.gov/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://mirror.lug.udel.edu/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://ftp.gtlib.gatech.edu/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://get.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.6.2.tar.gz"
                ]
            }
        ], 
        "pkg_name": "qt-core-4.6.2-r1"
    }, 
    {
        "CATEGORY": "x11-proto", 
        "distfile_list": [], 
        "pkg_name": "inputproto-2.0"
    }, 
    {
        "CATEGORY": "media-libs", 
        "distfile_list": [], 
        "pkg_name": "libpng-1.2.43-r2"
    }, 
    {
        "CATEGORY": "x11-proto", 
        "distfile_list": [], 
        "pkg_name": "renderproto-0.11"
    }, 
    {
        "CATEGORY": "x11-proto", 
        "distfile_list": [], 
        "pkg_name": "kbproto-1.0.4"
    }, 
    {
        "CATEGORY": "dev-libs", 
        "distfile_list": [], 
        "pkg_name": "libgpg-error-1.7"
    }, 
    {
        "CATEGORY": "x11-proto", 
        "distfile_list": [], 
        "pkg_name": "fontsproto-2.1.0"
    }, 
    {
        "CATEGORY": "x11-libs", 
        "distfile_list": [
            {
                "RMD160": "4a890690422cc1051cef6f167b0474ff4dd77ef1", 
                "SHA1": "e71370c349e93ba70f91ad1148ca9e5cabfcca4f", 
                "SHA256": "7f3cde0331e9ad3da720b1a8255e121673701199df0802b62380436e74222700", 
                "name": "libfontenc-1.0.5.tar.bz2", 
                "size": 250146, 
                "url_list": [
                    "ftp://gentoo.mirrors.tds.net/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "ftp://ftp.lug.udel.edu/pub/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://www.gtlib.gatech.edu/pub/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "ftp://ftp.wallawalla.edu/pub/mirrors/ftp.gentoo.org/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "ftp://gentoo.netnitco.net/pub/mirrors/gentoo/source/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://gentoo.mirrors.easynews.com/linux/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://mirror.usu.edu/mirrors/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "ftp://gentoo.chem.wisc.edu/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://gentoo.osuosl.org/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://gentoo.mirrors.hoobly.com/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "ftp://mirror.its.uidaho.edu/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "ftp://gentoo.llarian.net/pub/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "ftp://mirrors.rit.edu/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://www.cyberuse.com/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://mirror.datapipe.net/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://gentoo.mirrors.tds.net/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://mirrors.cs.wmich.edu/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://mirrors.rit.edu/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "ftp://mirror.iawnet.sandia.gov/pub/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://mirror.mcs.anl.gov/pub/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://gentoo.cs.uni.edu/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "ftp://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "ftp://mirror.datapipe.net/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://lug.mtu.edu/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://mirror.its.uidaho.edu/pub/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "ftp://lug.mtu.edu/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://gentoo.chem.wisc.edu/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://gentoo.llarian.net/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "ftp://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://gentoo.netnitco.net/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "ftp://mirror.mcs.anl.gov/pub/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://mirror.lug.udel.edu/pub/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "ftp://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "ftp://ftp.gtlib.gatech.edu/pub/gentoo/distfiles/libfontenc-1.0.5.tar.bz2", 
                    "http://xorg.freedesktop.org/releases/individual/lib/libfontenc-1.0.5.tar.bz2"
                ]
            }
        ], 
        "pkg_name": "libfontenc-1.0.5"
    }, 
    {
        "CATEGORY": "media-libs", 
        "distfile_list": [], 
        "pkg_name": "tiff-3.9.2-r1"
    }, 
    {
        "CATEGORY": "dev-lang", 
        "distfile_list": [], 
        "pkg_name": "tcl-8.5.7"
    }, 
    {
        "CATEGORY": "dev-libs", 
        "distfile_list": [
            {
                "RMD160": "efe2f03ae37512636d33c7d285c46d9050e9296b", 
                "SHA1": "b815899dff10d245b31257f434230f8e45f2446a", 
                "SHA256": "b59845ebbad959f86a349873fda75af02a69105a4e5c6a7eb40225358677411a", 
                "name": "xmlrpc-c-1.18.02.tar.bz2", 
                "size": 552233, 
                "url_list": [
                    "ftp://gentoo.mirrors.tds.net/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://ftp.lug.udel.edu/pub/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://www.gtlib.gatech.edu/pub/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://ftp.wallawalla.edu/pub/mirrors/ftp.gentoo.org/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://gentoo.netnitco.net/pub/mirrors/gentoo/source/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://gentoo.mirrors.easynews.com/linux/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://mirror.usu.edu/mirrors/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://gentoo.chem.wisc.edu/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://gentoo.osuosl.org/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://gentoo.mirrors.hoobly.com/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://mirror.its.uidaho.edu/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://gentoo.llarian.net/pub/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://mirrors.rit.edu/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://www.cyberuse.com/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://mirror.datapipe.net/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://gentoo.mirrors.tds.net/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://mirrors.cs.wmich.edu/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://mirrors.rit.edu/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://mirror.iawnet.sandia.gov/pub/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://mirror.mcs.anl.gov/pub/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://gentoo.cs.uni.edu/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://mirror.datapipe.net/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://lug.mtu.edu/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://mirror.its.uidaho.edu/pub/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://lug.mtu.edu/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://gentoo.chem.wisc.edu/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://gentoo.llarian.net/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://gentoo.netnitco.net/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://mirror.mcs.anl.gov/pub/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://mirror.lug.udel.edu/pub/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://ftp.gtlib.gatech.edu/pub/gentoo/distfiles/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://gentoo.osuosl.org/distfiles/xmlrpc-c/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://mirror.ovh.net/gentoo-distfiles/distfiles/xmlrpc-c/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://ftp.free.fr/mirrors/ftp.gentoo.org/distfiles/xmlrpc-c/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://open-systems.ufl.edu/mirrors/gentoo/distfiles/xmlrpc-c/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://ftp.jaist.ac.jp/pub/Linux/Gentoo/distfiles/xmlrpc-c/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://gentoo.mirrors.pair.com/distfiles/xmlrpc-c/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://ftp.belnet.be/mirror/rsync.gentoo.org/gentoo/distfiles/xmlrpc-c/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://ftp.snt.utwente.nl/pub/os/linux/gentoo/distfiles/xmlrpc-c/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://mirror.bytemark.co.uk/gentoo/distfiles/xmlrpc-c/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://mirror.bytemark.co.uk/gentoo/distfiles/xmlrpc-c/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://ftp.gentoo.mesh-solutions.com/gentoo/distfiles/xmlrpc-c/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://ftp.osuosl.org/pub/gentoo/distfiles/xmlrpc-c/xmlrpc-c-1.18.02.tar.bz2", 
                    "http://mirrors.tds.net/gentoo/distfiles/xmlrpc-c/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/xmlrpc-c/xmlrpc-c-1.18.02.tar.bz2", 
                    "ftp://ftp.snt.utwente.nl/pub/os/linux/gentoo/distfiles/xmlrpc-c/xmlrpc-c-1.18.02.tar.bz2"
                ]
            }
        ], 
        "pkg_name": "xmlrpc-c-1.18.02"
    }, 
    {
        "CATEGORY": "x11-proto", 
        "distfile_list": [
            {
                "RMD160": "3b61572ace8c33f57e4fab0995c8c8006b406c54", 
                "SHA1": "36731bae6e815453af4b055c26ad8e9e2653ca05", 
                "SHA256": "d93ca3c0ae710a45da6a27e1eeadfb3c9d4aee47f23657c996e1124c0d9985ca", 
                "name": "randrproto-1.3.1.tar.bz2", 
                "size": 110435, 
                "url_list": [
                    "ftp://gentoo.mirrors.tds.net/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "ftp://ftp.lug.udel.edu/pub/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://www.gtlib.gatech.edu/pub/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "ftp://ftp.wallawalla.edu/pub/mirrors/ftp.gentoo.org/distfiles/randrproto-1.3.1.tar.bz2", 
                    "ftp://gentoo.netnitco.net/pub/mirrors/gentoo/source/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://gentoo.mirrors.easynews.com/linux/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://mirror.usu.edu/mirrors/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "ftp://gentoo.chem.wisc.edu/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://gentoo.osuosl.org/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://gentoo.mirrors.hoobly.com/distfiles/randrproto-1.3.1.tar.bz2", 
                    "ftp://mirror.its.uidaho.edu/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "ftp://gentoo.llarian.net/pub/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "ftp://mirrors.rit.edu/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://www.cyberuse.com/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://mirror.datapipe.net/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://gentoo.mirrors.tds.net/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://mirrors.cs.wmich.edu/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://mirrors.rit.edu/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "ftp://mirror.iawnet.sandia.gov/pub/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://mirror.mcs.anl.gov/pub/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://gentoo.cs.uni.edu/distfiles/randrproto-1.3.1.tar.bz2", 
                    "ftp://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "ftp://mirror.datapipe.net/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://lug.mtu.edu/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://mirror.its.uidaho.edu/pub/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "ftp://lug.mtu.edu/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://gentoo.chem.wisc.edu/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://gentoo.llarian.net/distfiles/randrproto-1.3.1.tar.bz2", 
                    "ftp://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://gentoo.netnitco.net/distfiles/randrproto-1.3.1.tar.bz2", 
                    "ftp://mirror.mcs.anl.gov/pub/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://mirror.lug.udel.edu/pub/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "ftp://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/randrproto-1.3.1.tar.bz2", 
                    "ftp://ftp.gtlib.gatech.edu/pub/gentoo/distfiles/randrproto-1.3.1.tar.bz2", 
                    "http://xorg.freedesktop.org/releases/individual/proto/randrproto-1.3.1.tar.bz2"
                ]
            }
        ], 
        "pkg_name": "randrproto-1.3.1"
    }, 
    {
        "CATEGORY": "dev-lang", 
        "distfile_list": [], 
        "pkg_name": "yasm-0.8.0"
    }, 
    {
        "CATEGORY": "x11-proto", 
        "distfile_list": [], 
        "pkg_name": "xf86bigfontproto-1.2.0"
    }, 
    {
        "CATEGORY": "x11-proto", 
        "distfile_list": [], 
        "pkg_name": "xcb-proto-1.6"
    }, 
    {
        "CATEGORY": "x11-libs", 
        "distfile_list": [], 
        "pkg_name": "libXau-1.0.5"
    }, 
    {
        "CATEGORY": "x11-libs", 
        "distfile_list": [], 
        "pkg_name": "libXdmcp-1.0.3"
    }, 
    {
        "CATEGORY": "dev-libs", 
        "distfile_list": [], 
        "pkg_name": "libpthread-stubs-0.1"
    }, 
    {
        "CATEGORY": "dev-libs", 
        "distfile_list": [], 
        "pkg_name": "libgcrypt-1.4.5"
    }, 
    {
        "CATEGORY": "x11-proto", 
        "distfile_list": [], 
        "pkg_name": "fixesproto-4.1.1"
    }, 
    {
        "CATEGORY": "media-video", 
        "distfile_list": [], 
        "pkg_name": "ffmpeg-0.5_p20373"
    }, 
    {
        "CATEGORY": "x11-libs", 
        "distfile_list": [
            {
                "RMD160": "5f3fea120f2dba274c4150b02162bba40b65a872", 
                "SHA1": "977c10b88a2230e96868edc78a9e3789c0fcbf70", 
                "SHA256": "176f51ddb06dce67ab4b2efc6b327dc21ed8f764c5d97acc15ff1f907c2affae", 
                "name": "qt-everywhere-opensource-src-4.6.2.tar.gz", 
                "size": 160601949, 
                "url_list": [
                    "ftp://gentoo.mirrors.tds.net/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://ftp.lug.udel.edu/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://www.gtlib.gatech.edu/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://ftp.wallawalla.edu/pub/mirrors/ftp.gentoo.org/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://gentoo.netnitco.net/pub/mirrors/gentoo/source/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.mirrors.easynews.com/linux/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://mirror.usu.edu/mirrors/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://gentoo.chem.wisc.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.osuosl.org/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.mirrors.hoobly.com/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://mirror.its.uidaho.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://gentoo.llarian.net/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://mirrors.rit.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://www.cyberuse.com/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://mirror.datapipe.net/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.mirrors.tds.net/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://mirrors.cs.wmich.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://mirrors.rit.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://mirror.iawnet.sandia.gov/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://mirror.mcs.anl.gov/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.cs.uni.edu/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://mirror.datapipe.net/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://lug.mtu.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://mirror.its.uidaho.edu/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://lug.mtu.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.chem.wisc.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.llarian.net/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.netnitco.net/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://mirror.mcs.anl.gov/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://mirror.lug.udel.edu/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://ftp.gtlib.gatech.edu/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://get.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.6.2.tar.gz"
                ]
            }
        ], 
        "pkg_name": "qt-script-4.6.2"
    }, 
    {
        "CATEGORY": "x11-libs", 
        "distfile_list": [
            {
                "RMD160": "a3368fb979409aaaf577b3c8ff6e3aa906f63114", 
                "SHA1": "f8dc669760975b41885143f828b54164224c8a31", 
                "SHA256": "112bfc30820b98deec4c9914536c5aa2f8b5162bd2b0bdb342343168e06f7679", 
                "name": "libXfont-1.4.1.tar.bz2", 
                "size": 428802, 
                "url_list": [
                    "ftp://gentoo.mirrors.tds.net/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "ftp://ftp.lug.udel.edu/pub/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://www.gtlib.gatech.edu/pub/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "ftp://ftp.wallawalla.edu/pub/mirrors/ftp.gentoo.org/distfiles/libXfont-1.4.1.tar.bz2", 
                    "ftp://gentoo.netnitco.net/pub/mirrors/gentoo/source/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://gentoo.mirrors.easynews.com/linux/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://mirror.usu.edu/mirrors/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "ftp://gentoo.chem.wisc.edu/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://gentoo.osuosl.org/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://gentoo.mirrors.hoobly.com/distfiles/libXfont-1.4.1.tar.bz2", 
                    "ftp://mirror.its.uidaho.edu/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "ftp://gentoo.llarian.net/pub/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "ftp://mirrors.rit.edu/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://www.cyberuse.com/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://mirror.datapipe.net/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://gentoo.mirrors.tds.net/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://mirrors.cs.wmich.edu/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://mirrors.rit.edu/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "ftp://mirror.iawnet.sandia.gov/pub/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://mirror.mcs.anl.gov/pub/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://gentoo.cs.uni.edu/distfiles/libXfont-1.4.1.tar.bz2", 
                    "ftp://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "ftp://mirror.datapipe.net/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://lug.mtu.edu/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://mirror.its.uidaho.edu/pub/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "ftp://lug.mtu.edu/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://gentoo.chem.wisc.edu/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://gentoo.llarian.net/distfiles/libXfont-1.4.1.tar.bz2", 
                    "ftp://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://gentoo.netnitco.net/distfiles/libXfont-1.4.1.tar.bz2", 
                    "ftp://mirror.mcs.anl.gov/pub/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://mirror.lug.udel.edu/pub/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "ftp://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/libXfont-1.4.1.tar.bz2", 
                    "ftp://ftp.gtlib.gatech.edu/pub/gentoo/distfiles/libXfont-1.4.1.tar.bz2", 
                    "http://xorg.freedesktop.org/releases/individual/lib/libXfont-1.4.1.tar.bz2"
                ]
            }
        ], 
        "pkg_name": "libXfont-1.4.1"
    }, 
    {
        "CATEGORY": "dev-util", 
        "distfile_list": [
            {
                "RMD160": "e4217067537f76e52317514cb5bb0cf38733d16a", 
                "SHA1": "c7e295683e061c2ed19773a1f0444972f75db092", 
                "SHA256": "9cdd2152e37b05d0d40d334a1bb2dfc0250021797360f971c6ea3d457ac9fdf2", 
                "name": "cmake-2.6.4.tar.gz", 
                "size": 3285371, 
                "url_list": [
                    "ftp://gentoo.mirrors.tds.net/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "ftp://ftp.lug.udel.edu/pub/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "http://www.gtlib.gatech.edu/pub/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "ftp://ftp.wallawalla.edu/pub/mirrors/ftp.gentoo.org/distfiles/cmake-2.6.4.tar.gz", 
                    "ftp://gentoo.netnitco.net/pub/mirrors/gentoo/source/distfiles/cmake-2.6.4.tar.gz", 
                    "http://gentoo.mirrors.easynews.com/linux/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "http://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "http://mirror.usu.edu/mirrors/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "ftp://gentoo.chem.wisc.edu/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/cmake-2.6.4.tar.gz", 
                    "http://gentoo.osuosl.org/distfiles/cmake-2.6.4.tar.gz", 
                    "http://gentoo.mirrors.hoobly.com/distfiles/cmake-2.6.4.tar.gz", 
                    "ftp://mirror.its.uidaho.edu/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "ftp://gentoo.llarian.net/pub/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "ftp://mirrors.rit.edu/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "http://www.cyberuse.com/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "http://mirror.datapipe.net/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "http://gentoo.mirrors.tds.net/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "http://mirrors.cs.wmich.edu/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "http://mirrors.rit.edu/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "ftp://mirror.iawnet.sandia.gov/pub/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "http://mirror.mcs.anl.gov/pub/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "http://gentoo.cs.uni.edu/distfiles/cmake-2.6.4.tar.gz", 
                    "ftp://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "ftp://mirror.datapipe.net/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "http://lug.mtu.edu/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "http://mirror.its.uidaho.edu/pub/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "ftp://lug.mtu.edu/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "http://gentoo.chem.wisc.edu/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "http://gentoo.llarian.net/distfiles/cmake-2.6.4.tar.gz", 
                    "ftp://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "http://gentoo.netnitco.net/distfiles/cmake-2.6.4.tar.gz", 
                    "ftp://mirror.mcs.anl.gov/pub/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "http://mirror.lug.udel.edu/pub/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "ftp://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/cmake-2.6.4.tar.gz", 
                    "ftp://ftp.gtlib.gatech.edu/pub/gentoo/distfiles/cmake-2.6.4.tar.gz", 
                    "http://www.cmake.org/files/v2.6/cmake-2.6.4.tar.gz"
                ]
            }
        ], 
        "pkg_name": "cmake-2.6.4-r3"
    }, 
    {
        "CATEGORY": "x11-libs", 
        "distfile_list": [], 
        "pkg_name": "libICE-1.0.6"
    }, 
    {
        "CATEGORY": "x11-libs", 
        "distfile_list": [], 
        "pkg_name": "libSM-1.1.1"
    }, 
    {
        "CATEGORY": "dev-libs", 
        "distfile_list": [], 
        "pkg_name": "libxslt-1.1.26"
    }, 
    {
        "CATEGORY": "x11-libs", 
        "distfile_list": [], 
        "pkg_name": "libxcb-1.5"
    }, 
    {
        "CATEGORY": "x11-libs", 
        "distfile_list": [], 
        "pkg_name": "libX11-1.3.3"
    }, 
    {
        "CATEGORY": "x11-libs", 
        "distfile_list": [], 
        "pkg_name": "libXext-1.1.1"
    }, 
    {
        "CATEGORY": "x11-libs", 
        "distfile_list": [
            {
                "RMD160": "efb078aa00d8a3463a2f8267f600579372ded38d", 
                "SHA1": "278f762feb8e754aa5214175abf580ff486281f7", 
                "SHA256": "bc0590438a4be2b674cbac6f4ad46e5a89acd02aa94817da0fa8eb3ef05ed5d5", 
                "name": "libXrender-0.9.5.tar.bz2", 
                "size": 261483, 
                "url_list": [
                    "ftp://gentoo.mirrors.tds.net/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "ftp://ftp.lug.udel.edu/pub/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://www.gtlib.gatech.edu/pub/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "ftp://ftp.wallawalla.edu/pub/mirrors/ftp.gentoo.org/distfiles/libXrender-0.9.5.tar.bz2", 
                    "ftp://gentoo.netnitco.net/pub/mirrors/gentoo/source/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://gentoo.mirrors.easynews.com/linux/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://mirror.usu.edu/mirrors/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "ftp://gentoo.chem.wisc.edu/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://gentoo.osuosl.org/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://gentoo.mirrors.hoobly.com/distfiles/libXrender-0.9.5.tar.bz2", 
                    "ftp://mirror.its.uidaho.edu/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "ftp://gentoo.llarian.net/pub/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "ftp://mirrors.rit.edu/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://www.cyberuse.com/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://mirror.datapipe.net/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://gentoo.mirrors.tds.net/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://mirrors.cs.wmich.edu/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://mirrors.rit.edu/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "ftp://mirror.iawnet.sandia.gov/pub/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://mirror.mcs.anl.gov/pub/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://gentoo.cs.uni.edu/distfiles/libXrender-0.9.5.tar.bz2", 
                    "ftp://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "ftp://mirror.datapipe.net/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://lug.mtu.edu/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://mirror.its.uidaho.edu/pub/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "ftp://lug.mtu.edu/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://gentoo.chem.wisc.edu/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://gentoo.llarian.net/distfiles/libXrender-0.9.5.tar.bz2", 
                    "ftp://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://gentoo.netnitco.net/distfiles/libXrender-0.9.5.tar.bz2", 
                    "ftp://mirror.mcs.anl.gov/pub/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://mirror.lug.udel.edu/pub/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "ftp://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/libXrender-0.9.5.tar.bz2", 
                    "ftp://ftp.gtlib.gatech.edu/pub/gentoo/distfiles/libXrender-0.9.5.tar.bz2", 
                    "http://xorg.freedesktop.org/releases/individual/lib/libXrender-0.9.5.tar.bz2"
                ]
            }
        ], 
        "pkg_name": "libXrender-0.9.5"
    }, 
    {
        "CATEGORY": "x11-libs", 
        "distfile_list": [], 
        "pkg_name": "libXfixes-4.0.4"
    }, 
    {
        "CATEGORY": "x11-libs", 
        "distfile_list": [], 
        "pkg_name": "libXt-1.0.8"
    }, 
    {
        "CATEGORY": "x11-libs", 
        "distfile_list": [
            {
                "RMD160": "2b63caf8c6c26685f2b77f4fad6d9fd15db610ce", 
                "SHA1": "33dd2f67060465f872db9ea03f597e28517f0c8e", 
                "SHA256": "5961ce0f77c5173a8208b3ed669ac01719f2bf4a10517ffa6c33a5e064802e78", 
                "name": "libXrandr-1.3.0.tar.bz2", 
                "size": 262270, 
                "url_list": [
                    "ftp://gentoo.mirrors.tds.net/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "ftp://ftp.lug.udel.edu/pub/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://www.gtlib.gatech.edu/pub/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "ftp://ftp.wallawalla.edu/pub/mirrors/ftp.gentoo.org/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "ftp://gentoo.netnitco.net/pub/mirrors/gentoo/source/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://gentoo.mirrors.easynews.com/linux/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://mirror.usu.edu/mirrors/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "ftp://gentoo.chem.wisc.edu/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://gentoo.osuosl.org/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://gentoo.mirrors.hoobly.com/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "ftp://mirror.its.uidaho.edu/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "ftp://gentoo.llarian.net/pub/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "ftp://mirrors.rit.edu/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://www.cyberuse.com/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://mirror.datapipe.net/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://gentoo.mirrors.tds.net/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://mirrors.cs.wmich.edu/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://mirrors.rit.edu/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "ftp://mirror.iawnet.sandia.gov/pub/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://mirror.mcs.anl.gov/pub/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://gentoo.cs.uni.edu/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "ftp://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "ftp://mirror.datapipe.net/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://lug.mtu.edu/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://mirror.its.uidaho.edu/pub/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "ftp://lug.mtu.edu/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://gentoo.chem.wisc.edu/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://gentoo.llarian.net/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "ftp://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://gentoo.netnitco.net/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "ftp://mirror.mcs.anl.gov/pub/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://mirror.lug.udel.edu/pub/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "ftp://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "ftp://ftp.gtlib.gatech.edu/pub/gentoo/distfiles/libXrandr-1.3.0.tar.bz2", 
                    "http://xorg.freedesktop.org/releases/individual/lib/libXrandr-1.3.0.tar.bz2"
                ]
            }
        ], 
        "pkg_name": "libXrandr-1.3.0"
    }, 
    {
        "CATEGORY": "x11-libs", 
        "distfile_list": [
            {
                "RMD160": "4d142c811d35175280f566abc918f289752877c7", 
                "SHA1": "096d0e538d37fd865705e5f45b0e96c7294c1f2f", 
                "SHA256": "b9446df62203f2c3204b6bcc0057dc909d0dc792f0dd97bc491581b08be36cbd", 
                "name": "libXcursor-1.1.10.tar.bz2", 
                "size": 264543, 
                "url_list": [
                    "ftp://gentoo.mirrors.tds.net/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "ftp://ftp.lug.udel.edu/pub/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://www.gtlib.gatech.edu/pub/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "ftp://ftp.wallawalla.edu/pub/mirrors/ftp.gentoo.org/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "ftp://gentoo.netnitco.net/pub/mirrors/gentoo/source/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://gentoo.mirrors.easynews.com/linux/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://mirror.usu.edu/mirrors/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "ftp://gentoo.chem.wisc.edu/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://gentoo.osuosl.org/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://gentoo.mirrors.hoobly.com/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "ftp://mirror.its.uidaho.edu/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "ftp://gentoo.llarian.net/pub/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "ftp://mirrors.rit.edu/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://www.cyberuse.com/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://mirror.datapipe.net/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://gentoo.mirrors.tds.net/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://mirrors.cs.wmich.edu/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://mirrors.rit.edu/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "ftp://mirror.iawnet.sandia.gov/pub/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://mirror.mcs.anl.gov/pub/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://gentoo.cs.uni.edu/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "ftp://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "ftp://mirror.datapipe.net/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://lug.mtu.edu/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://mirror.its.uidaho.edu/pub/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "ftp://lug.mtu.edu/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://gentoo.chem.wisc.edu/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://gentoo.llarian.net/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "ftp://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://gentoo.netnitco.net/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "ftp://mirror.mcs.anl.gov/pub/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://mirror.lug.udel.edu/pub/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "ftp://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "ftp://ftp.gtlib.gatech.edu/pub/gentoo/distfiles/libXcursor-1.1.10.tar.bz2", 
                    "http://xorg.freedesktop.org/releases/individual/lib/libXcursor-1.1.10.tar.bz2"
                ]
            }
        ], 
        "pkg_name": "libXcursor-1.1.10"
    }, 
    {
        "CATEGORY": "x11-libs", 
        "distfile_list": [], 
        "pkg_name": "libXi-1.3"
    }, 
    {
        "CATEGORY": "dev-lang", 
        "distfile_list": [], 
        "pkg_name": "tk-8.5.7"
    }, 
    {
        "CATEGORY": "dev-lang", 
        "distfile_list": [], 
        "pkg_name": "swig-1.3.36"
    }, 
    {
        "CATEGORY": "media-libs", 
        "distfile_list": [], 
        "pkg_name": "lcms-1.19"
    }, 
    {
        "CATEGORY": "media-libs", 
        "distfile_list": [], 
        "pkg_name": "fontconfig-2.8.0"
    }, 
    {
        "CATEGORY": "app-text", 
        "distfile_list": [
            {
                "RMD160": "a8fd07ec4dc918cc17390a5236aff9a43e1f7253", 
                "SHA1": "bce8b675fb7c22d507b1965efa7bd71d9ce09460", 
                "SHA256": "7a4ffe6d2950c446c285700d3b2dc399540a27ce635dd712aff646f02f8dfbcc", 
                "name": "poppler-0.12.3.tar.gz", 
                "size": 1616883, 
                "url_list": [
                    "ftp://gentoo.mirrors.tds.net/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "ftp://ftp.lug.udel.edu/pub/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "http://www.gtlib.gatech.edu/pub/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "ftp://ftp.wallawalla.edu/pub/mirrors/ftp.gentoo.org/distfiles/poppler-0.12.3.tar.gz", 
                    "ftp://gentoo.netnitco.net/pub/mirrors/gentoo/source/distfiles/poppler-0.12.3.tar.gz", 
                    "http://gentoo.mirrors.easynews.com/linux/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "http://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "http://mirror.usu.edu/mirrors/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "ftp://gentoo.chem.wisc.edu/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/poppler-0.12.3.tar.gz", 
                    "http://gentoo.osuosl.org/distfiles/poppler-0.12.3.tar.gz", 
                    "http://gentoo.mirrors.hoobly.com/distfiles/poppler-0.12.3.tar.gz", 
                    "ftp://mirror.its.uidaho.edu/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "ftp://gentoo.llarian.net/pub/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "ftp://mirrors.rit.edu/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "http://www.cyberuse.com/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "http://mirror.datapipe.net/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "http://gentoo.mirrors.tds.net/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "http://mirrors.cs.wmich.edu/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "http://mirrors.rit.edu/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "ftp://mirror.iawnet.sandia.gov/pub/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "http://mirror.mcs.anl.gov/pub/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "http://gentoo.cs.uni.edu/distfiles/poppler-0.12.3.tar.gz", 
                    "ftp://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "ftp://mirror.datapipe.net/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "http://lug.mtu.edu/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "http://mirror.its.uidaho.edu/pub/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "ftp://lug.mtu.edu/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "http://gentoo.chem.wisc.edu/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "http://gentoo.llarian.net/distfiles/poppler-0.12.3.tar.gz", 
                    "ftp://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "http://gentoo.netnitco.net/distfiles/poppler-0.12.3.tar.gz", 
                    "ftp://mirror.mcs.anl.gov/pub/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "http://mirror.lug.udel.edu/pub/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "ftp://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/poppler-0.12.3.tar.gz", 
                    "ftp://ftp.gtlib.gatech.edu/pub/gentoo/distfiles/poppler-0.12.3.tar.gz", 
                    "http://poppler.freedesktop.org/poppler-0.12.3.tar.gz"
                ]
            }
        ], 
        "pkg_name": "poppler-0.12.3-r3"
    }, 
    {
        "CATEGORY": "net-print", 
        "distfile_list": [
            {
                "RMD160": "a0646f2ba29fbd39d211ea5c3fdbd24a00f66a78", 
                "SHA1": "df5cfb64fb608fc128acadde670dc30af49bdb18", 
                "SHA256": "5e310fd324a15fae1e1c9721879f5c948d788e04735a5263a40c6146fff607b8", 
                "name": "cups-1.3.11-source.tar.bz2", 
                "size": 3799393, 
                "url_list": [
                    "ftp://gentoo.mirrors.tds.net/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "ftp://ftp.lug.udel.edu/pub/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://www.gtlib.gatech.edu/pub/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "ftp://ftp.wallawalla.edu/pub/mirrors/ftp.gentoo.org/distfiles/cups-1.3.11-source.tar.bz2", 
                    "ftp://gentoo.netnitco.net/pub/mirrors/gentoo/source/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://gentoo.mirrors.easynews.com/linux/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://mirror.usu.edu/mirrors/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "ftp://gentoo.chem.wisc.edu/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://gentoo.osuosl.org/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://gentoo.mirrors.hoobly.com/distfiles/cups-1.3.11-source.tar.bz2", 
                    "ftp://mirror.its.uidaho.edu/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "ftp://gentoo.llarian.net/pub/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "ftp://mirrors.rit.edu/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://www.cyberuse.com/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://mirror.datapipe.net/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://gentoo.mirrors.tds.net/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://mirrors.cs.wmich.edu/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://mirrors.rit.edu/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "ftp://mirror.iawnet.sandia.gov/pub/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://mirror.mcs.anl.gov/pub/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://gentoo.cs.uni.edu/distfiles/cups-1.3.11-source.tar.bz2", 
                    "ftp://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "ftp://mirror.datapipe.net/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://lug.mtu.edu/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://mirror.its.uidaho.edu/pub/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "ftp://lug.mtu.edu/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://gentoo.chem.wisc.edu/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://gentoo.llarian.net/distfiles/cups-1.3.11-source.tar.bz2", 
                    "ftp://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://gentoo.netnitco.net/distfiles/cups-1.3.11-source.tar.bz2", 
                    "ftp://mirror.mcs.anl.gov/pub/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://mirror.lug.udel.edu/pub/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "ftp://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/cups-1.3.11-source.tar.bz2", 
                    "ftp://ftp.gtlib.gatech.edu/pub/gentoo/distfiles/cups-1.3.11-source.tar.bz2", 
                    "http://ftp.rz.tu-bs.de/pub/mirror/ftp.easysw.com/ftp/pub/cups/1.3.11/cups-1.3.11-source.tar.bz2", 
                    "http://ftp.easysw.com/pub/cups/1.3.11/cups-1.3.11-source.tar.bz2", 
                    "http://ftp.funet.fi/pub/mirrors/ftp.easysw.com/pub/cups/1.3.11/cups-1.3.11-source.tar.bz2", 
                    "http://ftp2.easysw.com/pub/cups/1.3.11/cups-1.3.11-source.tar.bz2"
                ]
            }
        ], 
        "pkg_name": "cups-1.3.11-r1"
    }, 
    {
        "CATEGORY": "app-text", 
        "distfile_list": [
            {
                "RMD160": "565134dcfe1e823b435c3761461c5eb394bd633c", 
                "SHA1": "4c2a6e04145428d35da73fbc4db9c66a75e336e0", 
                "SHA256": "012f7fec58480c728580836fec6f865588d8a33fe8ada7ae73b1f971440d02bb", 
                "name": "ghostscript-8.64.tar.bz2", 
                "size": 16921504, 
                "url_list": [
                    "ftp://gentoo.mirrors.tds.net/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "ftp://ftp.lug.udel.edu/pub/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://www.gtlib.gatech.edu/pub/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "ftp://ftp.wallawalla.edu/pub/mirrors/ftp.gentoo.org/distfiles/ghostscript-8.64.tar.bz2", 
                    "ftp://gentoo.netnitco.net/pub/mirrors/gentoo/source/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://gentoo.mirrors.easynews.com/linux/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://mirror.usu.edu/mirrors/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "ftp://gentoo.chem.wisc.edu/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://gentoo.osuosl.org/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://gentoo.mirrors.hoobly.com/distfiles/ghostscript-8.64.tar.bz2", 
                    "ftp://mirror.its.uidaho.edu/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "ftp://gentoo.llarian.net/pub/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "ftp://mirrors.rit.edu/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://www.cyberuse.com/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://mirror.datapipe.net/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://gentoo.mirrors.tds.net/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://mirrors.cs.wmich.edu/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://mirrors.rit.edu/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "ftp://mirror.iawnet.sandia.gov/pub/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://mirror.mcs.anl.gov/pub/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://gentoo.cs.uni.edu/distfiles/ghostscript-8.64.tar.bz2", 
                    "ftp://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "ftp://mirror.datapipe.net/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://lug.mtu.edu/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://mirror.its.uidaho.edu/pub/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "ftp://lug.mtu.edu/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://gentoo.chem.wisc.edu/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://gentoo.llarian.net/distfiles/ghostscript-8.64.tar.bz2", 
                    "ftp://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://gentoo.netnitco.net/distfiles/ghostscript-8.64.tar.bz2", 
                    "ftp://mirror.mcs.anl.gov/pub/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://mirror.lug.udel.edu/pub/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "ftp://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/ghostscript-8.64.tar.bz2", 
                    "ftp://ftp.gtlib.gatech.edu/pub/gentoo/distfiles/ghostscript-8.64.tar.bz2", 
                    "http://ufpr.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://ncu.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://heanet.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://cdnetworks-kr-2.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://biznetnetworks.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://garr.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://cdnetworks-kr-1.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://sunet.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://switch.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://transact.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://kent.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://nchc.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://freefr.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://cdnetworks-us-1.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://surfnet.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://waix.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://puzzle.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://voxel.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://iweb.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://jaist.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://internode.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://cdnetworks-us-2.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://mesh.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://ignum.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://softlayer.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://dfn.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://internap.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2", 
                    "http://ovh.dl.sourceforge.net/sourceforge/ghostscript/ghostscript-8.64.tar.bz2"
                ]
            }, 
            {
                "RMD160": "5649eb8e2782c8cb147312917d3f8e4f283567d2", 
                "SHA1": "36b229a1071116b05be3e17c04b521ded922919a", 
                "SHA256": "58f37993e52ec8182586effa1760e49369dfc8977895f2f0ef13d57263ef8954", 
                "name": "ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                "size": 12171, 
                "url_list": [
                    "ftp://gentoo.mirrors.tds.net/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://ftp.lug.udel.edu/pub/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://www.gtlib.gatech.edu/pub/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://ftp.wallawalla.edu/pub/mirrors/ftp.gentoo.org/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://gentoo.netnitco.net/pub/mirrors/gentoo/source/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://gentoo.mirrors.easynews.com/linux/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://mirror.usu.edu/mirrors/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://gentoo.chem.wisc.edu/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://gentoo.osuosl.org/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://gentoo.mirrors.hoobly.com/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://mirror.its.uidaho.edu/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://gentoo.llarian.net/pub/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://mirrors.rit.edu/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://www.cyberuse.com/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://mirror.datapipe.net/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://gentoo.mirrors.tds.net/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://mirrors.cs.wmich.edu/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://mirrors.rit.edu/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://mirror.iawnet.sandia.gov/pub/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://mirror.mcs.anl.gov/pub/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://gentoo.cs.uni.edu/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://mirror.datapipe.net/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://lug.mtu.edu/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://mirror.its.uidaho.edu/pub/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://lug.mtu.edu/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://gentoo.chem.wisc.edu/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://gentoo.llarian.net/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://gentoo.netnitco.net/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://mirror.mcs.anl.gov/pub/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://mirror.lug.udel.edu/pub/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://ftp.gtlib.gatech.edu/pub/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://mirror.bytemark.co.uk/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://ftp.jaist.ac.jp/pub/Linux/Gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://ftp.free.fr/mirrors/ftp.gentoo.org/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://gentoo.mirrors.pair.com/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://gentoo.osuosl.org/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://mirrors.tds.net/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://open-systems.ufl.edu/mirrors/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://ftp.belnet.be/mirror/rsync.gentoo.org/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://ftp.snt.utwente.nl/pub/os/linux/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://mirror.ovh.net/gentoo-distfiles/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://ftp.snt.utwente.nl/pub/os/linux/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://ftp.gentoo.mesh-solutions.com/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "http://mirror.bytemark.co.uk/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2", 
                    "ftp://ftp.osuosl.org/pub/gentoo/distfiles/ghostscript-gpl-8.64-patchset-4.tar.bz2"
                ]
            }
        ], 
        "pkg_name": "ghostscript-gpl-8.64-r3"
    }, 
    {
        "CATEGORY": "x11-libs", 
        "distfile_list": [
            {
                "RMD160": "5f3fea120f2dba274c4150b02162bba40b65a872", 
                "SHA1": "977c10b88a2230e96868edc78a9e3789c0fcbf70", 
                "SHA256": "176f51ddb06dce67ab4b2efc6b327dc21ed8f764c5d97acc15ff1f907c2affae", 
                "name": "qt-everywhere-opensource-src-4.6.2.tar.gz", 
                "size": 160601949, 
                "url_list": [
                    "ftp://gentoo.mirrors.tds.net/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://ftp.lug.udel.edu/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://www.gtlib.gatech.edu/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://ftp.wallawalla.edu/pub/mirrors/ftp.gentoo.org/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://gentoo.netnitco.net/pub/mirrors/gentoo/source/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.mirrors.easynews.com/linux/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://mirror.usu.edu/mirrors/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://gentoo.chem.wisc.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.osuosl.org/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.mirrors.hoobly.com/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://mirror.its.uidaho.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://gentoo.llarian.net/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://mirrors.rit.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://www.cyberuse.com/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://mirror.datapipe.net/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.mirrors.tds.net/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://mirrors.cs.wmich.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://mirrors.rit.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://mirror.iawnet.sandia.gov/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://mirror.mcs.anl.gov/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.cs.uni.edu/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://mirror.datapipe.net/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://lug.mtu.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://mirror.its.uidaho.edu/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://lug.mtu.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.chem.wisc.edu/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.llarian.net/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://gentoo.netnitco.net/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://mirror.mcs.anl.gov/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://mirror.lug.udel.edu/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "ftp://ftp.gtlib.gatech.edu/pub/gentoo/distfiles/qt-everywhere-opensource-src-4.6.2.tar.gz", 
                    "http://get.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.6.2.tar.gz"
                ]
            }
        ], 
        "pkg_name": "qt-gui-4.6.2"
    }, 
    {
        "CATEGORY": "media-video", 
        "distfile_list": [
            {
                "RMD160": "2185eb418748f2aadfce5e61b7a9de66a62ef2d1", 
                "SHA1": "834346a84a71d915440b7741e04b6e02de451786", 
                "SHA256": "f521933e7a1021746d8ecde6caa2f9d1b43187ab2e13df6abc07540e415e1842", 
                "name": "vlc-1.0.6.tar.bz2", 
                "size": 22149704, 
                "url_list": [
                    "ftp://gentoo.mirrors.tds.net/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "ftp://ftp.lug.udel.edu/pub/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://www.gtlib.gatech.edu/pub/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "ftp://ftp.wallawalla.edu/pub/mirrors/ftp.gentoo.org/distfiles/vlc-1.0.6.tar.bz2", 
                    "ftp://gentoo.netnitco.net/pub/mirrors/gentoo/source/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://gentoo.mirrors.easynews.com/linux/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://mirror.usu.edu/mirrors/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "ftp://gentoo.chem.wisc.edu/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://gentoo.osuosl.org/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://gentoo.mirrors.hoobly.com/distfiles/vlc-1.0.6.tar.bz2", 
                    "ftp://mirror.its.uidaho.edu/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "ftp://gentoo.llarian.net/pub/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "ftp://mirrors.rit.edu/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://www.cyberuse.com/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://mirror.datapipe.net/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://gentoo.mirrors.tds.net/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://mirrors.cs.wmich.edu/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://mirrors.rit.edu/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "ftp://mirror.iawnet.sandia.gov/pub/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://mirror.mcs.anl.gov/pub/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://gentoo.cs.uni.edu/distfiles/vlc-1.0.6.tar.bz2", 
                    "ftp://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "ftp://mirror.datapipe.net/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://lug.mtu.edu/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://mirror.its.uidaho.edu/pub/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "ftp://lug.mtu.edu/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://gentoo.chem.wisc.edu/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://gentoo.llarian.net/distfiles/vlc-1.0.6.tar.bz2", 
                    "ftp://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://gentoo.netnitco.net/distfiles/vlc-1.0.6.tar.bz2", 
                    "ftp://mirror.mcs.anl.gov/pub/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://mirror.lug.udel.edu/pub/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "ftp://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/vlc-1.0.6.tar.bz2", 
                    "ftp://ftp.gtlib.gatech.edu/pub/gentoo/distfiles/vlc-1.0.6.tar.bz2", 
                    "http://download.videolan.org/pub/videolan/vlc/1.0.6/vlc-1.0.6.tar.bz2"
                ]
            }, 
            {
                "RMD160": "b585a84187f42c3e5cb557e6d752ffde26585506", 
                "SHA1": "91bcd66f3b393202153595e8c44926cc051d7451", 
                "SHA256": "c3c2b7841bde69762feed36758d95ccd5cc0ee390310cfad91bbfa3bca72b1e3", 
                "name": "vlc-patches-83.tar.bz2", 
                "size": 9277, 
                "url_list": [
                    "ftp://gentoo.mirrors.tds.net/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://ftp.lug.udel.edu/pub/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://www.gtlib.gatech.edu/pub/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://ftp.wallawalla.edu/pub/mirrors/ftp.gentoo.org/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://gentoo.netnitco.net/pub/mirrors/gentoo/source/distfiles/vlc-patches-83.tar.bz2", 
                    "http://gentoo.mirrors.easynews.com/linux/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://mirror.usu.edu/mirrors/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://gentoo.chem.wisc.edu/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/vlc-patches-83.tar.bz2", 
                    "http://gentoo.osuosl.org/distfiles/vlc-patches-83.tar.bz2", 
                    "http://gentoo.mirrors.hoobly.com/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://mirror.its.uidaho.edu/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://gentoo.llarian.net/pub/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://mirrors.rit.edu/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://www.cyberuse.com/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://mirror.datapipe.net/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://gentoo.mirrors.tds.net/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://mirrors.cs.wmich.edu/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://mirrors.rit.edu/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://mirror.iawnet.sandia.gov/pub/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://mirror.mcs.anl.gov/pub/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://gentoo.cs.uni.edu/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://mirror.datapipe.net/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://lug.mtu.edu/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://mirror.its.uidaho.edu/pub/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://lug.mtu.edu/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://gentoo.chem.wisc.edu/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://gentoo.llarian.net/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://gentoo.netnitco.net/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://mirror.mcs.anl.gov/pub/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://mirror.lug.udel.edu/pub/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://ftp.gtlib.gatech.edu/pub/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://gentoo.mirrors.pair.com/distfiles/vlc-patches-83.tar.bz2", 
                    "http://gentoo.osuosl.org/distfiles/vlc-patches-83.tar.bz2", 
                    "http://ftp.belnet.be/mirror/rsync.gentoo.org/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://mirror.bytemark.co.uk/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://open-systems.ufl.edu/mirrors/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://mirror.bytemark.co.uk/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://mirror.ovh.net/gentoo-distfiles/distfiles/vlc-patches-83.tar.bz2", 
                    "http://mirrors.tds.net/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://ftp.snt.utwente.nl/pub/os/linux/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://ftp.snt.utwente.nl/pub/os/linux/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://ftp.osuosl.org/pub/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "http://ftp.jaist.ac.jp/pub/Linux/Gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://ftp.gentoo.mesh-solutions.com/gentoo/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://ftp.free.fr/mirrors/ftp.gentoo.org/distfiles/vlc-patches-83.tar.bz2", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/vlc-patches-83.tar.bz2"
                ]
            }, 
            {
                "RMD160": "14775ca0d23a348d0d2809f8fa0a6b86e2f1623f", 
                "SHA1": "0310423bf9157b402f66107c365dd39abedb0d33", 
                "SHA256": "6feee6c520c8fcfa45c1bcc07475304c7a68d31985bb1b432b5b7b174a277a54", 
                "name": "vlc-m4-1.tar.bz2", 
                "size": 1685, 
                "url_list": [
                    "ftp://gentoo.mirrors.tds.net/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://ftp.lug.udel.edu/pub/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://www.gtlib.gatech.edu/pub/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://ftp.wallawalla.edu/pub/mirrors/ftp.gentoo.org/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://gentoo.netnitco.net/pub/mirrors/gentoo/source/distfiles/vlc-m4-1.tar.bz2", 
                    "http://gentoo.mirrors.easynews.com/linux/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://mirror.usu.edu/mirrors/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://gentoo.chem.wisc.edu/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/vlc-m4-1.tar.bz2", 
                    "http://gentoo.osuosl.org/distfiles/vlc-m4-1.tar.bz2", 
                    "http://gentoo.mirrors.hoobly.com/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://mirror.its.uidaho.edu/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://gentoo.llarian.net/pub/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://mirrors.rit.edu/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://www.cyberuse.com/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://mirror.datapipe.net/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://gentoo.mirrors.tds.net/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://mirrors.cs.wmich.edu/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://distro.ibiblio.org/pub/linux/distributions/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://mirrors.rit.edu/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://mirror.iawnet.sandia.gov/pub/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://mirror.mcs.anl.gov/pub/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://gentoo.cs.uni.edu/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://gentoo.cites.uiuc.edu/pub/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://mirror.datapipe.net/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://lug.mtu.edu/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://mirror.its.uidaho.edu/pub/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://lug.mtu.edu/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://gentoo.chem.wisc.edu/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://gentoo.llarian.net/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://ftp.ucsb.edu/pub/mirrors/linux/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://gentoo.netnitco.net/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://mirror.mcs.anl.gov/pub/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://mirror.lug.udel.edu/pub/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://ftp.gtlib.gatech.edu/pub/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://ftp.osuosl.org/pub/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://ftp.belnet.be/mirror/rsync.gentoo.org/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://ftp.free.fr/mirrors/ftp.gentoo.org/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://mirror.bytemark.co.uk/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://ftp.ussg.iu.edu/pub/linux/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://ftp.gentoo.mesh-solutions.com/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "ftp://ftp.snt.utwente.nl/pub/os/linux/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://open-systems.ufl.edu/mirrors/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://mirrors.tds.net/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://mirror.bytemark.co.uk/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://mirror.ovh.net/gentoo-distfiles/distfiles/vlc-m4-1.tar.bz2", 
                    "http://gentoo.osuosl.org/distfiles/vlc-m4-1.tar.bz2", 
                    "http://gentoo.mirrors.pair.com/distfiles/vlc-m4-1.tar.bz2", 
                    "http://ftp.snt.utwente.nl/pub/os/linux/gentoo/distfiles/vlc-m4-1.tar.bz2", 
                    "http://ftp.jaist.ac.jp/pub/Linux/Gentoo/distfiles/vlc-m4-1.tar.bz2"
                ]
            }
        ], 
        "pkg_name": "vlc-1.0.6"
    }
]