blob: b1ea7b717a6cbb13252a525229990d91707dbfee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
|
# $FreeBSD$
#
COMMENT = Development utilities
SUBDIR += 9base
SUBDIR += ChipmunkPhysics
SUBDIR += ElectricFence
SUBDIR += ORBit2
SUBDIR += ORBit2-reference
SUBDIR += R-cran-Defaults
SUBDIR += R-cran-Hmisc
SUBDIR += R-cran-RUnit
SUBDIR += R-cran-Rcpp
SUBDIR += R-cran-bit
SUBDIR += R-cran-bit64
SUBDIR += R-cran-bitops
SUBDIR += R-cran-caTools
SUBDIR += R-cran-caret
SUBDIR += R-cran-chron
SUBDIR += R-cran-evaluate
SUBDIR += R-cran-foreach
SUBDIR += R-cran-gbm
SUBDIR += R-cran-gdata
SUBDIR += R-cran-glmnet
SUBDIR += R-cran-gsubfn
SUBDIR += R-cran-gtools
SUBDIR += R-cran-iterators
SUBDIR += R-cran-itertools
SUBDIR += R-cran-magrittr
SUBDIR += R-cran-memoise
SUBDIR += R-cran-microbenchmark
SUBDIR += R-cran-plyr
SUBDIR += R-cran-proto
SUBDIR += R-cran-randomForest
SUBDIR += R-cran-reshape
SUBDIR += R-cran-reshape2
SUBDIR += SpecTcl
SUBDIR += aap
SUBDIR += aarch64-binutils
SUBDIR += abi-compliance-checker
SUBDIR += ace
SUBDIR += ace+tao-doc
SUBDIR += acme
SUBDIR += activitymail
SUBDIR += adabooch
SUBDIR += adacurses
SUBDIR += adime
SUBDIR += aegis
SUBDIR += afay
SUBDIR += ahven
SUBDIR += aifad
SUBDIR += alabastra
SUBDIR += ald
SUBDIR += alf
SUBDIR += allegro
SUBDIR += allegro-devel
SUBDIR += alog
SUBDIR += android-tools-adb
SUBDIR += android-tools-adb-devel
SUBDIR += android-tools-fastboot
SUBDIR += android-tools-fastboot-devel
SUBDIR += anjuta
SUBDIR += anjuta-extras
SUBDIR += antlr
SUBDIR += antlrworks
SUBDIR += apache-ant
SUBDIR += api-sanity-autotest
SUBDIR += apiextractor
SUBDIR += appstream-glib
SUBDIR += apr1
SUBDIR += apr2
SUBDIR += arcanist
SUBDIR += arduino
SUBDIR += arduino-glcd
SUBDIR += arduino-irremote
SUBDIR += arduino-mk
SUBDIR += argouml
SUBDIR += argp-standalone
SUBDIR += argtable
SUBDIR += arm-elf-binutils
SUBDIR += arm-gnueabi-binutils
SUBDIR += arm-none-eabi-binutils
SUBDIR += arm-none-eabi-gcc
SUBDIR += arm-none-eabi-gcc492
SUBDIR += aros-sdk
SUBDIR += art
SUBDIR += as31
SUBDIR += asl
SUBDIR += asmutils
SUBDIR += asmx
SUBDIR += astah-community
SUBDIR += astyle
SUBDIR += atf
SUBDIR += atlas
SUBDIR += atlas-devel
SUBDIR += atlassian-plugin-sdk
SUBDIR += autobook
SUBDIR += autoconf
SUBDIR += autoconf-archive
SUBDIR += autoconf-wrapper
SUBDIR += autoconf213
SUBDIR += autodia
SUBDIR += autodist
SUBDIR += autogen
SUBDIR += automake
SUBDIR += automake-wrapper
SUBDIR += automoc4
SUBDIR += autotools
SUBDIR += avalon-framework
SUBDIR += avarice
SUBDIR += avce00
SUBDIR += avltree
SUBDIR += avr-binutils
SUBDIR += avr-gcc
SUBDIR += avr-gcc-devel
SUBDIR += avr-gdb
SUBDIR += avr-libc
SUBDIR += avra
SUBDIR += avrdude
SUBDIR += avro
SUBDIR += avro-c
SUBDIR += avro-cpp
SUBDIR += awscli
SUBDIR += bam
SUBDIR += bbfreeze
SUBDIR += bbfreeze-loader
SUBDIR += bcc
SUBDIR += bcpp
SUBDIR += beautifyphp
SUBDIR += bennugd-core
SUBDIR += bennugd-modules
SUBDIR += bglibs
SUBDIR += bicyclerepair
SUBDIR += bin86
SUBDIR += binutils
SUBDIR += bison
SUBDIR += bisoncpp
SUBDIR += blame
SUBDIR += bmake
SUBDIR += bmkdep
SUBDIR += bncsutil-ghost++
SUBDIR += bnf
SUBDIR += boaconstructor
SUBDIR += boehm-gc
SUBDIR += boehm-gc-redirect
SUBDIR += boehm-gc-threaded
SUBDIR += boost-all
SUBDIR += boost-docs
SUBDIR += boost-jam
SUBDIR += boost-libs
SUBDIR += boost-python-libs
SUBDIR += boost_build
SUBDIR += bouml-doc
SUBDIR += bpython
SUBDIR += bsdbuild
SUBDIR += bsdcflow
SUBDIR += bsdowl
SUBDIR += bufferpool
SUBDIR += bugzilla44
SUBDIR += bugzilla50
SUBDIR += build
SUBDIR += buildbot
SUBDIR += buildbot-slave
SUBDIR += buildtool
SUBDIR += buildtool-doc
SUBDIR += bullet
SUBDIR += bunny
SUBDIR += busybee
SUBDIR += byacc
SUBDIR += byaccj
SUBDIR += bzr
SUBDIR += bzr-builder
SUBDIR += bzr-colo
SUBDIR += bzr-explorer
SUBDIR += bzr-externals
SUBDIR += bzr-fastimport
SUBDIR += bzr-git
SUBDIR += bzr-gtk
SUBDIR += bzr-loom
SUBDIR += bzr-pipeline
SUBDIR += bzr-rewrite
SUBDIR += bzr-scmproj
SUBDIR += bzr-stats
SUBDIR += bzr-svn
SUBDIR += bzr-upload
SUBDIR += bzrtools
SUBDIR += c-unit
SUBDIR += c2mdoc
SUBDIR += c4
SUBDIR += caf
SUBDIR += calibrator
SUBDIR += capstone
SUBDIR += cargo
SUBDIR += cask
SUBDIR += catch
SUBDIR += cbind
SUBDIR += cbrowser
SUBDIR += cc65
SUBDIR += ccache
SUBDIR += cccc
SUBDIR += ccdoc
SUBDIR += ccons
SUBDIR += ccrtp
SUBDIR += cdash
SUBDIR += cdecl
SUBDIR += cdialog
SUBDIR += cdk
SUBDIR += cervisia
SUBDIR += cflow
SUBDIR += cflow2vcg
SUBDIR += cgdb
SUBDIR += cgilib
SUBDIR += cgit
SUBDIR += cgprof
SUBDIR += charva
SUBDIR += checkbashisms
SUBDIR += checkheaders
SUBDIR += cherivis-devel
SUBDIR += chrpath
SUBDIR += chruby
SUBDIR += cil
SUBDIR += cityhash
SUBDIR += cl-alexandria
SUBDIR += cl-alexandria-sbcl
SUBDIR += cl-asdf
SUBDIR += cl-cffi
SUBDIR += cl-cffi-sbcl
SUBDIR += cl-infix
SUBDIR += cl-infix-sbcl
SUBDIR += cl-port
SUBDIR += cl-port-sbcl
SUBDIR += cl-split-sequence
SUBDIR += cl-split-sequence-sbcl
SUBDIR += cl-trivial-features
SUBDIR += cl-trivial-features-sbcl
SUBDIR += cl-trivial-gray-streams
SUBDIR += cl-trivial-gray-streams-sbcl
SUBDIR += cl-uffi
SUBDIR += cl-uffi-sbcl
SUBDIR += clanlib
SUBDIR += clanlib1
SUBDIR += clanlib22
SUBDIR += cld
SUBDIR += cld2
SUBDIR += clewn
SUBDIR += clig
SUBDIR += clisp-hyperspec
SUBDIR += clojure-cider
SUBDIR += cloudabi-binutils
SUBDIR += cloudabi-cloudlibc
SUBDIR += cloudabi-compiler-rt
SUBDIR += cloudabi-libc++
SUBDIR += cloudabi-libc++abi
SUBDIR += cloudabi-libunwind
SUBDIR += cloudabi-toolchain
SUBDIR += cmake
SUBDIR += cmake-fedora
SUBDIR += cmake-gui
SUBDIR += cmake-modules
SUBDIR += cmake-modules-webos
SUBDIR += cmph
SUBDIR += cmunge
SUBDIR += cobf
SUBDIR += coccinelle
SUBDIR += codeblocks
SUBDIR += codeville
SUBDIR += codeworker
SUBDIR += colorgcc
SUBDIR += colormake
SUBDIR += commit-patch
SUBDIR += commoncpp
SUBDIR += compiler-rt
SUBDIR += compiz-bcop
SUBDIR += concurrencykit
SUBDIR += configkit
SUBDIR += cons
SUBDIR += cons-test
SUBDIR += cook
SUBDIR += courier-unicode
SUBDIR += covtool
SUBDIR += cpan-upload
SUBDIR += cpan-upload-http
SUBDIR += cpp-netlib
SUBDIR += cppcheck
SUBDIR += cppi
SUBDIR += cpptest
SUBDIR += cppunit
SUBDIR += cproto
SUBDIR += cpuflags
SUBDIR += critcl
SUBDIR += cscope
SUBDIR += cscout
SUBDIR += csmith
SUBDIR += csoap
SUBDIR += cssc
SUBDIR += cstringbuffer
SUBDIR += ctags
SUBDIR += cunit
SUBDIR += cut
SUBDIR += cutils
SUBDIR += cutter
SUBDIR += cvs
SUBDIR += cvs+ipv6
SUBDIR += cvs-devel
SUBDIR += cvs-syncmail
SUBDIR += cvs2cl
SUBDIR += cvs2darcs
SUBDIR += cvs2html
SUBDIR += cvs2p4
SUBDIR += cvs2svn
SUBDIR += cvsadmin
SUBDIR += cvsbook
SUBDIR += cvschangelogbuilder
SUBDIR += cvschk
SUBDIR += cvsd
SUBDIR += cvsdadm
SUBDIR += cvsdelta
SUBDIR += cvsdiff2patch
SUBDIR += cvsgraph
SUBDIR += cvslines
SUBDIR += cvsmonitor
SUBDIR += cvsplot
SUBDIR += cvsps
SUBDIR += cvsps-devel
SUBDIR += cvsspam
SUBDIR += cvstrac
SUBDIR += cvsutils
SUBDIR += cvsweb
SUBDIR += cvsweb3
SUBDIR += cvswrap
SUBDIR += cweb
SUBDIR += cx_Freeze
SUBDIR += cxmon
SUBDIR += cxref
SUBDIR += cxxtest
SUBDIR += cxxtools
SUBDIR += d-feet
SUBDIR += darts
SUBDIR += dash.el
SUBDIR += dasm
SUBDIR += datadraw
SUBDIR += dbus
SUBDIR += dbus-glib
SUBDIR += dbus-qt4
SUBDIR += dbus-qt5
SUBDIR += dbus-sharp
SUBDIR += dbus-sharp-glib
SUBDIR += dbus-tcl
SUBDIR += dcmtk
SUBDIR += dconf
SUBDIR += dconf-editor
SUBDIR += ddd
SUBDIR += dee
SUBDIR += deforaos-libsystem
SUBDIR += deheader
SUBDIR += delta
SUBDIR += desktop-file-utils
SUBDIR += dev86
SUBDIR += devhelp
SUBDIR += devtodo
SUBDIR += dfuife-curses
SUBDIR += dia2code
SUBDIR += diffuse
SUBDIR += ding-libs
SUBDIR += directfb
SUBDIR += dissy
SUBDIR += distcc
SUBDIR += distel
SUBDIR += distorm
SUBDIR += ditrack
SUBDIR += dits
SUBDIR += djgpp-binutils
SUBDIR += djgpp-crx
SUBDIR += dmake
SUBDIR += dmalloc
SUBDIR += dmucs
SUBDIR += doctorj
SUBDIR += dolphin-plugins
SUBDIR += dotconf
SUBDIR += dotconf++
SUBDIR += doxygen
SUBDIR += dparser
SUBDIR += dprog
SUBDIR += dragon
SUBDIR += dreampie
SUBDIR += drpython
SUBDIR += dulwich
SUBDIR += duplo
SUBDIR += dwarfdump
SUBDIR += dxa65
SUBDIR += dyncall
SUBDIR += e00compr
SUBDIR += e2fsprogs-libss
SUBDIR += e_dbus
SUBDIR += easygit
SUBDIR += eblob
SUBDIR += ebnf2yacc
SUBDIR += ecgi
SUBDIR += edb
SUBDIR += editline
SUBDIR += efivar
SUBDIR += efl
SUBDIR += eggdbus
SUBDIR += egypt
SUBDIR += eiffelstudio
SUBDIR += elf
SUBDIR += elfio
SUBDIR += elfkickers
SUBDIR += elfrc
SUBDIR += elfsh
SUBDIR += elftoaout
SUBDIR += elixir-bson
SUBDIR += elixir-calendar
SUBDIR += elixir-combine
SUBDIR += elixir-conform
SUBDIR += elixir-coverex
SUBDIR += elixir-csv
SUBDIR += elixir-decimal
SUBDIR += elixir-dialyze
SUBDIR += elixir-estree
SUBDIR += elixir-exactor
SUBDIR += elixir-excoveralls
SUBDIR += elixir-exjsx
SUBDIR += elixir-exprotobuf
SUBDIR += elixir-exrm
SUBDIR += elixir-hex
SUBDIR += elixir-inflex
SUBDIR += elixir-lager_logger
SUBDIR += elixir-msgpax
SUBDIR += elixir-plug
SUBDIR += elixir-poison
SUBDIR += elixir-quantum
SUBDIR += elixir-red_black_tree
SUBDIR += elixir-sorted_set
SUBDIR += elixir-timex
SUBDIR += elixir-timex-interval
SUBDIR += elixir-tzdata
SUBDIR += embb
SUBDIR += epl.el
SUBDIR += epm
SUBDIR += epydoc
SUBDIR += eric4
SUBDIR += eric6
SUBDIR += eris
SUBDIR += erlang-bbmustache
SUBDIR += erlang-bear
SUBDIR += erlang-clique
SUBDIR += erlang-common_lib
SUBDIR += erlang-cuttlefish
SUBDIR += erlang-erlware_commons
SUBDIR += erlang-esdl
SUBDIR += erlang-exmpp
SUBDIR += erlang-folsom
SUBDIR += erlang-gen_leader
SUBDIR += erlang-gen_smtp
SUBDIR += erlang-getopt
SUBDIR += erlang-goldrush
SUBDIR += erlang-gpb
SUBDIR += erlang-gproc
SUBDIR += erlang-jobs
SUBDIR += erlang-jsx
SUBDIR += erlang-jsxd
SUBDIR += erlang-lager
SUBDIR += erlang-lager_syslog
SUBDIR += erlang-meck
SUBDIR += erlang-msgpack
SUBDIR += erlang-neotoma
SUBDIR += erlang-oserl
SUBDIR += erlang-parse_trans
SUBDIR += erlang-poolboy
SUBDIR += erlang-protobuffs
SUBDIR += erlang-providers
SUBDIR += erlang-rebar3_hex
SUBDIR += erlang-recon
SUBDIR += erlang-sbroker
SUBDIR += erlang-ssl_verify_hostname
SUBDIR += erlang-syslog
SUBDIR += etcd
SUBDIR += etcdctl
SUBDIR += etl
SUBDIR += euca2ools
SUBDIR += eventxx
SUBDIR += evolution-gconf-tools
SUBDIR += exercisix
SUBDIR += f77flow
SUBDIR += fam
SUBDIR += fastcrc
SUBDIR += fb303
SUBDIR += fc++
SUBDIR += ffcall
SUBDIR += fga
SUBDIR += fhist
SUBDIR += fib
SUBDIR += firmware-utils
SUBDIR += fistgen
SUBDIR += flatzebra
SUBDIR += flex-sdk
SUBDIR += flex-sdk35
SUBDIR += flexdock
SUBDIR += flexjson
SUBDIR += flickrnet
SUBDIR += florist-gpl
SUBDIR += flyspray
SUBDIR += fmake
SUBDIR += fnccheck
SUBDIR += fnorb
SUBDIR += fortran-utils
SUBDIR += fortytwo-encore
SUBDIR += fossil
SUBDIR += fpc-bfd
SUBDIR += fpc-dbus
SUBDIR += fpc-fcl-async
SUBDIR += fpc-fcl-base
SUBDIR += fpc-fcl-db
SUBDIR += fpc-fcl-extra
SUBDIR += fpc-fcl-fpcunit
SUBDIR += fpc-fcl-image
SUBDIR += fpc-fcl-js
SUBDIR += fpc-fcl-json
SUBDIR += fpc-fcl-net
SUBDIR += fpc-fcl-passrc
SUBDIR += fpc-fcl-process
SUBDIR += fpc-fcl-registry
SUBDIR += fpc-fcl-res
SUBDIR += fpc-fcl-web
SUBDIR += fpc-fcl-xml
SUBDIR += fpc-fpmkunit
SUBDIR += fpc-fppkg
SUBDIR += fpc-fv
SUBDIR += fpc-gdbint
SUBDIR += fpc-newt
SUBDIR += fpc-pthreads
SUBDIR += fpc-regexpr
SUBDIR += fpc-sdl
SUBDIR += fpc-symbolic
SUBDIR += fpc-zlib
SUBDIR += fpp
SUBDIR += frama-c
SUBDIR += freeocl
SUBDIR += frink
SUBDIR += fstrm
SUBDIR += ftjam
SUBDIR += ftnchek
SUBDIR += fuel
SUBDIR += fujaba
SUBDIR += funnelweb
SUBDIR += gaa
SUBDIR += gamin
SUBDIR += gaphor
SUBDIR += gauche-readline
SUBDIR += gaul
SUBDIR += gazpacho
SUBDIR += gb
SUBDIR += gcc-arm-embedded
SUBDIR += gccmakedep
SUBDIR += gconf2
SUBDIR += gconf2-reference
SUBDIR += gconfmm26
SUBDIR += gcvs
SUBDIR += gdb
SUBDIR += gdb66
SUBDIR += gdbmods
SUBDIR += gdcm
SUBDIR += geany
SUBDIR += geany-plugin-addons
SUBDIR += geany-plugin-autoclose
SUBDIR += geany-plugin-codenav
SUBDIR += geany-plugin-commander
SUBDIR += geany-plugin-debugger
SUBDIR += geany-plugin-defineformat
SUBDIR += geany-plugin-devhelp
SUBDIR += geany-plugin-doc
SUBDIR += geany-plugin-extrasel
SUBDIR += geany-plugin-geanypy
SUBDIR += geany-plugin-gendoc
SUBDIR += geany-plugin-geniuspaste
SUBDIR += geany-plugin-gproject
SUBDIR += geany-plugin-insertnum
SUBDIR += geany-plugin-latex
SUBDIR += geany-plugin-lipsum
SUBDIR += geany-plugin-lua
SUBDIR += geany-plugin-macro
SUBDIR += geany-plugin-miniscript
SUBDIR += geany-plugin-multiterm
SUBDIR += geany-plugin-numberedbookmarks
SUBDIR += geany-plugin-pairtaghighlighter
SUBDIR += geany-plugin-pg
SUBDIR += geany-plugin-pohelper
SUBDIR += geany-plugin-pretty-printer
SUBDIR += geany-plugin-prj
SUBDIR += geany-plugin-scope
SUBDIR += geany-plugin-sendmail
SUBDIR += geany-plugin-shiftcolumn
SUBDIR += geany-plugin-spellcheck
SUBDIR += geany-plugin-tableconvert
SUBDIR += geany-plugin-treebrowser
SUBDIR += geany-plugin-updatechecker
SUBDIR += geany-plugin-vc
SUBDIR += geany-plugin-webhelper
SUBDIR += geany-plugin-xmlsnippets
SUBDIR += geany-plugins
SUBDIR += geany-plugins-l10n
SUBDIR += gearmand
SUBDIR += gearmand-devel
SUBDIR += gecode
SUBDIR += generate
SUBDIR += generatorrunner
SUBDIR += gengetopt
SUBDIR += genproto
SUBDIR += geoip-java
SUBDIR += gettext
SUBDIR += gettext-lint
SUBDIR += gettext-msghack
SUBDIR += gettext-runtime
SUBDIR += gettext-tools
SUBDIR += gflags
SUBDIR += giggle
SUBDIR += gindent
SUBDIR += gio-sharp
SUBDIR += git
SUBDIR += git-bzr-ng
SUBDIR += git-codereview
SUBDIR += git-extras
SUBDIR += git-lite
SUBDIR += git-merge-changelog
SUBDIR += git-modes
SUBDIR += git-review
SUBDIR += git-subversion
SUBDIR += gitflow
SUBDIR += gitg
SUBDIR += gitg0
SUBDIR += github-backup-utils
SUBDIR += gitinspector
SUBDIR += gitolite
SUBDIR += gitolite2
SUBDIR += gitphp
SUBDIR += gittrac
SUBDIR += glade
SUBDIR += glade2
SUBDIR += glade3
SUBDIR += glademm
SUBDIR += glib12
SUBDIR += glib20
SUBDIR += glib20-reference
SUBDIR += glibmm
SUBDIR += glibmm-reference
SUBDIR += global
SUBDIR += glog
SUBDIR += glrparser
SUBDIR += glui
SUBDIR += gmake
SUBDIR += gmake-lite
SUBDIR += gnatcoll
SUBDIR += gnatpython
SUBDIR += gnome-common
SUBDIR += gnome-js-common
SUBDIR += gnome-vfs
SUBDIR += gnome-vfs-monikers
SUBDIR += gnome-vfs-reference
SUBDIR += gnome-vfsmm
SUBDIR += gnu-efi
SUBDIR += gnucflow
SUBDIR += gnulib
SUBDIR += gnulibiberty
SUBDIR += gnustep
SUBDIR += gnustep-make
SUBDIR += go-bindata
SUBDIR += go-flags
SUBDIR += go-hashicorp-logutils
SUBDIR += go-json-rest
SUBDIR += go-pretty
SUBDIR += go-raw
SUBDIR += go-runewidth
SUBDIR += go-slices
SUBDIR += go-sql-driver
SUBDIR += go-termbox
SUBDIR += go-uuid
SUBDIR += gob2
SUBDIR += gobject-introspection
SUBDIR += godep
SUBDIR += godot
SUBDIR += goffice
SUBDIR += goffice010
SUBDIR += google-gdata
SUBDIR += google-perftools
SUBDIR += google-sparsehash
SUBDIR += google-styleguide
SUBDIR += googlemock
SUBDIR += googletest
SUBDIR += goprotobuf
SUBDIR += gorm
SUBDIR += gperf
SUBDIR += gprbuild
SUBDIR += gps
SUBDIR += gpsim
SUBDIR += gputils
SUBDIR += gradle
SUBDIR += grantlee
SUBDIR += gsettings-desktop-schemas
SUBDIR += gsoap
SUBDIR += gstreamer-plugins-gconf
SUBDIR += gstreamer-plugins-gio
SUBDIR += gstreamer-plugins-gnomevfs
SUBDIR += gstreamer-plugins-sdl
SUBDIR += gstreamer-plugins-soup
SUBDIR += gstreamer1-plugins-soup
SUBDIR += gtgt
SUBDIR += gtkparasite
SUBDIR += gtranslator
SUBDIR += guichan
SUBDIR += guikachu
SUBDIR += guile-lib
SUBDIR += guiloader
SUBDIR += guiloader-c++
SUBDIR += gumbo
SUBDIR += gvfs
SUBDIR += gwenhywfar
SUBDIR += gwenhywfar-fox16
SUBDIR += gwenhywfar-gtk2
SUBDIR += gwenhywfar-qt4
SUBDIR += gzstream
SUBDIR += hachoir-core
SUBDIR += hachoir-parser
SUBDIR += hachoir-regex
SUBDIR += hadoop
SUBDIR += hadoop2
SUBDIR += hapy
SUBDIR += hcs12mem
SUBDIR += hexcompare
SUBDIR += hg-git
SUBDIR += hgreviewboard
SUBDIR += hgsvn
SUBDIR += hgview
SUBDIR += highlighterkit
SUBDIR += hive
SUBDIR += horde-content
SUBDIR += horde-timeobjects
SUBDIR += horde-whups
SUBDIR += hp48cc
SUBDIR += hp48xgcc
SUBDIR += hs-BNFC
SUBDIR += hs-Boolean
SUBDIR += hs-BoundedChan
SUBDIR += hs-ConfigFile
SUBDIR += hs-DrIFT
SUBDIR += hs-Glob
SUBDIR += hs-HUnit
SUBDIR += hs-IfElse
SUBDIR += hs-List
SUBDIR += hs-MaybeT
SUBDIR += hs-MemoTrie
SUBDIR += hs-MissingH
SUBDIR += hs-MonadCatchIO-mtl
SUBDIR += hs-MonadCatchIO-transformers
SUBDIR += hs-MonadRandom
SUBDIR += hs-ObjectName
SUBDIR += hs-PSQueue
SUBDIR += hs-QuickCheck
SUBDIR += hs-ReadArgs
SUBDIR += hs-STMonadTrans
SUBDIR += hs-SafeSemaphore
SUBDIR += hs-ShellCheck
SUBDIR += hs-Stream
SUBDIR += hs-TypeCompose
SUBDIR += hs-abstract-deque
SUBDIR += hs-abstract-par
SUBDIR += hs-activehs-base
SUBDIR += hs-alex
SUBDIR += hs-ansi-terminal
SUBDIR += hs-ansi-wl-pprint
SUBDIR += hs-arrows
SUBDIR += hs-asn1-data
SUBDIR += hs-asn1-encoding
SUBDIR += hs-asn1-parse
SUBDIR += hs-asn1-types
SUBDIR += hs-async
SUBDIR += hs-atomic-primops
SUBDIR += hs-auto-update
SUBDIR += hs-base-unicode-symbols
SUBDIR += hs-base16-bytestring
SUBDIR += hs-base64-bytestring
SUBDIR += hs-basic-prelude
SUBDIR += hs-bifunctors
SUBDIR += hs-bits-atomic
SUBDIR += hs-blaze-builder
SUBDIR += hs-blaze-builder-enumerator
SUBDIR += hs-blaze-textual
SUBDIR += hs-bloomfilter
SUBDIR += hs-boxes
SUBDIR += hs-bsd-sysctl
SUBDIR += hs-byteable
SUBDIR += hs-byteorder
SUBDIR += hs-bytestring-lexing
SUBDIR += hs-bytestring-nums
SUBDIR += hs-bytestring-show
SUBDIR += hs-c2hs
SUBDIR += hs-cabal-install
SUBDIR += hs-cereal
SUBDIR += hs-checkers
SUBDIR += hs-chunked-data
SUBDIR += hs-classy-prelude
SUBDIR += hs-classy-prelude-conduit
SUBDIR += hs-cmdargs
SUBDIR += hs-conduit
SUBDIR += hs-conduit-combinators
SUBDIR += hs-conduit-extra
SUBDIR += hs-configurator
SUBDIR += hs-convertible
SUBDIR += hs-cpphs
SUBDIR += hs-darcs
SUBDIR += hs-data-default
SUBDIR += hs-data-default-class
SUBDIR += hs-data-default-instances-base
SUBDIR += hs-data-default-instances-containers
SUBDIR += hs-data-default-instances-dlist
SUBDIR += hs-data-default-instances-old-locale
SUBDIR += hs-data-hash
SUBDIR += hs-data-pprint
SUBDIR += hs-date-cache
SUBDIR += hs-datetime
SUBDIR += hs-deepseq-generics
SUBDIR += hs-directory-tree
SUBDIR += hs-dlist
SUBDIR += hs-dlist-instances
SUBDIR += hs-edit-distance
SUBDIR += hs-either
SUBDIR += hs-enclosed-exceptions
SUBDIR += hs-enumerator
SUBDIR += hs-equivalence
SUBDIR += hs-errors
SUBDIR += hs-exceptions
SUBDIR += hs-extensible-exceptions
SUBDIR += hs-fast-logger
SUBDIR += hs-fgl
SUBDIR += hs-file-embed
SUBDIR += hs-filemanip
SUBDIR += hs-filestore
SUBDIR += hs-free
SUBDIR += hs-fsnotify
SUBDIR += hs-gconf
SUBDIR += hs-generic-deriving
SUBDIR += hs-geniplate
SUBDIR += hs-ghc-events
SUBDIR += hs-ghc-mtl
SUBDIR += hs-ghc-paths
SUBDIR += hs-gio
SUBDIR += hs-git-annex
SUBDIR += hs-glade
SUBDIR += hs-glib
SUBDIR += hs-gtk2hs-buildtools
SUBDIR += hs-haddock
SUBDIR += hs-haddock-library
SUBDIR += hs-happy
SUBDIR += hs-hashable
SUBDIR += hs-hashed-storage
SUBDIR += hs-hashtables
SUBDIR += hs-haskell-platform
SUBDIR += hs-haskell-src
SUBDIR += hs-haskell-src-exts
SUBDIR += hs-hasktags
SUBDIR += hs-hastache
SUBDIR += hs-hinotify
SUBDIR += hs-hint
SUBDIR += hs-hlibev
SUBDIR += hs-hlint
SUBDIR += hs-hoogle
SUBDIR += hs-hslogger
SUBDIR += hs-hslua
SUBDIR += hs-hspec
SUBDIR += hs-hspec-expectations
SUBDIR += hs-keys
SUBDIR += hs-kqueue
SUBDIR += hs-language-c
SUBDIR += hs-language-javascript
SUBDIR += hs-largeword
SUBDIR += hs-lazysmallcheck
SUBDIR += hs-lens
SUBDIR += hs-lifted-base
SUBDIR += hs-logict
SUBDIR += hs-mmap
SUBDIR += hs-mmorph
SUBDIR += hs-monad-control
SUBDIR += hs-monad-logger
SUBDIR += hs-monad-loops
SUBDIR += hs-monad-par
SUBDIR += hs-monad-par-extras
SUBDIR += hs-monads-tf
SUBDIR += hs-mono-traversable
SUBDIR += hs-mtl
SUBDIR += hs-mueval
SUBDIR += hs-murmur-hash
SUBDIR += hs-optparse-applicative
SUBDIR += hs-parallel
SUBDIR += hs-pcre-light
SUBDIR += hs-prelude-extras
SUBDIR += hs-prettyclass
SUBDIR += hs-primitive
SUBDIR += hs-profunctors
SUBDIR += hs-project-template
SUBDIR += hs-quickcheck-io
SUBDIR += hs-random
SUBDIR += hs-ranges
SUBDIR += hs-readline
SUBDIR += hs-reflection
SUBDIR += hs-resource-pool
SUBDIR += hs-resourcet
SUBDIR += hs-safe
SUBDIR += hs-scientific
SUBDIR += hs-securemem
SUBDIR += hs-setenv
SUBDIR += hs-shake
SUBDIR += hs-show
SUBDIR += hs-silently
SUBDIR += hs-simple-reflect
SUBDIR += hs-smallcheck
SUBDIR += hs-split
SUBDIR += hs-stm
SUBDIR += hs-stm-chans
SUBDIR += hs-streaming-commons
SUBDIR += hs-strict
SUBDIR += hs-syb
SUBDIR += hs-syb-with-class
SUBDIR += hs-syb-with-class-instances-text
SUBDIR += hs-system-fileio
SUBDIR += hs-system-filepath
SUBDIR += hs-tagged
SUBDIR += hs-temporary
SUBDIR += hs-test-framework
SUBDIR += hs-test-framework-hunit
SUBDIR += hs-test-framework-quickcheck2
SUBDIR += hs-testpack
SUBDIR += hs-text
SUBDIR += hs-text-icu
SUBDIR += hs-tf-random
SUBDIR += hs-threads
SUBDIR += hs-threadscope
SUBDIR += hs-time-compat
SUBDIR += hs-timezone-olson
SUBDIR += hs-timezone-series
SUBDIR += hs-transformers-base
SUBDIR += hs-transformers-compat
SUBDIR += hs-unamb
SUBDIR += hs-uniplate
SUBDIR += hs-unix-compat
SUBDIR += hs-unix-time
SUBDIR += hs-unordered-containers
SUBDIR += hs-utf8-light
SUBDIR += hs-utf8-string
SUBDIR += hs-utility-ht
SUBDIR += hs-uuagc
SUBDIR += hs-uuagc-bootstrap
SUBDIR += hs-uuagc-cabal
SUBDIR += hs-uuid
SUBDIR += hs-uulib
SUBDIR += hs-vault
SUBDIR += hs-vector
SUBDIR += hs-vector-algorithms
SUBDIR += hs-vector-binary-instances
SUBDIR += hs-vector-instances
SUBDIR += hs-vector-th-unbox
SUBDIR += hs-void
SUBDIR += hs-word8
SUBDIR += htable
SUBDIR += hub
SUBDIR += hwloc
SUBDIR += i386-linux-binutils
SUBDIR += ice
SUBDIR += icmake
SUBDIR += icu
SUBDIR += idutils
SUBDIR += ifd-test
SUBDIR += imake
SUBDIR += inilib
SUBDIR += iniparser
SUBDIR += initutil
SUBDIR += injeqt
SUBDIR += insight
SUBDIR += ioncube
SUBDIR += ipython
SUBDIR += ireport
SUBDIR += isl
SUBDIR += itext
SUBDIR += jakarta-commons-configuration
SUBDIR += jakarta-commons-daemon
SUBDIR += jakarta-commons-io
SUBDIR += jakarta-commons-jxpath
SUBDIR += jakarta-commons-modeler
SUBDIR += jam
SUBDIR += jansson
SUBDIR += java-findbugs
SUBDIR += javolution
SUBDIR += jclassinfo
SUBDIR += jcmdline
SUBDIR += jech-dht
SUBDIR += jenkins
SUBDIR += jenkins-lts
SUBDIR += jep
SUBDIR += jgoodies-common
SUBDIR += jiic
SUBDIR += jline
SUBDIR += jna
SUBDIR += jrtplib
SUBDIR += jsap
SUBDIR += jsl
SUBDIR += jsmin
SUBDIR += json-c
SUBDIR += json-glib
SUBDIR += jsoncpp
SUBDIR += jtag
SUBDIR += judy
SUBDIR += jwasm
SUBDIR += k8048
SUBDIR += kBuild
SUBDIR += kapptemplate
SUBDIR += kaptain
SUBDIR += kcachegrind
SUBDIR += kdbg
SUBDIR += kde-dev-scripts
SUBDIR += kde-dev-utils
SUBDIR += kdebindings4
SUBDIR += kdesdk4
SUBDIR += kdesdk4-kioslaves
SUBDIR += kdesdk4-strigi-analyzers
SUBDIR += kdesdk4-thumbnailers
SUBDIR += kdesvn-kde4
SUBDIR += kdevelop-kde4
SUBDIR += kdevelop-pg-qt
SUBDIR += kdevelop-php
SUBDIR += kdevelop-php-docs
SUBDIR += kdevplatform
SUBDIR += kickassembler
SUBDIR += kimwitu
SUBDIR += kyra
SUBDIR += kyua
SUBDIR += lasi
SUBDIR += lcov
SUBDIR += leaktracer
SUBDIR += leiningen
SUBDIR += lemon
SUBDIR += lfcbase
SUBDIR += lfcxml
SUBDIR += libCello
SUBDIR += libIDL
SUBDIR += libPropList
SUBDIR += libafterbase
SUBDIR += liballium
SUBDIR += libantlr3c
SUBDIR += libarena
SUBDIR += libassa
SUBDIR += libassetml
SUBDIR += libast
SUBDIR += libatomic_ops
SUBDIR += libaura
SUBDIR += libavl
SUBDIR += libbde
SUBDIR += libbegemot
SUBDIR += libbfd
SUBDIR += libbinio
SUBDIR += libbnr
SUBDIR += libbobcat
SUBDIR += libbonobo
SUBDIR += libbonobo-reference
SUBDIR += libbson
SUBDIR += libburn
SUBDIR += libc++
SUBDIR += libccid
SUBDIR += libcfg
SUBDIR += libcfu
SUBDIR += libcheck
SUBDIR += libchipcard
SUBDIR += libcidr
SUBDIR += libcii
SUBDIR += libclaw
SUBDIR += libclc
SUBDIR += libcli
SUBDIR += libconfig
SUBDIR += libconfuse
SUBDIR += libcwd
SUBDIR += libcxxrt
SUBDIR += libdaemon
SUBDIR += libdap
SUBDIR += libdasm
SUBDIR += libdatrie
SUBDIR += libdbusmenu
SUBDIR += libdbusmenu-qt
SUBDIR += libdbusmenu-qt5
SUBDIR += libdevq
SUBDIR += libdfui
SUBDIR += libdict
SUBDIR += libdisasm
SUBDIR += libdisorder
SUBDIR += libdispatch
SUBDIR += libdlmalloc
SUBDIR += libdlna
SUBDIR += libdnsres
SUBDIR += libdombey
SUBDIR += libdouble-conversion
SUBDIR += libds
SUBDIR += libdsp
SUBDIR += libdwarf
SUBDIR += libe
SUBDIR += libedit
SUBDIR += libee
SUBDIR += libeio
SUBDIR += libelf
SUBDIR += libepp-nicbr
SUBDIR += libesedb
SUBDIR += libestr
SUBDIR += libev
SUBDIR += libevent-hiphop
SUBDIR += libevent2
SUBDIR += libevt
SUBDIR += libevtx
SUBDIR += libewf
SUBDIR += libexecinfo
SUBDIR += libexplain
SUBDIR += libffi
SUBDIR += libfirm
SUBDIR += libfortuna
SUBDIR += libfreefare
SUBDIR += libftdi
SUBDIR += libftdi1
SUBDIR += libfwsi
SUBDIR += libg19
SUBDIR += libg19draw
SUBDIR += libgalago
SUBDIR += libgamepad
SUBDIR += libgdata
SUBDIR += libgee
SUBDIR += libgee06
SUBDIR += libgetline
SUBDIR += libghthash
SUBDIR += libgit2
SUBDIR += libgit2-glib
SUBDIR += libglade2
SUBDIR += libglade2-reference
SUBDIR += libglademm24
SUBDIR += libgpc
SUBDIR += libgpkg
SUBDIR += libgsf
SUBDIR += libgta
SUBDIR += libgtop
SUBDIR += libgutenfetch
SUBDIR += libhash
SUBDIR += libhid
SUBDIR += libhoard
SUBDIR += libhtp
SUBDIR += libical
SUBDIR += libical-glib
SUBDIR += libinotify
SUBDIR += libiqxmlrpc
SUBDIR += libisofs
SUBDIR += libixp
SUBDIR += libjson++
SUBDIR += libk8055
SUBDIR += libkgapi
SUBDIR += libklel
SUBDIR += libkolab
SUBDIR += liblangtag
SUBDIR += liblas
SUBDIR += liblas12
SUBDIR += liblcfg
SUBDIR += libleaftag
SUBDIR += liblnk
SUBDIR += liblogging
SUBDIR += liblognorm
SUBDIR += liblouis
SUBDIR += liblouisxml
SUBDIR += libltdl
SUBDIR += libmaa
SUBDIR += libmatheval
SUBDIR += libmba
SUBDIR += libmcs
SUBDIR += libmimedir
SUBDIR += libmonetra
SUBDIR += libmowgli
SUBDIR += libmowgli2
SUBDIR += libmpcbdm
SUBDIR += libmpsse
SUBDIR += libmsiecf
SUBDIR += libmsocket
SUBDIR += libmtrie
SUBDIR += libnaji
SUBDIR += libnfc
SUBDIR += libnotify
SUBDIR += libnxt
SUBDIR += liboil
SUBDIR += libol
SUBDIR += libolecf
SUBDIR += liboobs
SUBDIR += liboop
SUBDIR += libopencm3
SUBDIR += libopendaap
SUBDIR += libopensync
SUBDIR += libopensync022
SUBDIR += libopkele
SUBDIR += liborcus
SUBDIR += liborcus07
SUBDIR += libosinfo
SUBDIR += libosmo-abis
SUBDIR += libosmo-netif
SUBDIR += libosmo-sccp
SUBDIR += libosmocore
SUBDIR += libowfat
SUBDIR += libpafe
SUBDIR += libpafe-ruby
SUBDIR += libpasori
SUBDIR += libpci
SUBDIR += libpciaccess
SUBDIR += libpdel
SUBDIR += libpeak
SUBDIR += libpeas
SUBDIR += libpff
SUBDIR += libphish
SUBDIR += libphk
SUBDIR += libphutil
SUBDIR += libplist
SUBDIR += libpo6
SUBDIR += libpru
SUBDIR += libpthread-stubs
SUBDIR += libqcow
SUBDIR += libqxt
SUBDIR += libr3
SUBDIR += librcc
SUBDIR += librcd
SUBDIR += libreadline-java
SUBDIR += libredblack
SUBDIR += libregf
SUBDIR += librelp
SUBDIR += librest
SUBDIR += librevisa
SUBDIR += librevisa-vish
SUBDIR += librevisa-vxi
SUBDIR += librolegen
SUBDIR += libruin
SUBDIR += libs11n
SUBDIR += libsearpc
SUBDIR += libserialport
SUBDIR += libserver
SUBDIR += libshbuf
SUBDIR += libshhmsg
SUBDIR += libshhopt
SUBDIR += libsigc++12
SUBDIR += libsigc++20
SUBDIR += libsigcx
SUBDIR += libsigrok
SUBDIR += libsigrokdecode
SUBDIR += libsigscan
SUBDIR += libsigsegv
SUBDIR += libslang2
SUBDIR += libsmdev
SUBDIR += libsmpp34
SUBDIR += libsmraw
SUBDIR += libsoup
SUBDIR += libsoup-gnome
SUBDIR += libsoup-reference
SUBDIR += libspark2012
SUBDIR += libstatgrab
SUBDIR += libstatgrab0
SUBDIR += libstrfunc
SUBDIR += libstroke
SUBDIR += libsysinfo
SUBDIR += libtai
SUBDIR += libtap
SUBDIR += libtar
SUBDIR += libtecla
SUBDIR += libtermkey
SUBDIR += libthai
SUBDIR += libtifiles2
SUBDIR += libtool
SUBDIR += libtpl
SUBDIR += libublio
SUBDIR += libukcprog
SUBDIR += libunicode
SUBDIR += libuninum
SUBDIR += libunistring
SUBDIR += libunwind
SUBDIR += libuv
SUBDIR += libvanessa_adt
SUBDIR += libvanessa_logger
SUBDIR += libvanessa_socket
SUBDIR += libvc
SUBDIR += libvhdi
SUBDIR += libvirt
SUBDIR += libvirt-glib
SUBDIR += libvirt-java
SUBDIR += libvmdk
SUBDIR += libvolume_id
SUBDIR += libvshadow
SUBDIR += libvterm
SUBDIR += libwfut
SUBDIR += libx86
SUBDIR += libxalloc
SUBDIR += libxo
SUBDIR += libxs
SUBDIR += libytnef
SUBDIR += libzookeeper
SUBDIR += libzrtpcpp
SUBDIR += libzvbi
SUBDIR += lightning
SUBDIR += linux-c6-dbus-glib
SUBDIR += linux-c6-dbus-libs
SUBDIR += linux-c6-devtools
SUBDIR += linux-c6-libgfortran
SUBDIR += linux-c6-libglade2
SUBDIR += linux-c6-libpciaccess
SUBDIR += linux-c6-libsigc++20
SUBDIR += linux-c6-ncurses-base
SUBDIR += linux-c6-nspr
SUBDIR += linux-c6-qt47
SUBDIR += linux-c6-sdl12
SUBDIR += linux-f10-allegro
SUBDIR += linux-f10-dbus-glib
SUBDIR += linux-f10-dbus-libs
SUBDIR += linux-f10-devtools
SUBDIR += linux-f10-libglade2
SUBDIR += linux-f10-libsigc++20
SUBDIR += linux-f10-ncurses-base
SUBDIR += linux-f10-nspr
SUBDIR += linux-f10-sdl12
SUBDIR += linux_kdump
SUBDIR += linux_libusb
SUBDIR += lion
SUBDIR += llnextgen
SUBDIR += llvm-cheri
SUBDIR += llvm-devel
SUBDIR += llvm33
SUBDIR += llvm34
SUBDIR += llvm35
SUBDIR += llvm36
SUBDIR += llvm37
SUBDIR += lm4tools
SUBDIR += lmdbg
SUBDIR += lndir
SUBDIR += lnphost
SUBDIR += lockfree-malloc
SUBDIR += log4c
SUBDIR += log4cplus
SUBDIR += log4cpp
SUBDIR += log4cxx
SUBDIR += log4j
SUBDIR += log4net
SUBDIR += log4sh
SUBDIR += log4shib
SUBDIR += lokalize
SUBDIR += loki
SUBDIR += looks
SUBDIR += love
SUBDIR += love07
SUBDIR += love08
SUBDIR += love5
SUBDIR += lpc21isp
SUBDIR += lrmi
SUBDIR += lua-MessagePack
SUBDIR += lua-alien
SUBDIR += lua-bitlib
SUBDIR += lua-bitop
SUBDIR += lua-cjson
SUBDIR += lua-gettext
SUBDIR += lua-lgi
SUBDIR += lua-lpeg
SUBDIR += lua-lpeg51
SUBDIR += lua-lunit
SUBDIR += lua-posix
SUBDIR += lua-pty
SUBDIR += lua-sysctl
SUBDIR += luabind
SUBDIR += luafilesystem
SUBDIR += luafilesystem-51
SUBDIR += luajava
SUBDIR += lutok
SUBDIR += lwp
SUBDIR += m17n-db
SUBDIR += m17n-docs
SUBDIR += m17n-lib
SUBDIR += m4
SUBDIR += m6811-binutils
SUBDIR += magit
SUBDIR += make++
SUBDIR += makedepend
SUBDIR += mate-common
SUBDIR += matreshka
SUBDIR += maven-ant-tasks
SUBDIR += maven-wrapper
SUBDIR += maven3
SUBDIR += maven31
SUBDIR += mcpp
SUBDIR += mdds
SUBDIR += memcheck
SUBDIR += menhir
SUBDIR += mercator
SUBDIR += mercurial
SUBDIR += mercurialeclipse
SUBDIR += mico
SUBDIR += mime
SUBDIR += mimir
SUBDIR += mingw32-bin-msvcrt
SUBDIR += mingw32-binutils
SUBDIR += mingw32-directx
SUBDIR += mingw32-gcc
SUBDIR += mingw32-libffi
SUBDIR += mingw32-libyaml
SUBDIR += mingw32-openssl
SUBDIR += mingw32-pdcurses
SUBDIR += mingw32-pthreads
SUBDIR += mingw32-zlib
SUBDIR += mips-binutils
SUBDIR += mips-gcc
SUBDIR += mips-xtoolchain-gcc
SUBDIR += mips64-binutils
SUBDIR += mips64-gcc
SUBDIR += mips64-xtoolchain-gcc
SUBDIR += mk
SUBDIR += mk-configure
SUBDIR += mkcmd
SUBDIR += mm
SUBDIR += mm-common
SUBDIR += mongo-c-driver
SUBDIR += mono-addins
SUBDIR += monodevelop
SUBDIR += monodevelop-database
SUBDIR += monotone
SUBDIR += monotone-viz
SUBDIR += motor
SUBDIR += mpatrol
SUBDIR += mph
SUBDIR += mq4cpp
SUBDIR += msgpack
SUBDIR += msgpuck
SUBDIR += msp430-binutils
SUBDIR += msp430-gcc
SUBDIR += msp430-gdb
SUBDIR += msp430-libc
SUBDIR += msp430mcu
SUBDIR += mspdebug
SUBDIR += msrc0
SUBDIR += mtbl
SUBDIR += nana
SUBDIR += nant
SUBDIR += nasm
SUBDIR += naturaldocs
SUBDIR += ncc
SUBDIR += ncnf
SUBDIR += ncurses
SUBDIR += ndesk-dbus
SUBDIR += ndesk-dbus-glib
SUBDIR += ndesk-options
SUBDIR += netscape-java40
SUBDIR += newfile
SUBDIR += newt
SUBDIR += newtonsoft-json
SUBDIR += nglogc
SUBDIR += nini
SUBDIR += ninja
SUBDIR += ninja-ide
SUBDIR += node-thrift
SUBDIR += notify-sharp
SUBDIR += noweb
SUBDIR += npth
SUBDIR += nspr
SUBDIR += nxt-python
SUBDIR += obby
SUBDIR += obfuscatejs
SUBDIR += ocaml-annexlib
SUBDIR += ocaml-calendar
SUBDIR += ocaml-camljava
SUBDIR += ocaml-camlp4
SUBDIR += ocaml-camlp5
SUBDIR += ocaml-camomile
SUBDIR += ocaml-camomile-examples
SUBDIR += ocaml-cfg
SUBDIR += ocaml-classes
SUBDIR += ocaml-cmdliner
SUBDIR += ocaml-cppo
SUBDIR += ocaml-deriving-ocsigen
SUBDIR += ocaml-equeue
SUBDIR += ocaml-extlib
SUBDIR += ocaml-findlib
SUBDIR += ocaml-ipaddr
SUBDIR += ocaml-lacaml
SUBDIR += ocaml-lwt
SUBDIR += ocaml-magic
SUBDIR += ocaml-opam
SUBDIR += ocaml-ounit
SUBDIR += ocaml-parmap
SUBDIR += ocaml-pcre
SUBDIR += ocaml-pomap
SUBDIR += ocaml-ppx-tools
SUBDIR += ocaml-re
SUBDIR += ocaml-react
SUBDIR += ocaml-res
SUBDIR += ocaml-sdl
SUBDIR += ocaml-sem
SUBDIR += ocaml-sexplib
SUBDIR += ocaml-typeconv
SUBDIR += ocaml-ulex
SUBDIR += ocaml-uutf
SUBDIR += ocaml-xstr
SUBDIR += ocaml-xstrp4
SUBDIR += ocfpcsc
SUBDIR += ode
SUBDIR += ois
SUBDIR += okteta
SUBDIR += omake
SUBDIR += omniNotify
SUBDIR += omniORB
SUBDIR += omniORB-4.1
SUBDIR += oniguruma
SUBDIR += oniguruma4
SUBDIR += oniguruma5
SUBDIR += onscripter
SUBDIR += onscripter-1byte
SUBDIR += oozie
SUBDIR += open-beagle
SUBDIR += open-usp-tukubai
SUBDIR += opencl
SUBDIR += opencvs
SUBDIR += opengrok
SUBDIR += openocd
SUBDIR += openvex
SUBDIR += openwince-include
SUBDIR += openzz
SUBDIR += orc
SUBDIR += osc
SUBDIR += ossp-al
SUBDIR += ossp-cfg
SUBDIR += ossp-ex
SUBDIR += ossp-l2
SUBDIR += ossp-val
SUBDIR += ossp-var
SUBDIR += ossp-xds
SUBDIR += p4
SUBDIR += p4.el
SUBDIR += p4api
SUBDIR += p4d
SUBDIR += p4delta
SUBDIR += p4ftpd
SUBDIR += p4genpatch
SUBDIR += p4p
SUBDIR += p4web
SUBDIR += p5-AI-Pathfinding-AStar
SUBDIR += p5-AI-Prolog
SUBDIR += p5-ARGV-Struct
SUBDIR += p5-Acme-Comment
SUBDIR += p5-Acme-Damn
SUBDIR += p5-Acme-MetaSyntactic
SUBDIR += p5-Agent
SUBDIR += p5-Algorithm-Accounting
SUBDIR += p5-Algorithm-Annotate
SUBDIR += p5-Algorithm-Binpack
SUBDIR += p5-Algorithm-Bucketizer
SUBDIR += p5-Algorithm-C3
SUBDIR += p5-Algorithm-ChooseSubsets
SUBDIR += p5-Algorithm-Cluster
SUBDIR += p5-Algorithm-Cron
SUBDIR += p5-Algorithm-Dependency
SUBDIR += p5-Algorithm-Dependency-Objects
SUBDIR += p5-Algorithm-Diff
SUBDIR += p5-Algorithm-Evolutionary
SUBDIR += p5-Algorithm-FloodControl
SUBDIR += p5-Algorithm-IncludeExclude
SUBDIR += p5-Algorithm-Interval2Prefix
SUBDIR += p5-Algorithm-LCS
SUBDIR += p5-Algorithm-LUHN
SUBDIR += p5-Algorithm-MarkovChain
SUBDIR += p5-Algorithm-Merge
SUBDIR += p5-Algorithm-MinMax
SUBDIR += p5-Algorithm-NaiveBayes
SUBDIR += p5-Algorithm-Networksort
SUBDIR += p5-Algorithm-Numerical-Shuffle
SUBDIR += p5-Algorithm-Permute
SUBDIR += p5-Algorithm-SVM
SUBDIR += p5-Alias
SUBDIR += p5-Alien-SDL
SUBDIR += p5-Alzabo
SUBDIR += p5-Any-Daemon
SUBDIR += p5-Any-Moose
SUBDIR += p5-Any-Moose-Convert
SUBDIR += p5-AnyData
SUBDIR += p5-AnyEvent
SUBDIR += p5-AnyEvent-AIO
SUBDIR += p5-AnyEvent-Connection
SUBDIR += p5-AnyEvent-DBI
SUBDIR += p5-AnyEvent-DBI-Abstract
SUBDIR += p5-AnyEvent-DBus
SUBDIR += p5-AnyEvent-Filesys-Notify
SUBDIR += p5-AnyEvent-Gearman
SUBDIR += p5-AnyEvent-Graphite
SUBDIR += p5-AnyEvent-I3
SUBDIR += p5-AnyEvent-MessagePack
SUBDIR += p5-AnyEvent-RPC
SUBDIR += p5-AnyEvent-Run
SUBDIR += p5-AnyEvent-Subprocess
SUBDIR += p5-AnyEvent-Task
SUBDIR += p5-AnyEvent-Worker
SUBDIR += p5-AnyMQ
SUBDIR += p5-App-Build
SUBDIR += p5-App-CLI
SUBDIR += p5-App-CLI-Extension
SUBDIR += p5-App-Cache
SUBDIR += p5-App-Cmd
SUBDIR += p5-App-Control
SUBDIR += p5-App-FatPacker
SUBDIR += p5-App-GitGot
SUBDIR += p5-App-GitHub
SUBDIR += p5-App-Info
SUBDIR += p5-App-Options
SUBDIR += p5-App-Rad
SUBDIR += p5-App-SD
SUBDIR += p5-App-SVN-Bisect
SUBDIR += p5-App-Trace
SUBDIR += p5-App-cpanminus
SUBDIR += p5-App-cpanoutdated
SUBDIR += p5-App-local-lib-helper
SUBDIR += p5-App-perlbrew
SUBDIR += p5-App-scan_prereqs_cpanfile
SUBDIR += p5-AppConfig
SUBDIR += p5-AppConfig-Std
SUBDIR += p5-Array-Group
SUBDIR += p5-Array-Heap
SUBDIR += p5-Array-Iterator
SUBDIR += p5-Array-Unique
SUBDIR += p5-Array-Window
SUBDIR += p5-Async-Interrupt
SUBDIR += p5-Async-MergePoint
SUBDIR += p5-AtExit
SUBDIR += p5-Attribute-Handlers
SUBDIR += p5-Attribute-Handlers-Prospective
SUBDIR += p5-Attribute-Persistent
SUBDIR += p5-AutoLoader
SUBDIR += p5-AutoXS-Header
SUBDIR += p5-B-C
SUBDIR += p5-B-Compiling
SUBDIR += p5-B-Deobfuscate
SUBDIR += p5-B-Flags
SUBDIR += p5-B-Generate
SUBDIR += p5-B-Graph
SUBDIR += p5-B-Hooks-EndOfScope
SUBDIR += p5-B-Hooks-OP-Annotation
SUBDIR += p5-B-Hooks-OP-Check
SUBDIR += p5-B-Hooks-OP-Check-EntersubForCV
SUBDIR += p5-B-Hooks-OP-PPAddr
SUBDIR += p5-B-Hooks-Parser
SUBDIR += p5-B-Keywords
SUBDIR += p5-B-OPCheck
SUBDIR += p5-B-Size2
SUBDIR += p5-B-Utils
SUBDIR += p5-BFD
SUBDIR += p5-BS-Event
SUBDIR += p5-BSD-Resource
SUBDIR += p5-BSD-devstat
SUBDIR += p5-BSD-stat
SUBDIR += p5-BZ-Client
SUBDIR += p5-Badger
SUBDIR += p5-Benchmark-Timer
SUBDIR += p5-Best
SUBDIR += p5-Brannigan
SUBDIR += p5-Bread-Board
SUBDIR += p5-Bread-Board-Declare
SUBDIR += p5-Bundle-Perl6
SUBDIR += p5-C-Scan
SUBDIR += p5-CBOR-XS
SUBDIR += p5-CHI
SUBDIR += p5-CLASS
SUBDIR += p5-CPAN-Changes
SUBDIR += p5-CPAN-Checksums
SUBDIR += p5-CPAN-DistnameInfo
SUBDIR += p5-CPAN-Inject
SUBDIR += p5-CPAN-Meta
SUBDIR += p5-CPAN-Meta-Check
SUBDIR += p5-CPAN-Meta-Requirements
SUBDIR += p5-CPAN-Meta-YAML
SUBDIR += p5-CPAN-Mini
SUBDIR += p5-CPAN-Perl-Releases
SUBDIR += p5-CPAN-Recent-Uploads
SUBDIR += p5-CPAN-Reporter
SUBDIR += p5-CPAN-Reporter-Smoker
SUBDIR += p5-CPAN-SQLite
SUBDIR += p5-CPAN-Site
SUBDIR += p5-CPAN-Testers-Report
SUBDIR += p5-CPAN-Uploader
SUBDIR += p5-CPAN-YACSmoke
SUBDIR += p5-CPANPLUS
SUBDIR += p5-CPANPLUS-Dist-Build
SUBDIR += p5-CPS
SUBDIR += p5-Cache
SUBDIR += p5-Cache-AgainstFile
SUBDIR += p5-Cache-Cache
SUBDIR += p5-Cache-FastMmap
SUBDIR += p5-Cache-LRU
SUBDIR += p5-Cache-Memcached-Tie
SUBDIR += p5-Cache-Mmap
SUBDIR += p5-Cache-Simple-TimedExpiry
SUBDIR += p5-Cairo-GObject
SUBDIR += p5-Calendar-Simple
SUBDIR += p5-Callback-Frame
SUBDIR += p5-Canary-Stability
SUBDIR += p5-Capture-Tiny
SUBDIR += p5-Carp
SUBDIR += p5-Carp-Always
SUBDIR += p5-Carp-Always-Color
SUBDIR += p5-Carp-Assert
SUBDIR += p5-Carp-Assert-More
SUBDIR += p5-Carp-Clan
SUBDIR += p5-Carp-Clan-Share
SUBDIR += p5-Carp-Datum
SUBDIR += p5-Carp-REPL
SUBDIR += p5-Cdk
SUBDIR += p5-Check-ISA
SUBDIR += p5-Child
SUBDIR += p5-Chooser
SUBDIR += p5-Class-Accessor
SUBDIR += p5-Class-Accessor-Chained
SUBDIR += p5-Class-Accessor-Children
SUBDIR += p5-Class-Accessor-Complex
SUBDIR += p5-Class-Accessor-Constructor
SUBDIR += p5-Class-Accessor-Fast-Contained
SUBDIR += p5-Class-Accessor-Fast-XS
SUBDIR += p5-Class-Accessor-Grouped
SUBDIR += p5-Class-Accessor-Installer
SUBDIR += p5-Class-Accessor-Lite
SUBDIR += p5-Class-Accessor-Lvalue
SUBDIR += p5-Class-Accessor-Named
SUBDIR += p5-Class-Adapter
SUBDIR += p5-Class-AlzaboWrapper
SUBDIR += p5-Class-ArrayObjects
SUBDIR += p5-Class-AutoClass
SUBDIR += p5-Class-Autouse
SUBDIR += p5-Class-Base
SUBDIR += p5-Class-BlackHole
SUBDIR += p5-Class-C3
SUBDIR += p5-Class-C3-Adopt-NEXT
SUBDIR += p5-Class-C3-Componentised
SUBDIR += p5-Class-C3-XS
SUBDIR += p5-Class-Closure
SUBDIR += p5-Class-CodeStyler
SUBDIR += p5-Class-Component
SUBDIR += p5-Class-Constant
SUBDIR += p5-Class-Container
SUBDIR += p5-Class-Contract
SUBDIR += p5-Class-Data-ConfigHash
SUBDIR += p5-Class-Data-Inheritable
SUBDIR += p5-Class-Date
SUBDIR += p5-Class-Declare
SUBDIR += p5-Class-Default
SUBDIR += p5-Class-Delegation
SUBDIR += p5-Class-ErrorHandler
SUBDIR += p5-Class-Factory
SUBDIR += p5-Class-Factory-Util
SUBDIR += p5-Class-Field
SUBDIR += p5-Class-Forward
SUBDIR += p5-Class-Generate
SUBDIR += p5-Class-Gomor
SUBDIR += p5-Class-Handle
SUBDIR += p5-Class-Hook
SUBDIR += p5-Class-ISA
SUBDIR += p5-Class-Inner
SUBDIR += p5-Class-InsideOut
SUBDIR += p5-Class-Inspector
SUBDIR += p5-Class-Interfaces
SUBDIR += p5-Class-Load
SUBDIR += p5-Class-Load-XS
SUBDIR += p5-Class-Loader
SUBDIR += p5-Class-MakeMethods
SUBDIR += p5-Class-Measure
SUBDIR += p5-Class-Method-Modifiers
SUBDIR += p5-Class-Method-Modifiers-Fast
SUBDIR += p5-Class-MethodMaker
SUBDIR += p5-Class-MethodMapper
SUBDIR += p5-Class-Mix
SUBDIR += p5-Class-Mixin
SUBDIR += p5-Class-MixinFactory
SUBDIR += p5-Class-Multimethods
SUBDIR += p5-Class-Multimethods-Pure
SUBDIR += p5-Class-NamedParms
SUBDIR += p5-Class-Null
SUBDIR += p5-Class-OOorNO
SUBDIR += p5-Class-ObjectTemplate
SUBDIR += p5-Class-ObjectTemplate-DB
SUBDIR += p5-Class-Observable
SUBDIR += p5-Class-ParmList
SUBDIR += p5-Class-Prototyped
SUBDIR += p5-Class-ReturnValue
SUBDIR += p5-Class-Roles
SUBDIR += p5-Class-STL-Containers
SUBDIR += p5-Class-Singleton
SUBDIR += p5-Class-Spiffy
SUBDIR += p5-Class-StateMachine
SUBDIR += p5-Class-Std
SUBDIR += p5-Class-Std-Fast
SUBDIR += p5-Class-Std-Utils
SUBDIR += p5-Class-StrongSingleton
SUBDIR += p5-Class-Tangram
SUBDIR += p5-Class-Throwable
SUBDIR += p5-Class-Tiny
SUBDIR += p5-Class-Tom
SUBDIR += p5-Class-Trigger
SUBDIR += p5-Class-Unload
SUBDIR += p5-Class-Virtual
SUBDIR += p5-Class-WhiteHole
SUBDIR += p5-Class-Workflow
SUBDIR += p5-Class-XPath
SUBDIR += p5-Class-XSAccessor
SUBDIR += p5-Clone
SUBDIR += p5-Clone-Fast
SUBDIR += p5-Clone-More
SUBDIR += p5-Clone-PP
SUBDIR += p5-Code-Perl
SUBDIR += p5-Commands-Guarded
SUBDIR += p5-CommitBit
SUBDIR += p5-Compiler-Lexer
SUBDIR += p5-Config-Any
SUBDIR += p5-Config-ApacheFormat
SUBDIR += p5-Config-Auto
SUBDIR += p5-Config-AutoConf
SUBDIR += p5-Config-Fast
SUBDIR += p5-Config-General
SUBDIR += p5-Config-GitLike
SUBDIR += p5-Config-Grammar
SUBDIR += p5-Config-INI
SUBDIR += p5-Config-INI-Reader-Ordered
SUBDIR += p5-Config-INI-Simple
SUBDIR += p5-Config-Identity
SUBDIR += p5-Config-IniFiles
SUBDIR += p5-Config-IniHash
SUBDIR += p5-Config-IniRegEx
SUBDIR += p5-Config-JFDI
SUBDIR += p5-Config-JSON
SUBDIR += p5-Config-MVP
SUBDIR += p5-Config-MVP-Reader-INI
SUBDIR += p5-Config-Merge
SUBDIR += p5-Config-Model
SUBDIR += p5-Config-Model-Tester
SUBDIR += p5-Config-MySQL
SUBDIR += p5-Config-Objective
SUBDIR += p5-Config-Options
SUBDIR += p5-Config-Perl-V
SUBDIR += p5-Config-Properties
SUBDIR += p5-Config-Record
SUBDIR += p5-Config-Setting
SUBDIR += p5-Config-Simple
SUBDIR += p5-Config-Std
SUBDIR += p5-Config-Tiny
SUBDIR += p5-Config-Validator
SUBDIR += p5-Config-Versioned
SUBDIR += p5-Config-Wrest
SUBDIR += p5-Config-YAML
SUBDIR += p5-ConfigReader
SUBDIR += p5-ConfigReader-Simple
SUBDIR += p5-Connector
SUBDIR += p5-Const-Fast
SUBDIR += p5-Context-Preserve
SUBDIR += p5-Contextual-Return
SUBDIR += p5-Coro
SUBDIR += p5-Curses
SUBDIR += p5-Curses-Application
SUBDIR += p5-Curses-Forms
SUBDIR += p5-Curses-UI
SUBDIR += p5-Curses-Widgets
SUBDIR += p5-Cvs
SUBDIR += p5-Cwd-Guard
SUBDIR += p5-DB_File-Lock
SUBDIR += p5-Daemon-Control
SUBDIR += p5-Dancer-Debug
SUBDIR += p5-Danga-Socket
SUBDIR += p5-Danga-Socket-Callback
SUBDIR += p5-Data-ACL
SUBDIR += p5-Data-Alias
SUBDIR += p5-Data-Average
SUBDIR += p5-Data-Bind
SUBDIR += p5-Data-Capture
SUBDIR += p5-Data-ClearSilver-HDF
SUBDIR += p5-Data-Clone
SUBDIR += p5-Data-Compare
SUBDIR += p5-Data-Diver
SUBDIR += p5-Data-Domain
SUBDIR += p5-Data-Dump
SUBDIR += p5-Data-Dump-Streamer
SUBDIR += p5-Data-DumpXML
SUBDIR += p5-Data-Dumper
SUBDIR += p5-Data-Dumper-Concise
SUBDIR += p5-Data-Dumper-Perltidy
SUBDIR += p5-Data-Dumper-Simple
SUBDIR += p5-Data-Flow
SUBDIR += p5-Data-GUID
SUBDIR += p5-Data-Grouper
SUBDIR += p5-Data-HashArray
SUBDIR += p5-Data-HexDump
SUBDIR += p5-Data-HexDump-Range
SUBDIR += p5-Data-Hexdumper
SUBDIR += p5-Data-Hexify
SUBDIR += p5-Data-Hierarchy
SUBDIR += p5-Data-IEEE754
SUBDIR += p5-Data-Inherited
SUBDIR += p5-Data-Inspect
SUBDIR += p5-Data-Integer
SUBDIR += p5-Data-JavaScript-Anon
SUBDIR += p5-Data-Lazy
SUBDIR += p5-Data-Localize
SUBDIR += p5-Data-Lock
SUBDIR += p5-Data-MessagePack
SUBDIR += p5-Data-MessagePack-Stream
SUBDIR += p5-Data-Miscellany
SUBDIR += p5-Data-Model
SUBDIR += p5-Data-Munge
SUBDIR += p5-Data-Object
SUBDIR += p5-Data-ObjectDriver
SUBDIR += p5-Data-OptList
SUBDIR += p5-Data-Page-NoTotalEntries
SUBDIR += p5-Data-ParseBinary
SUBDIR += p5-Data-Path
SUBDIR += p5-Data-Peek
SUBDIR += p5-Data-Perl
SUBDIR += p5-Data-Printer
SUBDIR += p5-Data-Properties
SUBDIR += p5-Data-Rand
SUBDIR += p5-Data-Rand-Obscure
SUBDIR += p5-Data-Random
SUBDIR += p5-Data-Range-Compare
SUBDIR += p5-Data-Record
SUBDIR += p5-Data-Recursive-Encode
SUBDIR += p5-Data-Remember
SUBDIR += p5-Data-Rmap
SUBDIR += p5-Data-RoundRobin
SUBDIR += p5-Data-Rx
SUBDIR += p5-Data-SExpression
SUBDIR += p5-Data-Section
SUBDIR += p5-Data-Section-Simple
SUBDIR += p5-Data-Serializer
SUBDIR += p5-Data-ShowTable
SUBDIR += p5-Data-Stag
SUBDIR += p5-Data-Stream-Bulk
SUBDIR += p5-Data-Structure-Util
SUBDIR += p5-Data-Swap
SUBDIR += p5-Data-Table
SUBDIR += p5-Data-Taxonomy-Tags
SUBDIR += p5-Data-TemporaryBag
SUBDIR += p5-Data-Throttler
SUBDIR += p5-Data-Throttler-Memcached
SUBDIR += p5-Data-Thunk
SUBDIR += p5-Data-TreeDumper
SUBDIR += p5-Data-TreeDumper-Renderer-GTK
SUBDIR += p5-Data-Types
SUBDIR += p5-Data-UUID
SUBDIR += p5-Data-Uniqid
SUBDIR += p5-Data-Util
SUBDIR += p5-Data-Validate
SUBDIR += p5-Data-Validator
SUBDIR += p5-Data-Visitor
SUBDIR += p5-Data-Visitor-Encode
SUBDIR += p5-Data-Walk
SUBDIR += p5-Date-Business
SUBDIR += p5-Date-Calc
SUBDIR += p5-Date-Calc-Iterator
SUBDIR += p5-Date-Calc-XS
SUBDIR += p5-Date-DayOfWeek
SUBDIR += p5-Date-Easter
SUBDIR += p5-Date-Extract
SUBDIR += p5-Date-EzDate
SUBDIR += p5-Date-Holidays-DK
SUBDIR += p5-Date-ICal
SUBDIR += p5-Date-ISO
SUBDIR += p5-Date-Leapyear
SUBDIR += p5-Date-Manip
SUBDIR += p5-Date-Pcalc
SUBDIR += p5-Date-Piece
SUBDIR += p5-Date-Range
SUBDIR += p5-Date-Roman
SUBDIR += p5-Date-Simple
SUBDIR += p5-DateConvert
SUBDIR += p5-DateTime
SUBDIR += p5-DateTime-Astro
SUBDIR += p5-DateTime-Calendar-Chinese
SUBDIR += p5-DateTime-Calendar-Christian
SUBDIR += p5-DateTime-Calendar-Discordian
SUBDIR += p5-DateTime-Calendar-FrenchRevolutionary
SUBDIR += p5-DateTime-Calendar-Hebrew
SUBDIR += p5-DateTime-Calendar-Japanese
SUBDIR += p5-DateTime-Calendar-Julian
SUBDIR += p5-DateTime-Calendar-Mayan
SUBDIR += p5-DateTime-Calendar-Pataphysical
SUBDIR += p5-DateTime-Cron-Simple
SUBDIR += p5-DateTime-Event-Chinese
SUBDIR += p5-DateTime-Event-Cron
SUBDIR += p5-DateTime-Event-Easter
SUBDIR += p5-DateTime-Event-ICal
SUBDIR += p5-DateTime-Event-Lunar
SUBDIR += p5-DateTime-Event-NameDay
SUBDIR += p5-DateTime-Event-Random
SUBDIR += p5-DateTime-Event-Recurrence
SUBDIR += p5-DateTime-Event-SolarTerm
SUBDIR += p5-DateTime-Event-Sunrise
SUBDIR += p5-DateTime-Event-Zodiac
SUBDIR += p5-DateTime-Fiscal-Year
SUBDIR += p5-DateTime-Format-Baby
SUBDIR += p5-DateTime-Format-Bork
SUBDIR += p5-DateTime-Format-Builder
SUBDIR += p5-DateTime-Format-DBI
SUBDIR += p5-DateTime-Format-DateManip
SUBDIR += p5-DateTime-Format-DateParse
SUBDIR += p5-DateTime-Format-Duration
SUBDIR += p5-DateTime-Format-Epoch
SUBDIR += p5-DateTime-Format-Excel
SUBDIR += p5-DateTime-Format-Flexible
SUBDIR += p5-DateTime-Format-HTTP
SUBDIR += p5-DateTime-Format-IBeat
SUBDIR += p5-DateTime-Format-ICal
SUBDIR += p5-DateTime-Format-ISO8601
SUBDIR += p5-DateTime-Format-Mail
SUBDIR += p5-DateTime-Format-MySQL
SUBDIR += p5-DateTime-Format-Natural
SUBDIR += p5-DateTime-Format-Oracle
SUBDIR += p5-DateTime-Format-Pg
SUBDIR += p5-DateTime-Format-RFC3339
SUBDIR += p5-DateTime-Format-RSS
SUBDIR += p5-DateTime-Format-Roman
SUBDIR += p5-DateTime-Format-SQLite
SUBDIR += p5-DateTime-Format-Strptime
SUBDIR += p5-DateTime-Format-W3CDTF
SUBDIR += p5-DateTime-Format-XSD
SUBDIR += p5-DateTime-Functions
SUBDIR += p5-DateTime-HiRes
SUBDIR += p5-DateTime-Incomplete
SUBDIR += p5-DateTime-Locale
SUBDIR += p5-DateTime-Precise
SUBDIR += p5-DateTime-Set
SUBDIR += p5-DateTime-TimeZone
SUBDIR += p5-DateTime-TimeZone-Alias
SUBDIR += p5-DateTime-TimeZone-LMT
SUBDIR += p5-DateTime-Util-Astro
SUBDIR += p5-DateTime-Util-Calc
SUBDIR += p5-DateTimeX-Easy
SUBDIR += p5-Debug-Client
SUBDIR += p5-Decision-ACL
SUBDIR += p5-Declare-Constraints-Simple
SUBDIR += p5-DefHash
SUBDIR += p5-Devel-ArgNames
SUBDIR += p5-Devel-Autoflush
SUBDIR += p5-Devel-Backtrace
SUBDIR += p5-Devel-BeginLift
SUBDIR += p5-Devel-CallChecker
SUBDIR += p5-Devel-Caller
SUBDIR += p5-Devel-Caller-IgnoreNamespaces
SUBDIR += p5-Devel-Caller-Perl
SUBDIR += p5-Devel-Callsite
SUBDIR += p5-Devel-CheckBin
SUBDIR += p5-Devel-CheckCompiler
SUBDIR += p5-Devel-CheckLib
SUBDIR += p5-Devel-CheckOS
SUBDIR += p5-Devel-Constants
SUBDIR += p5-Devel-CoreStack
SUBDIR += p5-Devel-Cover
SUBDIR += p5-Devel-Cover-Report-Clover
SUBDIR += p5-Devel-Cycle
SUBDIR += p5-Devel-DProfPP
SUBDIR += p5-Devel-Declare
SUBDIR += p5-Devel-Declare-Parser
SUBDIR += p5-Devel-Diagram
SUBDIR += p5-Devel-Ditto
SUBDIR += p5-Devel-Dumpvar
SUBDIR += p5-Devel-EvalContext
SUBDIR += p5-Devel-Events
SUBDIR += p5-Devel-Events-Objects
SUBDIR += p5-Devel-FindPerl
SUBDIR += p5-Devel-Gladiator
SUBDIR += p5-Devel-GlobalDestruction
SUBDIR += p5-Devel-GlobalDestruction-XS
SUBDIR += p5-Devel-Hide
SUBDIR += p5-Devel-KYTProf
SUBDIR += p5-Devel-Leak
SUBDIR += p5-Devel-Leak-Cb
SUBDIR += p5-Devel-Leak-Object
SUBDIR += p5-Devel-LeakGuard-Object
SUBDIR += p5-Devel-LeakTrace
SUBDIR += p5-Devel-LexAlias
SUBDIR += p5-Devel-MAT
SUBDIR += p5-Devel-Messenger
SUBDIR += p5-Devel-Modlist
SUBDIR += p5-Devel-NYTProf
SUBDIR += p5-Devel-OverloadInfo
SUBDIR += p5-Devel-PPPort
SUBDIR += p5-Devel-PackagePath
SUBDIR += p5-Devel-PartialDump
SUBDIR += p5-Devel-PatchPerl
SUBDIR += p5-Devel-Pointer
SUBDIR += p5-Devel-Profile
SUBDIR += p5-Devel-REPL
SUBDIR += p5-Devel-Refactor
SUBDIR += p5-Devel-Refcount
SUBDIR += p5-Devel-Required
SUBDIR += p5-Devel-RingBuffer
SUBDIR += p5-Devel-STrace
SUBDIR += p5-Devel-SimpleTrace
SUBDIR += p5-Devel-Size
SUBDIR += p5-Devel-Size-Report
SUBDIR += p5-Devel-SmallProf
SUBDIR += p5-Devel-StackTrace
SUBDIR += p5-Devel-StackTrace-AsHTML
SUBDIR += p5-Devel-StackTrace-WithLexicals
SUBDIR += p5-Devel-StealthDebug
SUBDIR += p5-Devel-Symdump
SUBDIR += p5-Devel-Timer
SUBDIR += p5-Devel-Trace
SUBDIR += p5-Devel-TraceCalls
SUBDIR += p5-Devel-TraceUse
SUBDIR += p5-Devel-ebug
SUBDIR += p5-Devel-ptkdb
SUBDIR += p5-Device-USB
SUBDIR += p5-Digest-TransformPath
SUBDIR += p5-Dir-Project
SUBDIR += p5-Dir-Self
SUBDIR += p5-Dir-Watch
SUBDIR += p5-Directory-Queue
SUBDIR += p5-Directory-Scratch
SUBDIR += p5-Directory-Scratch-Structured
SUBDIR += p5-Dist-CheckConflicts
SUBDIR += p5-Dist-Joseki
SUBDIR += p5-Dist-Metadata
SUBDIR += p5-Dist-Zilla
SUBDIR += p5-Doxygen-Filter-Perl
SUBDIR += p5-DynaLoader-Functions
SUBDIR += p5-EV
SUBDIR += p5-Env-PS1
SUBDIR += p5-Env-Path
SUBDIR += p5-Error-Helper
SUBDIR += p5-Eval-Closure
SUBDIR += p5-Eval-Context
SUBDIR += p5-Eval-LineNumbers
SUBDIR += p5-Eval-WithLexicals
SUBDIR += p5-Event
SUBDIR += p5-Event-ExecFlow
SUBDIR += p5-Event-Join
SUBDIR += p5-Event-Lib
SUBDIR += p5-Event-Notify
SUBDIR += p5-Event-RPC
SUBDIR += p5-Every
SUBDIR += p5-Exception-Class
SUBDIR += p5-Exception-Class-TryCatch
SUBDIR += p5-Exception-Handler
SUBDIR += p5-Expect-Simple
SUBDIR += p5-Exporter
SUBDIR += p5-Exporter-Declare
SUBDIR += p5-Exporter-Easy
SUBDIR += p5-Exporter-Lite
SUBDIR += p5-Exporter-Tidy
SUBDIR += p5-Exporter-Tiny
SUBDIR += p5-ExtUtils-AutoInstall
SUBDIR += p5-ExtUtils-CBuilder
SUBDIR += p5-ExtUtils-CChecker
SUBDIR += p5-ExtUtils-Command
SUBDIR += p5-ExtUtils-Config
SUBDIR += p5-ExtUtils-Constant
SUBDIR += p5-ExtUtils-CppGuess
SUBDIR += p5-ExtUtils-Depends
SUBDIR += p5-ExtUtils-Helpers
SUBDIR += p5-ExtUtils-Install
SUBDIR += p5-ExtUtils-InstallPaths
SUBDIR += p5-ExtUtils-LibBuilder
SUBDIR += p5-ExtUtils-MakeMaker
SUBDIR += p5-ExtUtils-MakeMaker-CPANfile
SUBDIR += p5-ExtUtils-MakeMaker-Coverage
SUBDIR += p5-ExtUtils-Manifest
SUBDIR += p5-ExtUtils-ParseXS
SUBDIR += p5-ExtUtils-PkgConfig
SUBDIR += p5-ExtUtils-XSBuilder
SUBDIR += p5-ExtUtils-XSpp
SUBDIR += p5-FSA-Rules
SUBDIR += p5-Fennec-Lite
SUBDIR += p5-File-Append-TempFile
SUBDIR += p5-File-Assets
SUBDIR += p5-File-Attributes
SUBDIR += p5-File-Attributes-Recursive
SUBDIR += p5-File-BOM
SUBDIR += p5-File-BaseDir
SUBDIR += p5-File-BasicFlock
SUBDIR += p5-File-Binary
SUBDIR += p5-File-Cache
SUBDIR += p5-File-Cat
SUBDIR += p5-File-ChangeNotify
SUBDIR += p5-File-ConfigDir
SUBDIR += p5-File-Copy-Recursive
SUBDIR += p5-File-CountLines
SUBDIR += p5-File-CreationTime
SUBDIR += p5-File-DesktopEntry
SUBDIR += p5-File-Dir-Dumper
SUBDIR += p5-File-DirSync
SUBDIR += p5-File-ExtAttr
SUBDIR += p5-File-FcntlLock
SUBDIR += p5-File-Find-Closures
SUBDIR += p5-File-Find-Object
SUBDIR += p5-File-Find-Rule
SUBDIR += p5-File-Find-Rule-Filesys-Virtual
SUBDIR += p5-File-Find-Rule-Perl
SUBDIR += p5-File-Find-Rule-VCS
SUBDIR += p5-File-Finder
SUBDIR += p5-File-Flat
SUBDIR += p5-File-Flock
SUBDIR += p5-File-Flock-Retry
SUBDIR += p5-File-FnMatch
SUBDIR += p5-File-Grep
SUBDIR += p5-File-HStore
SUBDIR += p5-File-HomeDir
SUBDIR += p5-File-HomeDir-PathClass
SUBDIR += p5-File-Iterator
SUBDIR += p5-File-LibMagic
SUBDIR += p5-File-MMagic
SUBDIR += p5-File-MMagic-XS
SUBDIR += p5-File-Map
SUBDIR += p5-File-MimeInfo
SUBDIR += p5-File-Modified
SUBDIR += p5-File-Monitor
SUBDIR += p5-File-NCopy
SUBDIR += p5-File-NFSLock
SUBDIR += p5-File-Path
SUBDIR += p5-File-Path-Expand
SUBDIR += p5-File-Path-Tiny
SUBDIR += p5-File-PathConvert
SUBDIR += p5-File-Pid
SUBDIR += p5-File-Pid-Quick
SUBDIR += p5-File-Policy
SUBDIR += p5-File-Random
SUBDIR += p5-File-ReadBackwards
SUBDIR += p5-File-Remove
SUBDIR += p5-File-SafeDO
SUBDIR += p5-File-SearchPath
SUBDIR += p5-File-ShareDir
SUBDIR += p5-File-ShareDir-Install
SUBDIR += p5-File-ShareDir-PAR
SUBDIR += p5-File-ShareDir-PathClass
SUBDIR += p5-File-ShareDir-ProjectDistDir
SUBDIR += p5-File-Slurp
SUBDIR += p5-File-Slurp-Tiny
SUBDIR += p5-File-Slurp-Tree
SUBDIR += p5-File-Spec-Native
SUBDIR += p5-File-Stream
SUBDIR += p5-File-Sync
SUBDIR += p5-File-Tail
SUBDIR += p5-File-Tail-Dir
SUBDIR += p5-File-Tail-Multi
SUBDIR += p5-File-Tail-Scribe
SUBDIR += p5-File-Temp
SUBDIR += p5-File-Tempdir
SUBDIR += p5-File-Touch
SUBDIR += p5-File-Type
SUBDIR += p5-File-Util
SUBDIR += p5-File-Write-Rotate
SUBDIR += p5-File-chdir
SUBDIR += p5-File-chmod
SUBDIR += p5-File-pushd
SUBDIR += p5-FileHandle-Fmode
SUBDIR += p5-FileHandle-Unget
SUBDIR += p5-Filesys-Notify-KQueue
SUBDIR += p5-Filesys-Notify-Simple
SUBDIR += p5-Filesys-Virtual
SUBDIR += p5-Filesys-Virtual-Plain
SUBDIR += p5-Filter
SUBDIR += p5-Filter-Template
SUBDIR += p5-Find-Lib
SUBDIR += p5-FindBin-libs
SUBDIR += p5-Forest
SUBDIR += p5-Form-Sensible
SUBDIR += p5-FreeBSD-i386-Ptrace
SUBDIR += p5-FreezeThaw
SUBDIR += p5-Function-Parameters
SUBDIR += p5-Future
SUBDIR += p5-Gearman
SUBDIR += p5-Gearman-Client-Async
SUBDIR += p5-Gearman-Server
SUBDIR += p5-Gearman-XS
SUBDIR += p5-Geo-JSON
SUBDIR += p5-Geo-ShapeFile
SUBDIR += p5-Getargs-Long
SUBDIR += p5-Getopt-ArgvFile
SUBDIR += p5-Getopt-Attribute
SUBDIR += p5-Getopt-Compact
SUBDIR += p5-Getopt-Compact-WithCmd
SUBDIR += p5-Getopt-Declare
SUBDIR += p5-Getopt-Euclid
SUBDIR += p5-Getopt-GUI-Long
SUBDIR += p5-Getopt-Long
SUBDIR += p5-Getopt-Long-Descriptive
SUBDIR += p5-Git-PurePerl
SUBDIR += p5-Git-Repository
SUBDIR += p5-Git-Repository-Plugin-Log
SUBDIR += p5-Git-Sub
SUBDIR += p5-Git-Wrapper
SUBDIR += p5-Glib-Object-Introspection
SUBDIR += p5-Glib2
SUBDIR += p5-Gnome2-GConf
SUBDIR += p5-Goo-Canvas
SUBDIR += p5-Google-Checkout
SUBDIR += p5-Google-ProtocolBuffers
SUBDIR += p5-Gravatar-URL
SUBDIR += p5-Gtk2-Notify
SUBDIR += p5-Gtk2-Spell
SUBDIR += p5-Guard
SUBDIR += p5-HOP-Lexer
SUBDIR += p5-HOP-Stream
SUBDIR += p5-Hash-AsObject
SUBDIR += p5-Hash-AutoHash
SUBDIR += p5-Hash-AutoHash-Args
SUBDIR += p5-Hash-Case
SUBDIR += p5-Hash-Diff
SUBDIR += p5-Hash-FieldHash
SUBDIR += p5-Hash-Flatten
SUBDIR += p5-Hash-Merge-Simple
SUBDIR += p5-Hash-MoreUtils
SUBDIR += p5-Hash-MultiKey
SUBDIR += p5-Hash-MultiValue
SUBDIR += p5-Hash-NoRef
SUBDIR += p5-Hash-Slice
SUBDIR += p5-Hash-Union
SUBDIR += p5-Hash-Util-FieldHash-Compat
SUBDIR += p5-Hash-WithDefaults
SUBDIR += p5-Heap
SUBDIR += p5-Heap-Simple
SUBDIR += p5-Heap-Simple-Perl
SUBDIR += p5-Heap-Simple-XS
SUBDIR += p5-Hook-LexWrap
SUBDIR += p5-IO-AIO
SUBDIR += p5-IO-All
SUBDIR += p5-IO-All-LWP
SUBDIR += p5-IO-Any
SUBDIR += p5-IO-Async
SUBDIR += p5-IO-BufferedSelect
SUBDIR += p5-IO-Callback
SUBDIR += p5-IO-Capture
SUBDIR += p5-IO-CaptureOutput
SUBDIR += p5-IO-Detect
SUBDIR += p5-IO-Digest
SUBDIR += p5-IO-Event
SUBDIR += p5-IO-FDPass
SUBDIR += p5-IO-File-AtomicChange
SUBDIR += p5-IO-HTML
SUBDIR += p5-IO-Handle-Util
SUBDIR += p5-IO-Interactive
SUBDIR += p5-IO-KQueue
SUBDIR += p5-IO-Lambda
SUBDIR += p5-IO-LockedFile
SUBDIR += p5-IO-MultiPipe
SUBDIR += p5-IO-Multiplex
SUBDIR += p5-IO-NestedCapture
SUBDIR += p5-IO-Null
SUBDIR += p5-IO-Pager
SUBDIR += p5-IO-Pipely
SUBDIR += p5-IO-Prompt
SUBDIR += p5-IO-Prompt-Simple
SUBDIR += p5-IO-Prompt-Tiny
SUBDIR += p5-IO-Prompter
SUBDIR += p5-IO-Pty-Easy
SUBDIR += p5-IO-SessionData
SUBDIR += p5-IO-String
SUBDIR += p5-IO-Stty
SUBDIR += p5-IO-Tee
SUBDIR += p5-IO-TieCombine
SUBDIR += p5-IO-Toolkit
SUBDIR += p5-IO-Tty
SUBDIR += p5-IO-Util
SUBDIR += p5-IO-YAML
SUBDIR += p5-IO-stringy
SUBDIR += p5-IOC
SUBDIR += p5-IPC-Cache
SUBDIR += p5-IPC-Cmd
SUBDIR += p5-IPC-DirQueue
SUBDIR += p5-IPC-Locker
SUBDIR += p5-IPC-MM
SUBDIR += p5-IPC-MMA
SUBDIR += p5-IPC-Mmap
SUBDIR += p5-IPC-Mmap-Share
SUBDIR += p5-IPC-Open3-Simple
SUBDIR += p5-IPC-PerlSSH
SUBDIR += p5-IPC-PubSub
SUBDIR += p5-IPC-Run
SUBDIR += p5-IPC-Run-SafeHandles
SUBDIR += p5-IPC-Run3
SUBDIR += p5-IPC-ShareLite
SUBDIR += p5-IPC-Shareable
SUBDIR += p5-IPC-SharedCache
SUBDIR += p5-IPC-ShellCmd
SUBDIR += p5-IPC-Signal
SUBDIR += p5-IPC-System-Simple
SUBDIR += p5-Import-Into
SUBDIR += p5-Inline
SUBDIR += p5-Inline-ASM
SUBDIR += p5-Inline-C
SUBDIR += p5-Inline-CPP
SUBDIR += p5-Inline-Files
SUBDIR += p5-Inline-Filters
SUBDIR += p5-Inline-Java
SUBDIR += p5-Inline-Python
SUBDIR += p5-Inline-TT
SUBDIR += p5-Inline-Tcl
SUBDIR += p5-InlineX-C2XS
SUBDIR += p5-InlineX-CPP2XS
SUBDIR += p5-Input-Validator
SUBDIR += p5-Ioctl
SUBDIR += p5-Iodef-Pb-Simple
SUBDIR += p5-Iterator
SUBDIR += p5-Iterator-IO
SUBDIR += p5-Iterator-Misc
SUBDIR += p5-Iterator-Simple
SUBDIR += p5-Iterator-Util
SUBDIR += p5-JIRA-Client
SUBDIR += p5-JIRA-REST
SUBDIR += p5-JQuery
SUBDIR += p5-JSON-Hyper
SUBDIR += p5-JSON-Path
SUBDIR += p5-JSON-Pointer
SUBDIR += p5-JSON-RPC
SUBDIR += p5-JSON-RPC-Common
SUBDIR += p5-JSON-RPC-Dispatcher
SUBDIR += p5-JSON-Schema
SUBDIR += p5-Java
SUBDIR += p5-Jonk
SUBDIR += p5-LV
SUBDIR += p5-Lexical-Alias
SUBDIR += p5-Lexical-Import
SUBDIR += p5-Lexical-Persistence
SUBDIR += p5-Lexical-SealRequireHints
SUBDIR += p5-Lexical-Var
SUBDIR += p5-Lingua-JA-Fold
SUBDIR += p5-Lingua-Translit
SUBDIR += p5-List-AllUtils
SUBDIR += p5-List-Cycle
SUBDIR += p5-List-Flatten
SUBDIR += p5-List-Gen
SUBDIR += p5-List-Group
SUBDIR += p5-List-Permutor
SUBDIR += p5-List-PowerSet
SUBDIR += p5-List-Rotation-Cycle
SUBDIR += p5-List-Uniq
SUBDIR += p5-List-UtilsBy
SUBDIR += p5-Locale-Maketext
SUBDIR += p5-Locale-Maketext-Fuzzy
SUBDIR += p5-Locale-Maketext-Gettext
SUBDIR += p5-Locale-Maketext-Lexicon
SUBDIR += p5-Locale-Maketext-Simple
SUBDIR += p5-Locale-Msgfmt
SUBDIR += p5-Locale-PGetText
SUBDIR += p5-Locale-PO
SUBDIR += p5-Locale-gettext
SUBDIR += p5-Locale-libintl
SUBDIR += p5-LockFile-Simple
SUBDIR += p5-Log-Accounting-SVK
SUBDIR += p5-Log-Accounting-SVN
SUBDIR += p5-Log-Agent
SUBDIR += p5-Log-Agent-Logger
SUBDIR += p5-Log-Any
SUBDIR += p5-Log-Any-Adapter-Callback
SUBDIR += p5-Log-Any-Adapter-Dispatch
SUBDIR += p5-Log-Any-Adapter-Log4perl
SUBDIR += p5-Log-Any-Adapter-Syslog
SUBDIR += p5-Log-Any-App
SUBDIR += p5-Log-Any-IfLOG
SUBDIR += p5-Log-Contextual
SUBDIR += p5-Log-Defer
SUBDIR += p5-Log-Dispatch
SUBDIR += p5-Log-Dispatch-Array
SUBDIR += p5-Log-Dispatch-ArrayWithLimits
SUBDIR += p5-Log-Dispatch-Colorful
SUBDIR += p5-Log-Dispatch-Config
SUBDIR += p5-Log-Dispatch-Configurator-Any
SUBDIR += p5-Log-Dispatch-Configurator-YAML
SUBDIR += p5-Log-Dispatch-DBI
SUBDIR += p5-Log-Dispatch-Dir
SUBDIR += p5-Log-Dispatch-Email-EmailSend
SUBDIR += p5-Log-Dispatch-File-Rolling
SUBDIR += p5-Log-Dispatch-File-Stamped
SUBDIR += p5-Log-Dispatch-FileRotate
SUBDIR += p5-Log-Dispatch-FileShared
SUBDIR += p5-Log-Dispatch-FileWriteRotate
SUBDIR += p5-Log-Dispatch-Perl
SUBDIR += p5-Log-Dispatch-Screen-Color
SUBDIR += p5-Log-Dispatch-Scribe
SUBDIR += p5-Log-Dispatchouli
SUBDIR += p5-Log-Dump
SUBDIR += p5-Log-Handler
SUBDIR += p5-Log-Log4perl
SUBDIR += p5-Log-Log4perl-Appender-RabbitMQ
SUBDIR += p5-Log-Log4perl-Tiny
SUBDIR += p5-Log-Message
SUBDIR += p5-Log-Message-Simple
SUBDIR += p5-Log-Minimal
SUBDIR += p5-Log-Report
SUBDIR += p5-Log-Report-Optional
SUBDIR += p5-Log-Simple
SUBDIR += p5-Log-Trace
SUBDIR += p5-Log-TraceMessages
SUBDIR += p5-Logfile-Rotate
SUBDIR += p5-Luka
SUBDIR += p5-Lvalue
SUBDIR += p5-MCE
SUBDIR += p5-MRO-Compat
SUBDIR += p5-MRO-Define
SUBDIR += p5-Mac-FileSpec-Unixish
SUBDIR += p5-Mac-PropertyList
SUBDIR += p5-Make
SUBDIR += p5-Media-Type-Simple
SUBDIR += p5-Memoize
SUBDIR += p5-Memoize-ExpireLRU
SUBDIR += p5-Meta-Builder
SUBDIR += p5-MetaCPAN-Client
SUBDIR += p5-Metabase-Client-Simple
SUBDIR += p5-Metabase-Fact
SUBDIR += p5-Method-Alias
SUBDIR += p5-Method-Signatures-Simple
SUBDIR += p5-Minilla
SUBDIR += p5-Minion
SUBDIR += p5-Mixin-Event-Dispatch
SUBDIR += p5-Mixin-Linewise
SUBDIR += p5-Mknod
SUBDIR += p5-Mo
SUBDIR += p5-Mock-Quick
SUBDIR += p5-Module-Build
SUBDIR += p5-Module-Build-Convert
SUBDIR += p5-Module-Build-Kwalitee
SUBDIR += p5-Module-Build-Pluggable
SUBDIR += p5-Module-Build-Pluggable-ReadmeMarkdownFromPod
SUBDIR += p5-Module-Build-Tiny
SUBDIR += p5-Module-Build-XSUtil
SUBDIR += p5-Module-CPANTS-Analyse
SUBDIR += p5-Module-CPANfile
SUBDIR += p5-Module-CheckDeps
SUBDIR += p5-Module-Collect
SUBDIR += p5-Module-Compile
SUBDIR += p5-Module-CoreList
SUBDIR += p5-Module-Dependency
SUBDIR += p5-Module-Depends
SUBDIR += p5-Module-Extract
SUBDIR += p5-Module-ExtractUse
SUBDIR += p5-Module-Find
SUBDIR += p5-Module-Functions
SUBDIR += p5-Module-Implementation
SUBDIR += p5-Module-Info
SUBDIR += p5-Module-Info-File
SUBDIR += p5-Module-Inspector
SUBDIR += p5-Module-Install
SUBDIR += p5-Module-Install-AuthorRequires
SUBDIR += p5-Module-Install-AuthorTests
SUBDIR += p5-Module-Install-ReadmeFromPod
SUBDIR += p5-Module-Install-Repository
SUBDIR += p5-Module-Install-Template
SUBDIR += p5-Module-Install-TestBase
SUBDIR += p5-Module-Install-XSUtil
SUBDIR += p5-Module-List
SUBDIR += p5-Module-Load
SUBDIR += p5-Module-Load-Conditional
SUBDIR += p5-Module-Loaded
SUBDIR += p5-Module-Manifest
SUBDIR += p5-Module-Math-Depends
SUBDIR += p5-Module-Metadata
SUBDIR += p5-Module-Path
SUBDIR += p5-Module-Pluggable
SUBDIR += p5-Module-Pluggable-Fast
SUBDIR += p5-Module-Pluggable-Ordered
SUBDIR += p5-Module-Reader
SUBDIR += p5-Module-Recursive-Require
SUBDIR += p5-Module-Refresh
SUBDIR += p5-Module-Release
SUBDIR += p5-Module-Reload
SUBDIR += p5-Module-Reload-Sel
SUBDIR += p5-Module-Runtime
SUBDIR += p5-Module-Runtime-Conflicts
SUBDIR += p5-Module-ScanDeps
SUBDIR += p5-Module-Setup
SUBDIR += p5-Module-Starter
SUBDIR += p5-Module-Starter-PBP
SUBDIR += p5-Module-Starter-Plugin-SimpleStore
SUBDIR += p5-Module-Starter-Plugin-TT2
SUBDIR += p5-Module-Used
SUBDIR += p5-Module-Util
SUBDIR += p5-Module-Version
SUBDIR += p5-Module-Versions
SUBDIR += p5-Module-Versions-Report
SUBDIR += p5-Moo
SUBDIR += p5-MooX-Cmd
SUBDIR += p5-MooX-ConfigFromFile
SUBDIR += p5-MooX-File-ConfigDir
SUBDIR += p5-MooX-HandlesVia
SUBDIR += p5-MooX-Options
SUBDIR += p5-MooX-StrictConstructor
SUBDIR += p5-MooX-Types-MooseLike
SUBDIR += p5-MooX-Types-MooseLike-Numeric
SUBDIR += p5-MooX-late
SUBDIR += p5-Moos
SUBDIR += p5-Moose
SUBDIR += p5-Moose-Autobox
SUBDIR += p5-Moose-Policy
SUBDIR += p5-Moose-Test
SUBDIR += p5-MooseX-Aliases
SUBDIR += p5-MooseX-App
SUBDIR += p5-MooseX-App-Cmd
SUBDIR += p5-MooseX-ArrayRef
SUBDIR += p5-MooseX-Async
SUBDIR += p5-MooseX-Attribute-Chained
SUBDIR += p5-MooseX-Attribute-ENV
SUBDIR += p5-MooseX-AttributeHelpers
SUBDIR += p5-MooseX-AttributeShortcuts
SUBDIR += p5-MooseX-AuthorizedMethods
SUBDIR += p5-MooseX-ClassAttribute
SUBDIR += p5-MooseX-Clone
SUBDIR += p5-MooseX-CompileTime-Traits
SUBDIR += p5-MooseX-ConfigFromFile
SUBDIR += p5-MooseX-Daemonize
SUBDIR += p5-MooseX-Declare
SUBDIR += p5-MooseX-Emulate-Class-Accessor-Fast
SUBDIR += p5-MooseX-FollowPBP
SUBDIR += p5-MooseX-Getopt
SUBDIR += p5-MooseX-Has-Options
SUBDIR += p5-MooseX-Has-Sugar
SUBDIR += p5-MooseX-HasDefaults
SUBDIR += p5-MooseX-IOC
SUBDIR += p5-MooseX-InsideOut
SUBDIR += p5-MooseX-LazyRequire
SUBDIR += p5-MooseX-Lists
SUBDIR += p5-MooseX-Log-Log4perl
SUBDIR += p5-MooseX-MarkAsMethods
SUBDIR += p5-MooseX-Meta-TypeConstraint-ForceCoercion
SUBDIR += p5-MooseX-MetaDescription
SUBDIR += p5-MooseX-Method-Signatures
SUBDIR += p5-MooseX-MethodAttributes
SUBDIR += p5-MooseX-MultiInitArg
SUBDIR += p5-MooseX-MultiMethods
SUBDIR += p5-MooseX-NonMoose
SUBDIR += p5-MooseX-Object-Pluggable
SUBDIR += p5-MooseX-OneArgNew
SUBDIR += p5-MooseX-POE
SUBDIR += p5-MooseX-Params-Validate
SUBDIR += p5-MooseX-RelatedClassRoles
SUBDIR += p5-MooseX-Role-Loggable
SUBDIR += p5-MooseX-Role-Matcher
SUBDIR += p5-MooseX-Role-Parameterized
SUBDIR += p5-MooseX-Role-Strict
SUBDIR += p5-MooseX-Role-WithOverloading
SUBDIR += p5-MooseX-Runnable
SUBDIR += p5-MooseX-SemiAffordanceAccessor
SUBDIR += p5-MooseX-SetOnce
SUBDIR += p5-MooseX-SimpleConfig
SUBDIR += p5-MooseX-Singleton
SUBDIR += p5-MooseX-Storage
SUBDIR += p5-MooseX-StrictConstructor
SUBDIR += p5-MooseX-Traits
SUBDIR += p5-MooseX-Traits-Pluggable
SUBDIR += p5-MooseX-TransactionalMethods
SUBDIR += p5-MooseX-Types
SUBDIR += p5-MooseX-Types-Common
SUBDIR += p5-MooseX-Types-DateTime
SUBDIR += p5-MooseX-Types-DateTime-ButMaintained
SUBDIR += p5-MooseX-Types-DateTime-MoreCoercions
SUBDIR += p5-MooseX-Types-DateTimeX
SUBDIR += p5-MooseX-Types-ISO8601
SUBDIR += p5-MooseX-Types-JSON
SUBDIR += p5-MooseX-Types-LoadableClass
SUBDIR += p5-MooseX-Types-Path-Class
SUBDIR += p5-MooseX-Types-Path-Tiny
SUBDIR += p5-MooseX-Types-Perl
SUBDIR += p5-MooseX-Types-PortNumber
SUBDIR += p5-MooseX-Types-Set-Object
SUBDIR += p5-MooseX-Types-Signal
SUBDIR += p5-MooseX-Types-Stringlike
SUBDIR += p5-MooseX-Types-Structured
SUBDIR += p5-MooseX-Types-URI
SUBDIR += p5-MooseX-Types-VariantTable
SUBDIR += p5-Mouse
SUBDIR += p5-MouseX-App-Cmd
SUBDIR += p5-MouseX-AttributeHelpers
SUBDIR += p5-MouseX-ConfigFromFile
SUBDIR += p5-MouseX-Foreign
SUBDIR += p5-MouseX-Getopt
SUBDIR += p5-MouseX-NativeTraits
SUBDIR += p5-MouseX-StrictConstructor
SUBDIR += p5-MouseX-Traits
SUBDIR += p5-MouseX-Types
SUBDIR += p5-MouseX-Types-Path-Class
SUBDIR += p5-Multiplex-CMD
SUBDIR += p5-NEXT
SUBDIR += p5-Net-DBus
SUBDIR += p5-Net-ZooKeeper
SUBDIR += p5-No-Worries
SUBDIR += p5-Number-Bytes-Human
SUBDIR += p5-Number-Tolerant
SUBDIR += p5-OLE-Storage_Lite
SUBDIR += p5-OOTools
SUBDIR += p5-Object-Accessor
SUBDIR += p5-Object-Array
SUBDIR += p5-Object-Authority
SUBDIR += p5-Object-Container
SUBDIR += p5-Object-Declare
SUBDIR += p5-Object-Destroyer
SUBDIR += p5-Object-Enum
SUBDIR += p5-Object-Event
SUBDIR += p5-Object-Import
SUBDIR += p5-Object-InsideOut
SUBDIR += p5-Object-MultiType
SUBDIR += p5-Object-Pluggable
SUBDIR += p5-Object-Realize-Later
SUBDIR += p5-Object-Role
SUBDIR += p5-Object-Signature
SUBDIR += p5-Object-Simple
SUBDIR += p5-Object-Tiny
SUBDIR += p5-Object-Tiny-Lvalue
SUBDIR += p5-Olson-Abbreviations
SUBDIR += p5-Opcodes
SUBDIR += p5-OrePAN2
SUBDIR += p5-Ouch
SUBDIR += p5-PAR
SUBDIR += p5-PAR-Dist
SUBDIR += p5-PAR-Packer
SUBDIR += p5-PCSC-Card
SUBDIR += p5-PHP-Serialization
SUBDIR += p5-POE
SUBDIR += p5-POE-API-Hooks
SUBDIR += p5-POE-API-Peek
SUBDIR += p5-POE-Component-Child
SUBDIR += p5-POE-Component-Cron
SUBDIR += p5-POE-Component-Daemon
SUBDIR += p5-POE-Component-DebugShell
SUBDIR += p5-POE-Component-DirWatch
SUBDIR += p5-POE-Component-Hailo
SUBDIR += p5-POE-Component-IKC
SUBDIR += p5-POE-Component-JobQueue
SUBDIR += p5-POE-Component-Logger
SUBDIR += p5-POE-Component-Pluggable
SUBDIR += p5-POE-Component-RSS
SUBDIR += p5-POE-Component-RSSAggregator
SUBDIR += p5-POE-Component-Schedule
SUBDIR += p5-POE-Component-Server-XMLRPC
SUBDIR += p5-POE-Component-Syndicator
SUBDIR += p5-POE-Component-TSTP
SUBDIR += p5-POE-Devel-Profiler
SUBDIR += p5-POE-Loop-AnyEvent
SUBDIR += p5-POE-Loop-Glib
SUBDIR += p5-POE-Loop-Tk
SUBDIR += p5-POE-Quickie
SUBDIR += p5-POE-Session-MultiDispatch
SUBDIR += p5-POE-Stage
SUBDIR += p5-POE-Test-Loops
SUBDIR += p5-POE-XS-Loop-Poll
SUBDIR += p5-POE-XS-Queue-Array
SUBDIR += p5-POEx-Role-SessionInstantiation
SUBDIR += p5-POEx-Role-Streaming
SUBDIR += p5-POEx-Types
SUBDIR += p5-POSIX-strftime-Compiler
SUBDIR += p5-POSIX-strptime
SUBDIR += p5-PPerl
SUBDIR += p5-PV
SUBDIR += p5-Package-Constants
SUBDIR += p5-Package-DeprecationManager
SUBDIR += p5-Package-Generator
SUBDIR += p5-Package-Stash
SUBDIR += p5-Package-Stash-XS
SUBDIR += p5-Package-Variant
SUBDIR += p5-PadWalker
SUBDIR += p5-Parallel-Async
SUBDIR += p5-Parallel-Fork-BossWorker
SUBDIR += p5-Parallel-ForkManager
SUBDIR += p5-Parallel-Iterator
SUBDIR += p5-Parallel-Prefork
SUBDIR += p5-Parallel-Scoreboard
SUBDIR += p5-Params-CallbackRequest
SUBDIR += p5-Params-Check
SUBDIR += p5-Params-Classify
SUBDIR += p5-Params-Coerce
SUBDIR += p5-Params-Util
SUBDIR += p5-Params-Validate
SUBDIR += p5-Params-Validate-Dependencies
SUBDIR += p5-Paranoid
SUBDIR += p5-Parse-CPAN-Meta
SUBDIR += p5-Parse-CPAN-Packages
SUBDIR += p5-Parse-CPAN-Packages-Fast
SUBDIR += p5-Parse-ErrorString-Perl
SUBDIR += p5-Parse-ExuberantCTags
SUBDIR += p5-Parse-LocalDistribution
SUBDIR += p5-Parse-Method-Signatures
SUBDIR += p5-Parse-PMFile
SUBDIR += p5-Parse-PerlConfig
SUBDIR += p5-Parse-Pidl
SUBDIR += p5-Parse-PlainConfig
SUBDIR += p5-Parse-RecDescent
SUBDIR += p5-Parse-Win32Registry
SUBDIR += p5-Parse-Yapp
SUBDIR += p5-ParseLex
SUBDIR += p5-ParseTemplate
SUBDIR += p5-PatchReader
SUBDIR += p5-Path-Abstract
SUBDIR += p5-Path-Class
SUBDIR += p5-Path-Class-File-Lockable
SUBDIR += p5-Path-Dispatcher
SUBDIR += p5-Path-Dispatcher-Declarative
SUBDIR += p5-Path-Extended
SUBDIR += p5-Path-FindDev
SUBDIR += p5-Path-IsDev
SUBDIR += p5-Path-Iterator-Rule
SUBDIR += p5-Path-Resource
SUBDIR += p5-Path-Tiny
SUBDIR += p5-PathTools
SUBDIR += p5-Paws
SUBDIR += p5-Pegex
SUBDIR += p5-Penguin
SUBDIR += p5-Perl-Critic-Deprecated
SUBDIR += p5-Perl-Metrics-Lite
SUBDIR += p5-Perl-Metrics-Simple
SUBDIR += p5-Perl-OSType
SUBDIR += p5-Perl-PrereqScanner
SUBDIR += p5-Perl-PrereqScanner-Lite
SUBDIR += p5-Perl-Tidy
SUBDIR += p5-Perl-Unsafe-Signals
SUBDIR += p5-Perl-Version
SUBDIR += p5-Perl-osnames
SUBDIR += p5-Perl4-CoreLibs
SUBDIR += p5-Perl6-Builtins
SUBDIR += p5-Perl6-Export
SUBDIR += p5-Perl6-Export-Attrs
SUBDIR += p5-Perl6-Form
SUBDIR += p5-Perl6-Junction
SUBDIR += p5-Perl6-Rules
SUBDIR += p5-Perl6-Say
SUBDIR += p5-Perl6-Slurp
SUBDIR += p5-PerlIO-Layers
SUBDIR += p5-PerlIO-Util
SUBDIR += p5-PerlIO-eol
SUBDIR += p5-PerlIO-locale
SUBDIR += p5-PerlIO-utf8_strict
SUBDIR += p5-PerlIO-via-MD5
SUBDIR += p5-PerlIO-via-dynamic
SUBDIR += p5-PerlIO-via-symlink
SUBDIR += p5-PerlX-Maybe
SUBDIR += p5-Pid-File-Flock
SUBDIR += p5-Pipeline
SUBDIR += p5-Pithub
SUBDIR += p5-PkgConfig
SUBDIR += p5-Pod-Coverage
SUBDIR += p5-Pod-Coverage-Moose
SUBDIR += p5-Pod-Coverage-TrustPod
SUBDIR += p5-Pod-Tests
SUBDIR += p5-Pod-Usage
SUBDIR += p5-Pragmatic
SUBDIR += p5-Proc-BackOff
SUBDIR += p5-Proc-Background
SUBDIR += p5-Proc-Daemon
SUBDIR += p5-Proc-Fork
SUBDIR += p5-Proc-Guard
SUBDIR += p5-Proc-PID-File
SUBDIR += p5-Proc-Pidfile
SUBDIR += p5-Proc-ProcessTable
SUBDIR += p5-Proc-Queue
SUBDIR += p5-Proc-Reliable
SUBDIR += p5-Proc-SafeExec
SUBDIR += p5-Proc-Simple
SUBDIR += p5-Proc-Wait3
SUBDIR += p5-Proc-WaitStat
SUBDIR += p5-Project-Gantt
SUBDIR += p5-Project-Libs
SUBDIR += p5-Qudo
SUBDIR += p5-RPSL-Parser
SUBDIR += p5-RRDTool-OO
SUBDIR += p5-Range-String
SUBDIR += p5-Rcs
SUBDIR += p5-Rcs-Agent
SUBDIR += p5-ReadLine-Gnu
SUBDIR += p5-ReadLine-Perl
SUBDIR += p5-ReadLine-TTYtter
SUBDIR += p5-Readonly
SUBDIR += p5-Readonly-XS
SUBDIR += p5-Reflex
SUBDIR += p5-Regexp-Assemble
SUBDIR += p5-Regexp-Assemble-Compressed
SUBDIR += p5-Regexp-Bind
SUBDIR += p5-Regexp-Compare
SUBDIR += p5-Regexp-Grammars
SUBDIR += p5-Regexp-Lexer
SUBDIR += p5-Regexp-RegGrp
SUBDIR += p5-Regexp-Shellish
SUBDIR += p5-Regexp-Subst-Parallel
SUBDIR += p5-Religion
SUBDIR += p5-Reply
SUBDIR += p5-ResourcePool
SUBDIR += p5-Resources
SUBDIR += p5-Return-MultiLevel
SUBDIR += p5-Return-Type
SUBDIR += p5-Return-Value
SUBDIR += p5-Rinci
SUBDIR += p5-Role-Basic
SUBDIR += p5-Role-HasMessage
SUBDIR += p5-Role-Identifiable
SUBDIR += p5-Role-Tiny
SUBDIR += p5-Rose-DateTime
SUBDIR += p5-Rose-Object
SUBDIR += p5-Router-R3
SUBDIR += p5-RunApp
SUBDIR += p5-SDL
SUBDIR += p5-SNMP-Persist
SUBDIR += p5-SOAP-WSDL
SUBDIR += p5-SSN-Validate
SUBDIR += p5-SUPER
SUBDIR += p5-SVN-ACL
SUBDIR += p5-SVN-Access
SUBDIR += p5-SVN-Agent
SUBDIR += p5-SVN-Dump
SUBDIR += p5-SVN-Dumpfile
SUBDIR += p5-SVN-Hook
SUBDIR += p5-SVN-Hooks
SUBDIR += p5-SVN-Log
SUBDIR += p5-SVN-Look
SUBDIR += p5-SVN-Mirror
SUBDIR += p5-SVN-Notify
SUBDIR += p5-SVN-Notify-Config
SUBDIR += p5-SVN-Notify-Filter-AuthZMail
SUBDIR += p5-SVN-Notify-Filter-EmailFlatFileDB
SUBDIR += p5-SVN-Notify-Filter-Markdown
SUBDIR += p5-SVN-Notify-Filter-Watchers
SUBDIR += p5-SVN-Notify-Mirror
SUBDIR += p5-SVN-Notify-Snapshot
SUBDIR += p5-SVN-S4
SUBDIR += p5-SVN-Simple
SUBDIR += p5-SVN-Statistics
SUBDIR += p5-SVN-Web
SUBDIR += p5-Safe-Isa
SUBDIR += p5-Sah
SUBDIR += p5-Scalar-Defer
SUBDIR += p5-Scalar-Does
SUBDIR += p5-Scalar-Listify
SUBDIR += p5-Scalar-String
SUBDIR += p5-Scalar-Util-LooksLikeNumber
SUBDIR += p5-Scalar-Util-Numeric
SUBDIR += p5-Scope-Guard
SUBDIR += p5-Scope-Upper
SUBDIR += p5-Script-isAperlScript
SUBDIR += p5-Search-Binary
SUBDIR += p5-Sentinel
SUBDIR += p5-Sepia
SUBDIR += p5-Set-Array
SUBDIR += p5-Set-ConsistentHash
SUBDIR += p5-Set-Crontab
SUBDIR += p5-Set-CrossProduct
SUBDIR += p5-Set-Infinite
SUBDIR += p5-Set-NestedGroups
SUBDIR += p5-Set-Object
SUBDIR += p5-Set-Scalar
SUBDIR += p5-Set-Tiny
SUBDIR += p5-Shape
SUBDIR += p5-Shell-Base
SUBDIR += p5-Shell-EnvImporter
SUBDIR += p5-Shell-Parser
SUBDIR += p5-Shell-Source
SUBDIR += p5-ShipIt
SUBDIR += p5-ShipIt-Step-Manifest
SUBDIR += p5-Slurp
SUBDIR += p5-Smart-Comments
SUBDIR += p5-Sort-Array
SUBDIR += p5-Sort-ArrayOfArrays
SUBDIR += p5-Sort-Key
SUBDIR += p5-Sort-Key-DateTime
SUBDIR += p5-Sort-Key-Top
SUBDIR += p5-Sort-Maker
SUBDIR += p5-Sort-Tree
SUBDIR += p5-Sort-Versions
SUBDIR += p5-Specio
SUBDIR += p5-Spiffy
SUBDIR += p5-Spoon
SUBDIR += p5-Storable
SUBDIR += p5-Stream
SUBDIR += p5-Stream-Buffered
SUBDIR += p5-Stream-Reader
SUBDIR += p5-String-Approx
SUBDIR += p5-String-CRC32
SUBDIR += p5-String-Checker
SUBDIR += p5-String-Diff
SUBDIR += p5-String-Dump
SUBDIR += p5-String-Ediff
SUBDIR += p5-String-Errf
SUBDIR += p5-String-Formatter
SUBDIR += p5-String-LRC
SUBDIR += p5-String-Parity
SUBDIR += p5-String-Random
SUBDIR += p5-String-RexxParse
SUBDIR += p5-String-Similarity
SUBDIR += p5-String-TT
SUBDIR += p5-Struct-Dumb
SUBDIR += p5-Sub-Alias
SUBDIR += p5-Sub-Current
SUBDIR += p5-Sub-Delete
SUBDIR += p5-Sub-Exporter
SUBDIR += p5-Sub-Exporter-ForMethods
SUBDIR += p5-Sub-Exporter-GlobExporter
SUBDIR += p5-Sub-Exporter-Lexical
SUBDIR += p5-Sub-Exporter-Progressive
SUBDIR += p5-Sub-Identify
SUBDIR += p5-Sub-Infix
SUBDIR += p5-Sub-Install
SUBDIR += p5-Sub-Installer
SUBDIR += p5-Sub-Multi
SUBDIR += p5-Sub-Name
SUBDIR += p5-Sub-Override
SUBDIR += p5-Sub-Prototype
SUBDIR += p5-Sub-Signatures
SUBDIR += p5-Sub-Uplevel
SUBDIR += p5-Sub-WrapPackages
SUBDIR += p5-Symbol-Global-Name
SUBDIR += p5-Symbol-Util
SUBDIR += p5-Syntax-Keyword-Junction
SUBDIR += p5-Sys-Cpu
SUBDIR += p5-Sys-Info
SUBDIR += p5-Sys-Info-Base
SUBDIR += p5-Sys-Info-Driver-BSD
SUBDIR += p5-Sys-MemInfo
SUBDIR += p5-Sys-Mmap
SUBDIR += p5-Sys-RunAlone
SUBDIR += p5-Sys-RunAlways
SUBDIR += p5-Sys-Sendfile
SUBDIR += p5-Sys-Sendfile-FreeBSD
SUBDIR += p5-Sys-Sig
SUBDIR += p5-Sys-SigAction
SUBDIR += p5-Sys-Syscall
SUBDIR += p5-Sys-Trace
SUBDIR += p5-Sys-Virt
SUBDIR += p5-System-Command
SUBDIR += p5-System-Sub
SUBDIR += p5-System2
SUBDIR += p5-TAP-Formatter-JUnit
SUBDIR += p5-TAP-Harness-JUnit
SUBDIR += p5-TAP-SimpleOutput
SUBDIR += p5-Taint-Runtime
SUBDIR += p5-Taint-Util
SUBDIR += p5-Task-Tiny
SUBDIR += p5-Task-Weaken
SUBDIR += p5-Tee
SUBDIR += p5-Template-Provider-Encode
SUBDIR += p5-Term-ANSIColor
SUBDIR += p5-Term-ANSIScreen
SUBDIR += p5-Term-Animation
SUBDIR += p5-Term-CallEditor
SUBDIR += p5-Term-Clui
SUBDIR += p5-Term-EditLine
SUBDIR += p5-Term-Encoding
SUBDIR += p5-Term-Menus
SUBDIR += p5-Term-ProgressBar
SUBDIR += p5-Term-ProgressBar-Quiet
SUBDIR += p5-Term-ProgressBar-Simple
SUBDIR += p5-Term-Prompt
SUBDIR += p5-Term-Query
SUBDIR += p5-Term-RawInput
SUBDIR += p5-Term-ReadKey
SUBDIR += p5-Term-ReadLine
SUBDIR += p5-Term-ReadLine-Perl
SUBDIR += p5-Term-ReadLine-Zoid
SUBDIR += p5-Term-ReadPassword
SUBDIR += p5-Term-Screen
SUBDIR += p5-Term-ScreenColor
SUBDIR += p5-Term-Shell
SUBDIR += p5-Term-Size
SUBDIR += p5-Term-Size-Any
SUBDIR += p5-Term-Size-Perl
SUBDIR += p5-Term-Sk
SUBDIR += p5-Term-Title
SUBDIR += p5-Term-UI
SUBDIR += p5-Term-VT102
SUBDIR += p5-Term-VT102-Boundless
SUBDIR += p5-Term-Visual
SUBDIR += p5-Test-API
SUBDIR += p5-Test-Able
SUBDIR += p5-Test-Able-Runner
SUBDIR += p5-Test-Aggregate
SUBDIR += p5-Test-Assertions
SUBDIR += p5-Test-Base
SUBDIR += p5-Test-Benchmark
SUBDIR += p5-Test-BinaryData
SUBDIR += p5-Test-Bits
SUBDIR += p5-Test-Block
SUBDIR += p5-Test-CPAN-Meta
SUBDIR += p5-Test-CPAN-Meta-YAML
SUBDIR += p5-Test-CheckDeps
SUBDIR += p5-Test-CheckManifest
SUBDIR += p5-Test-Class
SUBDIR += p5-Test-Class-Most
SUBDIR += p5-Test-ClassAPI
SUBDIR += p5-Test-Classy
SUBDIR += p5-Test-CleanNamespaces
SUBDIR += p5-Test-Cmd
SUBDIR += p5-Test-Command
SUBDIR += p5-Test-Command-Simple
SUBDIR += p5-Test-Compile
SUBDIR += p5-Test-DBIx-Class
SUBDIR += p5-Test-Data
SUBDIR += p5-Test-Debugger
SUBDIR += p5-Test-Declare
SUBDIR += p5-Test-Deep
SUBDIR += p5-Test-Dependencies
SUBDIR += p5-Test-DependentModules
SUBDIR += p5-Test-Differences
SUBDIR += p5-Test-Distribution
SUBDIR += p5-Test-EOL
SUBDIR += p5-Test-Exception
SUBDIR += p5-Test-Exception-LessClever
SUBDIR += p5-Test-Expect
SUBDIR += p5-Test-FailWarnings
SUBDIR += p5-Test-Fake-HTTPD
SUBDIR += p5-Test-Fatal
SUBDIR += p5-Test-File
SUBDIR += p5-Test-File-Contents
SUBDIR += p5-Test-File-ShareDir
SUBDIR += p5-Test-Filename
SUBDIR += p5-Test-Fixme
SUBDIR += p5-Test-Fixture-DBIC-Schema
SUBDIR += p5-Test-Group
SUBDIR += p5-Test-HTML-Tidy
SUBDIR += p5-Test-Harness
SUBDIR += p5-Test-Harness-Straps
SUBDIR += p5-Test-HasVersion
SUBDIR += p5-Test-HexString
SUBDIR += p5-Test-Identity
SUBDIR += p5-Test-If
SUBDIR += p5-Test-InDistDir
SUBDIR += p5-Test-Inline
SUBDIR += p5-Test-Inter
SUBDIR += p5-Test-JSON
SUBDIR += p5-Test-Kwalitee
SUBDIR += p5-Test-Lazy
SUBDIR += p5-Test-LeakTrace
SUBDIR += p5-Test-LectroTest
SUBDIR += p5-Test-LoadAllModules
SUBDIR += p5-Test-Log4perl
SUBDIR += p5-Test-LongString
SUBDIR += p5-Test-Manifest
SUBDIR += p5-Test-ManyParams
SUBDIR += p5-Test-Memory-Cycle
SUBDIR += p5-Test-Mini
SUBDIR += p5-Test-Mini-Unit
SUBDIR += p5-Test-Mock-Guard
SUBDIR += p5-Test-Mock-LWP
SUBDIR += p5-Test-Mock-LWP-Dispatch
SUBDIR += p5-Test-MockModule
SUBDIR += p5-Test-MockObject
SUBDIR += p5-Test-MockRandom
SUBDIR += p5-Test-MockTime
SUBDIR += p5-Test-Modern
SUBDIR += p5-Test-Module-Used
SUBDIR += p5-Test-Moose-More
SUBDIR += p5-Test-More-UTF8
SUBDIR += p5-Test-Most
SUBDIR += p5-Test-Name-FromLine
SUBDIR += p5-Test-Net-LDAP
SUBDIR += p5-Test-Net-RabbitMQ
SUBDIR += p5-Test-NoTabs
SUBDIR += p5-Test-NoWarnings
SUBDIR += p5-Test-Number-Delta
SUBDIR += p5-Test-Object
SUBDIR += p5-Test-OpenLDAP
SUBDIR += p5-Test-Output
SUBDIR += p5-Test-POE-Client-TCP
SUBDIR += p5-Test-POE-Server-TCP
SUBDIR += p5-Test-Parser
SUBDIR += p5-Test-PerlTidy
SUBDIR += p5-Test-Pod
SUBDIR += p5-Test-Pod-Coverage
SUBDIR += p5-Test-Pod-Coverage-Permissive
SUBDIR += p5-Test-Portability-Files
SUBDIR += p5-Test-Prereq
SUBDIR += p5-Test-RandomResults
SUBDIR += p5-Test-Refcount
SUBDIR += p5-Test-Reporter
SUBDIR += p5-Test-Reporter-Transport-Metabase
SUBDIR += p5-Test-Requires
SUBDIR += p5-Test-RequiresInternet
SUBDIR += p5-Test-Script
SUBDIR += p5-Test-Script-Run
SUBDIR += p5-Test-SharedFork
SUBDIR += p5-Test-Signature
SUBDIR += p5-Test-Simple
SUBDIR += p5-Test-Singleton
SUBDIR += p5-Test-Spec
SUBDIR += p5-Test-Spelling
SUBDIR += p5-Test-Strict
SUBDIR += p5-Test-SubCalls
SUBDIR += p5-Test-Synopsis
SUBDIR += p5-Test-Sys-Info
SUBDIR += p5-Test-TAP-HTMLMatrix
SUBDIR += p5-Test-TAP-Model
SUBDIR += p5-Test-TCP
SUBDIR += p5-Test-TableDriven
SUBDIR += p5-Test-Taint
SUBDIR += p5-Test-TempDir-Tiny
SUBDIR += p5-Test-Time
SUBDIR += p5-Test-Timer
SUBDIR += p5-Test-TinyMocker
SUBDIR += p5-Test-Trap
SUBDIR += p5-Test-Unit
SUBDIR += p5-Test-UseAllModules
SUBDIR += p5-Test-Version
SUBDIR += p5-Test-WWW-Declare
SUBDIR += p5-Test-WWW-Mechanize
SUBDIR += p5-Test-WWW-Mechanize-CGI
SUBDIR += p5-Test-WWW-Mechanize-CGIApp
SUBDIR += p5-Test-WWW-Mechanize-Catalyst
SUBDIR += p5-Test-WWW-Mechanize-PSGI
SUBDIR += p5-Test-WWW-Selenium
SUBDIR += p5-Test-Warn
SUBDIR += p5-Test-Warnings
SUBDIR += p5-Test-Weaken
SUBDIR += p5-Test-Without-Module
SUBDIR += p5-Test-XML
SUBDIR += p5-Test-XML-Valid
SUBDIR += p5-Test-YAML
SUBDIR += p5-Test-YAML-Meta
SUBDIR += p5-Test-YAML-Valid
SUBDIR += p5-Test-utf8
SUBDIR += p5-Text-Levenshtein
SUBDIR += p5-Text-Levenshtein-Damerau
SUBDIR += p5-Text-LevenshteinXS
SUBDIR += p5-Text-Outdent
SUBDIR += p5-Text-vFile-asData
SUBDIR += p5-TheSchwartz
SUBDIR += p5-TheSchwartz-Simple
SUBDIR += p5-TheSchwartz-Worker-SendEmail
SUBDIR += p5-Thread-Apartment
SUBDIR += p5-Thread-Cancel
SUBDIR += p5-Thread-Pool-Simple
SUBDIR += p5-Thread-Queue
SUBDIR += p5-Thread-Queue-Duplex
SUBDIR += p5-Thread-Suspend
SUBDIR += p5-Thrift
SUBDIR += p5-Thrift-XS
SUBDIR += p5-Throwable
SUBDIR += p5-Tie-Array-Pack
SUBDIR += p5-Tie-Array-Sorted
SUBDIR += p5-Tie-CPHash
SUBDIR += p5-Tie-Cache
SUBDIR += p5-Tie-DB_File-SplitHash
SUBDIR += p5-Tie-DB_FileLock
SUBDIR += p5-Tie-File
SUBDIR += p5-Tie-File-AsHash
SUBDIR += p5-Tie-FileLRUCache
SUBDIR += p5-Tie-Function
SUBDIR += p5-Tie-Hash-Indexed
SUBDIR += p5-Tie-Hash-MultiValue
SUBDIR += p5-Tie-Hash-Regex
SUBDIR += p5-Tie-Hash-Sorted
SUBDIR += p5-Tie-Hash-TwoWay
SUBDIR += p5-Tie-IxHash
SUBDIR += p5-Tie-LLHash
SUBDIR += p5-Tie-RefHash
SUBDIR += p5-Tie-RefHash-Weak
SUBDIR += p5-Tie-RegexpHash
SUBDIR += p5-Tie-Restore
SUBDIR += p5-Tie-ShareLite
SUBDIR += p5-Tie-Simple
SUBDIR += p5-Tie-ToObject
SUBDIR += p5-Tie-Util
SUBDIR += p5-Tie-iCal
SUBDIR += p5-Time-Clock
SUBDIR += p5-Time-Crontab
SUBDIR += p5-Time-Duration
SUBDIR += p5-Time-Duration-Parse
SUBDIR += p5-Time-Format
SUBDIR += p5-Time-HiRes
SUBDIR += p5-Time-Interval
SUBDIR += p5-Time-Local
SUBDIR += p5-Time-Mock
SUBDIR += p5-Time-Object
SUBDIR += p5-Time-Out
SUBDIR += p5-Time-Period
SUBDIR += p5-Time-Piece
SUBDIR += p5-Time-Piece-Range
SUBDIR += p5-Time-Progress
SUBDIR += p5-Time-Stopwatch
SUBDIR += p5-Time-Warp
SUBDIR += p5-Time-modules
SUBDIR += p5-Time-timegm
SUBDIR += p5-TimeDate
SUBDIR += p5-ToolSet
SUBDIR += p5-TraceFuncs
SUBDIR += p5-Tree-Binary
SUBDIR += p5-Tree-Binary-Dictionary
SUBDIR += p5-Tree-DAG_Node
SUBDIR += p5-Tree-Node
SUBDIR += p5-Tree-Parser
SUBDIR += p5-Tree-R
SUBDIR += p5-Tree-RedBlack
SUBDIR += p5-Tree-Simple
SUBDIR += p5-Tree-Simple-View
SUBDIR += p5-Tree-Simple-VisitorFactory
SUBDIR += p5-Tree-Trie
SUBDIR += p5-Type-Tie
SUBDIR += p5-Type-Tiny
SUBDIR += p5-Type-Tiny-XS
SUBDIR += p5-Types-Core
SUBDIR += p5-Types-Path-Tiny
SUBDIR += p5-Types-Serialiser
SUBDIR += p5-Types-URI
SUBDIR += p5-Types-UUID
SUBDIR += p5-UDCode
SUBDIR += p5-UI-Dialog
SUBDIR += p5-UNIVERSAL-can
SUBDIR += p5-UNIVERSAL-isa
SUBDIR += p5-UNIVERSAL-moniker
SUBDIR += p5-UNIVERSAL-ref
SUBDIR += p5-UNIVERSAL-require
SUBDIR += p5-UNIVERSAL-which
SUBDIR += p5-UUID
SUBDIR += p5-UUID-Random
SUBDIR += p5-UUID-Random-Patch-UseMRS
SUBDIR += p5-UUID-Tiny
SUBDIR += p5-Uniq
SUBDIR += p5-Unix-Groups
SUBDIR += p5-Unix-Statgrab
SUBDIR += p5-Unix-Uptime
SUBDIR += p5-User-Identity
SUBDIR += p5-VCP-Dest-svk
SUBDIR += p5-VCP-Source-cvsbk
SUBDIR += p5-VCP-autrijus
SUBDIR += p5-VCS
SUBDIR += p5-VCS-CVS
SUBDIR += p5-VCS-Lite
SUBDIR += p5-Validation-Class
SUBDIR += p5-Variable-Eject
SUBDIR += p5-Variable-Magic
SUBDIR += p5-Want
SUBDIR += p5-WeakRef
SUBDIR += p5-Workflow
SUBDIR += p5-XML-Compile-Tester
SUBDIR += p5-XML-Pastor
SUBDIR += p5-XS-Object-Magic
SUBDIR += p5-XSLoader
SUBDIR += p5-Xporter
SUBDIR += p5-YAML-AppConfig
SUBDIR += p5-Yada-Yada-Yada
SUBDIR += p5-ZConf-GUI
SUBDIR += p5-ZML
SUBDIR += p5-accessors
SUBDIR += p5-accessors-fast
SUBDIR += p5-aliased
SUBDIR += p5-asa
SUBDIR += p5-autobox
SUBDIR += p5-autobox-Core
SUBDIR += p5-autodie
SUBDIR += p5-autovivification
SUBDIR += p5-bareword-filehandles
SUBDIR += p5-boolean
SUBDIR += p5-capitalization
SUBDIR += p5-carton
SUBDIR += p5-common-sense
SUBDIR += p5-constant
SUBDIR += p5-constant-boolean
SUBDIR += p5-constant-def
SUBDIR += p5-constant-defer
SUBDIR += p5-constant-lexical
SUBDIR += p5-cpan-listchanges
SUBDIR += p5-curry
SUBDIR += p5-enum
SUBDIR += p5-ex-lib
SUBDIR += p5-experimental
SUBDIR += p5-forks
SUBDIR += p5-github_creator
SUBDIR += p5-iCal-Parser
SUBDIR += p5-indirect
SUBDIR += p5-interface
SUBDIR += p5-latest
SUBDIR += p5-lexical-underscore
SUBDIR += p5-lib-abs
SUBDIR += p5-libalarm
SUBDIR += p5-libxml-enno
SUBDIR += p5-local-lib
SUBDIR += p5-match-simple
SUBDIR += p5-mem
SUBDIR += p5-mixin
SUBDIR += p5-mocked
SUBDIR += p5-multidimensional
SUBDIR += p5-namespace-autoclean
SUBDIR += p5-namespace-clean
SUBDIR += p5-namespace-sweep
SUBDIR += p5-orz
SUBDIR += p5-parent
SUBDIR += p5-perlkde
SUBDIR += p5-perlqt
SUBDIR += p5-pip
SUBDIR += p5-prefork
SUBDIR += p5-reaper
SUBDIR += p5-relative
SUBDIR += p5-rpm-build-perl
SUBDIR += p5-self
SUBDIR += p5-self-init
SUBDIR += p5-strictures
SUBDIR += p5-subatom
SUBDIR += p5-subversion
SUBDIR += p5-syntax
SUBDIR += p5-threads
SUBDIR += p5-threads-shared
SUBDIR += p5-true
SUBDIR += p5-uni-perl
SUBDIR += p5-version
SUBDIR += p65
SUBDIR += paexec
SUBDIR += papi
SUBDIR += papp
SUBDIR += pas2dox
SUBDIR += pasm
SUBDIR += patch
SUBDIR += pccts
SUBDIR += pcl
SUBDIR += pcre
SUBDIR += pcre++
SUBDIR += pcsc-ada
SUBDIR += pcsc-lite
SUBDIR += pdcurses
SUBDIR += pdcurses-the
SUBDIR += pear
SUBDIR += pear-Config
SUBDIR += pear-Console_Color
SUBDIR += pear-Console_CommandLine
SUBDIR += pear-Console_Getargs
SUBDIR += pear-Console_Table
SUBDIR += pear-Date
SUBDIR += pear-Date_Holidays
SUBDIR += pear-Date_Holidays_Austria
SUBDIR += pear-Date_Holidays_Brazil
SUBDIR += pear-Date_Holidays_Denmark
SUBDIR += pear-Date_Holidays_Discordian
SUBDIR += pear-Date_Holidays_EnglandWales
SUBDIR += pear-Date_Holidays_Germany
SUBDIR += pear-Date_Holidays_Iceland
SUBDIR += pear-Date_Holidays_Ireland
SUBDIR += pear-Date_Holidays_Italy
SUBDIR += pear-Date_Holidays_Japan
SUBDIR += pear-Date_Holidays_Netherlands
SUBDIR += pear-Date_Holidays_Norway
SUBDIR += pear-Date_Holidays_PHPdotNet
SUBDIR += pear-Date_Holidays_Romania
SUBDIR += pear-Date_Holidays_Slovenia
SUBDIR += pear-Date_Holidays_Sweden
SUBDIR += pear-Date_Holidays_UNO
SUBDIR += pear-Date_Holidays_USA
SUBDIR += pear-Date_Holidays_Ukraine
SUBDIR += pear-Event_Dispatcher
SUBDIR += pear-FSM
SUBDIR += pear-File_Iterator
SUBDIR += pear-HTML_BBCodeParser
SUBDIR += pear-HTML_CSS
SUBDIR += pear-HTML_Common
SUBDIR += pear-HTML_Common2
SUBDIR += pear-HTML_Form
SUBDIR += pear-HTML_Javascript
SUBDIR += pear-HTML_Page2
SUBDIR += pear-HTML_QuickForm
SUBDIR += pear-HTML_QuickForm2
SUBDIR += pear-HTML_QuickForm_Controller
SUBDIR += pear-HTML_QuickForm_Livesearch
SUBDIR += pear-HTML_QuickForm_Renderer_Tableless
SUBDIR += pear-HTML_QuickForm_SelectFilter
SUBDIR += pear-HTML_QuickForm_advmultiselect
SUBDIR += pear-HTML_Select
SUBDIR += pear-HTML_Select_Common
SUBDIR += pear-HTML_Table
SUBDIR += pear-HTML_Template_Flexy
SUBDIR += pear-HTML_Template_IT
SUBDIR += pear-HTML_Template_PHPLIB
SUBDIR += pear-HTML_Template_Sigma
SUBDIR += pear-HTML_TreeMenu
SUBDIR += pear-Horde_Alarm
SUBDIR += pear-Horde_Argv
SUBDIR += pear-Horde_Autoloader
SUBDIR += pear-Horde_Autoloader_Cache
SUBDIR += pear-Horde_Cache
SUBDIR += pear-Horde_Cli
SUBDIR += pear-Horde_Constraint
SUBDIR += pear-Horde_Controller
SUBDIR += pear-Horde_Core
SUBDIR += pear-Horde_Data
SUBDIR += pear-Horde_Date
SUBDIR += pear-Horde_Date_Parser
SUBDIR += pear-Horde_Exception
SUBDIR += pear-Horde_History
SUBDIR += pear-Horde_Icalendar
SUBDIR += pear-Horde_Injector
SUBDIR += pear-Horde_Itip
SUBDIR += pear-Horde_Lock
SUBDIR += pear-Horde_LoginTasks
SUBDIR += pear-Horde_Nls
SUBDIR += pear-Horde_Notification
SUBDIR += pear-Horde_Prefs
SUBDIR += pear-Horde_Queue
SUBDIR += pear-Horde_Rdo
SUBDIR += pear-Horde_Role
SUBDIR += pear-Horde_Scheduler
SUBDIR += pear-Horde_Serialize
SUBDIR += pear-Horde_Stream
SUBDIR += pear-Horde_Stream_Filter
SUBDIR += pear-Horde_Stream_Wrapper
SUBDIR += pear-Horde_Support
SUBDIR += pear-Horde_Thrift
SUBDIR += pear-Horde_Timezone
SUBDIR += pear-Horde_Token
SUBDIR += pear-Horde_Translation
SUBDIR += pear-Horde_Tree
SUBDIR += pear-Horde_Util
SUBDIR += pear-Horde_View
SUBDIR += pear-I18N
SUBDIR += pear-IO_Bit
SUBDIR += pear-Math_Fraction
SUBDIR += pear-Net_Gearman
SUBDIR += pear-OLE
SUBDIR += pear-PEAR_Info
SUBDIR += pear-PEAR_PackageFileManager
SUBDIR += pear-PEAR_PackageFileManager2
SUBDIR += pear-PEAR_PackageFileManager_Plugins
SUBDIR += pear-PHPDoc
SUBDIR += pear-PHPTAL
SUBDIR += pear-PHPUnit3
SUBDIR += pear-PHPUnit_MockObject
SUBDIR += pear-PHP_ArrayOf
SUBDIR += pear-PHP_Beautifier
SUBDIR += pear-PHP_CodeBrowser
SUBDIR += pear-PHP_CodeCoverage
SUBDIR += pear-PHP_CodeSniffer
SUBDIR += pear-PHP_Compat
SUBDIR += pear-PHP_CompatInfo
SUBDIR += pear-PHP_Depend
SUBDIR += pear-PHP_PMD
SUBDIR += pear-PHP_Parser
SUBDIR += pear-PHP_ParserGenerator
SUBDIR += pear-PHP_Timer
SUBDIR += pear-PHP_TokenStream
SUBDIR += pear-PHP_UML
SUBDIR += pear-PPW
SUBDIR += pear-Pager
SUBDIR += pear-PhpDocumentor
SUBDIR += pear-Pirum
SUBDIR += pear-SebastianBergmann_FinderFacade
SUBDIR += pear-SebastianBergmann_Git
SUBDIR += pear-SebastianBergmann_PHPCPD
SUBDIR += pear-SebastianBergmann_PHPLOC
SUBDIR += pear-SebastianBergmann_Version
SUBDIR += pear-Structure_LinkedList
SUBDIR += pear-Structures_DataGrid
SUBDIR += pear-Structures_DataGrid_Renderer_Console
SUBDIR += pear-Structures_DataGrid_Renderer_HTMLSortForm
SUBDIR += pear-Structures_DataGrid_Renderer_HTMLTable
SUBDIR += pear-Structures_DataGrid_Renderer_XUL
SUBDIR += pear-Symfony_Component_Console
SUBDIR += pear-Symfony_Component_Finder
SUBDIR += pear-System_Command
SUBDIR += pear-Testing_Selenium
SUBDIR += pear-Text_Diff
SUBDIR += pear-TheSeer_DirectoryScanner
SUBDIR += pear-TheSeer_fDOMDocument
SUBDIR += pear-TheSeer_fXSL
SUBDIR += pear-TheSeer_phpDox
SUBDIR += pear-VFS
SUBDIR += pear-Validate
SUBDIR += pear-Validate_AU
SUBDIR += pear-Validate_Finance
SUBDIR += pear-Validate_Finance_CreditCard
SUBDIR += pear-Validate_US
SUBDIR += pear-Var_Dump
SUBDIR += pear-VersionControl_Git
SUBDIR += pear-VersionControl_SVN
SUBDIR += pear-XML_NITF
SUBDIR += pear-XML_Parser
SUBDIR += pear-XML_RSS
SUBDIR += pear-XML_SVG
SUBDIR += pear-XML_Serializer
SUBDIR += pear-XML_Transformer
SUBDIR += pear-XML_Tree
SUBDIR += pear-XML_Util
SUBDIR += pear-channel-doctrine
SUBDIR += pear-channel-ezc
SUBDIR += pear-channel-horde
SUBDIR += pear-channel-htmlpurifier
SUBDIR += pear-channel-openpear
SUBDIR += pear-channel-pdepend
SUBDIR += pear-channel-phing
SUBDIR += pear-channel-phpdoc
SUBDIR += pear-channel-phpmd
SUBDIR += pear-channel-phpunit
SUBDIR += pear-channel-pirum
SUBDIR += pear-channel-symfony
SUBDIR += pear-channel-symfony2
SUBDIR += pear-channel-theseer
SUBDIR += pear-channel-twig
SUBDIR += pear-codegen
SUBDIR += pear-ezc_Base
SUBDIR += pear-ezc_ConsoleTools
SUBDIR += pear-htmlpurifier
SUBDIR += pear-pdepend-staticReflection
SUBDIR += pear-phing
SUBDIR += pecl-APCu
SUBDIR += pecl-automap
SUBDIR += pecl-bbcode
SUBDIR += pecl-bcompiler
SUBDIR += pecl-dio
SUBDIR += pecl-eio
SUBDIR += pecl-ev
SUBDIR += pecl-event
SUBDIR += pecl-expect
SUBDIR += pecl-gearman
SUBDIR += pecl-hidef
SUBDIR += pecl-htscanner
SUBDIR += pecl-inclued
SUBDIR += pecl-inotify
SUBDIR += pecl-intl
SUBDIR += pecl-jsmin
SUBDIR += pecl-jsonc
SUBDIR += pecl-jsond
SUBDIR += pecl-judy
SUBDIR += pecl-libevent
SUBDIR += pecl-mcve
SUBDIR += pecl-memoize
SUBDIR += pecl-msgpack
SUBDIR += pecl-ncurses
SUBDIR += pecl-newt
SUBDIR += pecl-operator
SUBDIR += pecl-params
SUBDIR += pecl-parsekit
SUBDIR += pecl-propro
SUBDIR += pecl-pthreads
SUBDIR += pecl-qb
SUBDIR += pecl-raphf
SUBDIR += pecl-runkit
SUBDIR += pecl-scream
SUBDIR += pecl-shape
SUBDIR += pecl-spl_types
SUBDIR += pecl-spread
SUBDIR += pecl-statgrab
SUBDIR += pecl-strict
SUBDIR += pecl-svn
SUBDIR += pecl-swoole
SUBDIR += pecl-sync
SUBDIR += pecl-test_helpers
SUBDIR += pecl-trace
SUBDIR += pecl-uopz
SUBDIR += pecl-uploadprogress
SUBDIR += pecl-uri_template
SUBDIR += pecl-uuid
SUBDIR += pecl-vld
SUBDIR += pecl-xhprof
SUBDIR += pecl-yac
SUBDIR += pecl-zookeeper
SUBDIR += pep8
SUBDIR += performance
SUBDIR += perlconsole
SUBDIR += phabricator
SUBDIR += php-Psr_Log
SUBDIR += php-composer
SUBDIR += php-libawl
SUBDIR += php-memoize
SUBDIR += php-scalar_objects
SUBDIR += php-xdebug
SUBDIR += php5-blitz
SUBDIR += php5-blitz-devel
SUBDIR += php5-dav
SUBDIR += php5-geshi
SUBDIR += php5-gettext
SUBDIR += php5-ice
SUBDIR += php5-json
SUBDIR += php5-msgpack
SUBDIR += php5-pcntl
SUBDIR += php5-pinba
SUBDIR += php5-readline
SUBDIR += php5-shmop
SUBDIR += php5-sysvmsg
SUBDIR += php5-sysvsem
SUBDIR += php5-sysvshm
SUBDIR += php5-thrift
SUBDIR += php5-tokenizer
SUBDIR += php55-gettext
SUBDIR += php55-json
SUBDIR += php55-pcntl
SUBDIR += php55-readline
SUBDIR += php55-shmop
SUBDIR += php55-sysvmsg
SUBDIR += php55-sysvsem
SUBDIR += php55-sysvshm
SUBDIR += php55-tokenizer
SUBDIR += php56-gettext
SUBDIR += php56-json
SUBDIR += php56-pcntl
SUBDIR += php56-readline
SUBDIR += php56-shmop
SUBDIR += php56-sysvmsg
SUBDIR += php56-sysvsem
SUBDIR += php56-sysvshm
SUBDIR += php56-tokenizer
SUBDIR += phpbt
SUBDIR += phpsh
SUBDIR += phptags
SUBDIR += phpunit
SUBDIR += physfs
SUBDIR += physfs-devel
SUBDIR += picp
SUBDIR += picprog
SUBDIR += pig
SUBDIR += piklab
SUBDIR += pinba_engine
SUBDIR += pipestatus
SUBDIR += pire
SUBDIR += pit
SUBDIR += pkg-info.el
SUBDIR += pkgconf
SUBDIR += plan9port
SUBDIR += pmccabe
SUBDIR += pmd
SUBDIR += poco
SUBDIR += poco-devel
SUBDIR += poco-ssl
SUBDIR += ponscripter-sekai
SUBDIR += popt
SUBDIR += poslib
SUBDIR += powerpc64-binutils
SUBDIR += powerpc64-gcc
SUBDIR += powerpc64-xtoolchain-gcc
SUBDIR += poxml
SUBDIR += ppl
SUBDIR += premake
SUBDIR += premake4
SUBDIR += privman
SUBDIR += projectcenter
SUBDIR += protobuf
SUBDIR += protobuf-c
SUBDIR += protobuf25
SUBDIR += pructl
SUBDIR += psptoolchain
SUBDIR += psptoolchain-binutils
SUBDIR += psptoolchain-gcc-stage1
SUBDIR += psptoolchain-gcc-stage2
SUBDIR += psptoolchain-gdb
SUBDIR += psptoolchain-newlib
SUBDIR += psptoolchain-pspsdk-stage1
SUBDIR += psptoolchain-pspsdk-stage2
SUBDIR += pstreams
SUBDIR += psvn
SUBDIR += pth
SUBDIR += pth-hard
SUBDIR += pthsem
SUBDIR += ptlib
SUBDIR += ptmalloc
SUBDIR += ptmalloc2
SUBDIR += pty
SUBDIR += ptypes
SUBDIR += publib
SUBDIR += pure-ffi
SUBDIR += pure-readline
SUBDIR += pure-stldict
SUBDIR += pure-stllib
SUBDIR += pushmi
SUBDIR += pwlib
SUBDIR += py-Acquisition
SUBDIR += py-AddOns
SUBDIR += py-Breve
SUBDIR += py-BytecodeAssembler
SUBDIR += py-DateTime
SUBDIR += py-DocumentTemplate
SUBDIR += py-EnthoughtBase
SUBDIR += py-ExtensionClass
SUBDIR += py-InlineEgg
SUBDIR += py-Jinja
SUBDIR += py-Jinja2
SUBDIR += py-Jinja2-doc
SUBDIR += py-Missing
SUBDIR += py-MultiMapping
SUBDIR += py-PEAK-Rules
SUBDIR += py-Persistence
SUBDIR += py-Products.ATContentTypes
SUBDIR += py-Products.ATReferenceBrowserWidget
SUBDIR += py-Products.Archetypes
SUBDIR += py-Products.BTreeFolder2
SUBDIR += py-Products.CMFActionIcons
SUBDIR += py-Products.CMFCalendar
SUBDIR += py-Products.CMFCore
SUBDIR += py-Products.CMFDefault
SUBDIR += py-Products.CMFDiffTool
SUBDIR += py-Products.CMFDynamicViewFTI
SUBDIR += py-Products.CMFEditions
SUBDIR += py-Products.CMFFormController
SUBDIR += py-Products.CMFPlacefulWorkflow
SUBDIR += py-Products.CMFQuickInstallerTool
SUBDIR += py-Products.CMFTestCase
SUBDIR += py-Products.CMFUid
SUBDIR += py-Products.DCWorkflow
SUBDIR += py-Products.ExtendedPathIndex
SUBDIR += py-Products.ExternalEditor
SUBDIR += py-Products.ExternalMethod
SUBDIR += py-Products.GenericSetup
SUBDIR += py-Products.LDAPMultiPlugins
SUBDIR += py-Products.LDAPUserFolder
SUBDIR += py-Products.MIMETools
SUBDIR += py-Products.Marshall
SUBDIR += py-Products.MimetypesRegistry
SUBDIR += py-Products.OFSP
SUBDIR += py-Products.PasswordResetTool
SUBDIR += py-Products.PlacelessTranslationService
SUBDIR += py-Products.PloneLanguageTool
SUBDIR += py-Products.PloneTestCase
SUBDIR += py-Products.PluginRegistry
SUBDIR += py-Products.PortalTransforms
SUBDIR += py-Products.PythonScripts
SUBDIR += py-Products.ResourceRegistries
SUBDIR += py-Products.StandardCacheManagers
SUBDIR += py-Products.ZCTextIndex
SUBDIR += py-Products.ZCatalog
SUBDIR += py-Products.ZSQLMethods
SUBDIR += py-Products.ZopeVersionControl
SUBDIR += py-Products.contentmigration
SUBDIR += py-Products.statusmessages
SUBDIR += py-Products.validation
SUBDIR += py-RPyC
SUBDIR += py-Record
SUBDIR += py-SymbolType
SUBDIR += py-TGScheduler
SUBDIR += py-ToscaWidgets
SUBDIR += py-TurboJinja
SUBDIR += py-ZopeUndo
SUBDIR += py-akismet
SUBDIR += py-aniso8601
SUBDIR += py-anonfunc
SUBDIR += py-anyconfig
SUBDIR += py-anyjson
SUBDIR += py-apipkg
SUBDIR += py-appdirs
SUBDIR += py-application
SUBDIR += py-archetypes.querywidget
SUBDIR += py-archetypes.referencebrowserwidget
SUBDIR += py-archetypes.schemaextender
SUBDIR += py-argcomplete
SUBDIR += py-argh
SUBDIR += py-argparse
SUBDIR += py-args
SUBDIR += py-asn1
SUBDIR += py-asn1-modules
SUBDIR += py-aspects
SUBDIR += py-aspyct
SUBDIR += py-astroid
SUBDIR += py-async
SUBDIR += py-asyncio
SUBDIR += py-atomicwrites
SUBDIR += py-avro
SUBDIR += py-babel
SUBDIR += py-babelfish
SUBDIR += py-backports.shutil_get_terminal_size
SUBDIR += py-bcdoc
SUBDIR += py-billiard
SUBDIR += py-binplist
SUBDIR += py-biplist
SUBDIR += py-bison
SUBDIR += py-bitarray
SUBDIR += py-bitstring
SUBDIR += py-blessings
SUBDIR += py-blinker
SUBDIR += py-bluelet
SUBDIR += py-boto
SUBDIR += py-botocore
SUBDIR += py-capstone
SUBDIR += py-cclib
SUBDIR += py-celery
SUBDIR += py-cffi
SUBDIR += py-cfgparse
SUBDIR += py-characteristic
SUBDIR += py-check-manifest
SUBDIR += py-cheetah
SUBDIR += py-ciphon
SUBDIR += py-circuits
SUBDIR += py-cjson
SUBDIR += py-cld
SUBDIR += py-click
SUBDIR += py-clint
SUBDIR += py-clonedigger
SUBDIR += py-cmdln
SUBDIR += py-codegen
SUBDIR += py-cog
SUBDIR += py-coil
SUBDIR += py-collective.monkeypatcher
SUBDIR += py-collective.z3cform.datetimewidget
SUBDIR += py-colorama
SUBDIR += py-colorlog
SUBDIR += py-columnize
SUBDIR += py-conditional
SUBDIR += py-configargparse
SUBDIR += py-configobj
SUBDIR += py-configparser
SUBDIR += py-construct
SUBDIR += py-country
SUBDIR += py-cov-core
SUBDIR += py-coverage
SUBDIR += py-crcmod
SUBDIR += py-ctags
SUBDIR += py-curtsies
SUBDIR += py-cxx
SUBDIR += py-d2to1
SUBDIR += py-daemon
SUBDIR += py-daemons
SUBDIR += py-dal
SUBDIR += py-darcsver
SUBDIR += py-dateutil
SUBDIR += py-dbus
SUBDIR += py-decorator
SUBDIR += py-decoratortools
SUBDIR += py-defusedxml
SUBDIR += py-deliciousapi
SUBDIR += py-demjson
SUBDIR += py-dexml
SUBDIR += py-dialog
SUBDIR += py-diazo
SUBDIR += py-dirspec
SUBDIR += py-distorm
SUBDIR += py-distutils-extra
SUBDIR += py-django-tastypie-mongoengine
SUBDIR += py-django16-tastypie-mongoengine
SUBDIR += py-docopt
SUBDIR += py-dogpile.cache
SUBDIR += py-dogpile.core
SUBDIR += py-doit
SUBDIR += py-durus
SUBDIR += py-dynrules
SUBDIR += py-efl
SUBDIR += py-eggtestinfo
SUBDIR += py-enum34
SUBDIR += py-epsilon
SUBDIR += py-event
SUBDIR += py-experimental.cssselect
SUBDIR += py-extras
SUBDIR += py-extremes
SUBDIR += py-ezpyinline
SUBDIR += py-fabric
SUBDIR += py-fake-factory
SUBDIR += py-fam
SUBDIR += py-fastimport
SUBDIR += py-filemagic
SUBDIR += py-fileutils
SUBDIR += py-five.customerize
SUBDIR += py-five.formlib
SUBDIR += py-five.globalrequest
SUBDIR += py-five.localsitemanager
SUBDIR += py-flake8
SUBDIR += py-flask-babel
SUBDIR += py-flexmock
SUBDIR += py-foolscap
SUBDIR += py-fortran
SUBDIR += py-freebsd
SUBDIR += py-freezegun
SUBDIR += py-fs
SUBDIR += py-fsm
SUBDIR += py-fudge
SUBDIR += py-funcparserlib
SUBDIR += py-fusefs
SUBDIR += py-future
SUBDIR += py-futures
SUBDIR += py-game
SUBDIR += py-game_sdl2
SUBDIR += py-gamin
SUBDIR += py-gdata
SUBDIR += py-gearman
SUBDIR += py-generate
SUBDIR += py-geojson
SUBDIR += py-geotypes
SUBDIR += py-gevent
SUBDIR += py-gflags
SUBDIR += py-gitdb
SUBDIR += py-gitosis
SUBDIR += py-gitpython
SUBDIR += py-glob2
SUBDIR += py-gobject
SUBDIR += py-gobject3
SUBDIR += py-google-apputils
SUBDIR += py-grab
SUBDIR += py-greenlet
SUBDIR += py-grizzled
SUBDIR += py-grouch
SUBDIR += py-gyp-devel
SUBDIR += py-hashring
SUBDIR += py-hghooks
SUBDIR += py-hgsubversion
SUBDIR += py-hgtools
SUBDIR += py-humanize
SUBDIR += py-icalendar
SUBDIR += py-ice
SUBDIR += py-icu
SUBDIR += py-iniparse
SUBDIR += py-initgroups
SUBDIR += py-instant
SUBDIR += py-interface
SUBDIR += py-intervaltree
SUBDIR += py-ioflo
SUBDIR += py-ipaddr
SUBDIR += py-ipdb
SUBDIR += py-iso8601
SUBDIR += py-isodate
SUBDIR += py-iterpipes
SUBDIR += py-itools
SUBDIR += py-jaraco.timing
SUBDIR += py-jaraco.util
SUBDIR += py-jcc
SUBDIR += py-jdcal
SUBDIR += py-jedi
SUBDIR += py-jellyfish
SUBDIR += py-jira
SUBDIR += py-jmespath
SUBDIR += py-joblib
SUBDIR += py-jsmin
SUBDIR += py-json-py
SUBDIR += py-jsonlib
SUBDIR += py-jsonlib2
SUBDIR += py-jsonpatch
SUBDIR += py-jsonpointer
SUBDIR += py-jsonrpclib
SUBDIR += py-jsonschema
SUBDIR += py-kaptan
SUBDIR += py-kazoo
SUBDIR += py-kid
SUBDIR += py-kjbuckets
SUBDIR += py-kqueue
SUBDIR += py-krosspython
SUBDIR += py-lazy
SUBDIR += py-levenshtein
SUBDIR += py-liblarch
SUBDIR += py-libpeas
SUBDIR += py-libplist
SUBDIR += py-libvirt
SUBDIR += py-libzfs
SUBDIR += py-ll-core
SUBDIR += py-lock_file
SUBDIR += py-lockfile
SUBDIR += py-log4py
SUBDIR += py-logan
SUBDIR += py-logilab-common
SUBDIR += py-lxml
SUBDIR += py-magic
SUBDIR += py-manuel
SUBDIR += py-mccabe
SUBDIR += py-meliae
SUBDIR += py-memoryprofiler
SUBDIR += py-mercurialserver
SUBDIR += py-mez_xml
SUBDIR += py-mimeparse
SUBDIR += py-minimongo
SUBDIR += py-mock
SUBDIR += py-mongoengine
SUBDIR += py-mongokit
SUBDIR += py-more-itertools
SUBDIR += py-mox
SUBDIR += py-msgpack
SUBDIR += py-multipledispatch
SUBDIR += py-mwlib
SUBDIR += py-mwlib.ext
SUBDIR += py-mwlib.rl
SUBDIR += py-mx-experimental
SUBDIR += py-mygpoclient
SUBDIR += py-nagioscheck
SUBDIR += py-natural
SUBDIR += py-ncurses
SUBDIR += py-nose
SUBDIR += py-notifier
SUBDIR += py-notify
SUBDIR += py-ocempgui
SUBDIR += py-ode
SUBDIR += py-odfpy
SUBDIR += py-offtrac
SUBDIR += py-olefile
SUBDIR += py-oletools
SUBDIR += py-omnijson
SUBDIR += py-omniorb
SUBDIR += py-omniorb-3
SUBDIR += py-optik
SUBDIR += py-orbit
SUBDIR += py-ordereddict
SUBDIR += py-palm
SUBDIR += py-parsedatetime
SUBDIR += py-parsing
SUBDIR += py-path.py
SUBDIR += py-pathlib
SUBDIR += py-pathtools
SUBDIR += py-paver
SUBDIR += py-pbr
SUBDIR += py-pefile
SUBDIR += py-period
SUBDIR += py-pex
SUBDIR += py-phabricator
SUBDIR += py-phonenumbers
SUBDIR += py-phpserialize
SUBDIR += py-pika
SUBDIR += py-pip
SUBDIR += py-plan
SUBDIR += py-plex
SUBDIR += py-ply
SUBDIR += py-polib
SUBDIR += py-posix_ipc
SUBDIR += py-pp
SUBDIR += py-pqueue
SUBDIR += py-pretend
SUBDIR += py-prettytable
SUBDIR += py-prioritized_methods
SUBDIR += py-prompt_toolkit
SUBDIR += py-protobuf
SUBDIR += py-protocols
SUBDIR += py-protocols-devel
SUBDIR += py-ptrace
SUBDIR += py-pudb
SUBDIR += py-px
SUBDIR += py-py
SUBDIR += py-pycalendar
SUBDIR += py-pycallgraph
SUBDIR += py-pycerberus
SUBDIR += py-pycparser
SUBDIR += py-pydasm
SUBDIR += py-pyechonest
SUBDIR += py-pyee
SUBDIR += py-pyelftools
SUBDIR += py-pyev
SUBDIR += py-pyflakes
SUBDIR += py-pygit2
SUBDIR += py-pygithub
SUBDIR += py-pygitup
SUBDIR += py-pygpx
SUBDIR += py-pykde4
SUBDIR += py-pykdeuic4
SUBDIR += py-pyke
SUBDIR += py-pymarc
SUBDIR += py-pympler
SUBDIR += py-pymtbl
SUBDIR += py-pyrfc3339
SUBDIR += py-pyro
SUBDIR += py-pyshapelib
SUBDIR += py-pytemplate
SUBDIR += py-pytest
SUBDIR += py-pytest-cache
SUBDIR += py-pytest-capturelog
SUBDIR += py-pytest-runner
SUBDIR += py-pytest-timeout
SUBDIR += py-pytest-xdist
SUBDIR += py-python-bugzilla
SUBDIR += py-python-jenkins
SUBDIR += py-python-pcre
SUBDIR += py-python-statsd
SUBDIR += py-python2-pythondialog
SUBDIR += py-pythonbrew
SUBDIR += py-pytrie
SUBDIR += py-pytz
SUBDIR += py-pyutil
SUBDIR += py-pyxml2obj
SUBDIR += py-qpid
SUBDIR += py-qserve
SUBDIR += py-qt4
SUBDIR += py-qt4-assistant
SUBDIR += py-qt4-core
SUBDIR += py-qt4-dbus
SUBDIR += py-qt4-dbussupport
SUBDIR += py-qt4-declarative
SUBDIR += py-qt4-designer
SUBDIR += py-qt4-designerplugin
SUBDIR += py-qt4-help
SUBDIR += py-qt4-qscintilla2
SUBDIR += py-qt4-script
SUBDIR += py-qt4-scripttools
SUBDIR += py-qt4-test
SUBDIR += py-rauth
SUBDIR += py-raven
SUBDIR += py-repl
SUBDIR += py-repoze.lru
SUBDIR += py-repoze.tm2
SUBDIR += py-repoze.what
SUBDIR += py-repoze.what-pylons
SUBDIR += py-repoze.who
SUBDIR += py-repoze.who-friendlyform
SUBDIR += py-repoze.who-testutil
SUBDIR += py-repoze.xmliter
SUBDIR += py-resolver
SUBDIR += py-resourcepackage
SUBDIR += py-riak_pb
SUBDIR += py-rlcompleter2
SUBDIR += py-robotframework
SUBDIR += py-robotframework-pabot
SUBDIR += py-robotframework-ride
SUBDIR += py-robotframework-selenium2library
SUBDIR += py-robotremoteserver
SUBDIR += py-rope
SUBDIR += py-rose
SUBDIR += py-roxlib
SUBDIR += py-rtree
SUBDIR += py-ruledispatch
SUBDIR += py-sanetime
SUBDIR += py-scripttest
SUBDIR += py-sdl2
SUBDIR += py-semantic_version
SUBDIR += py-serpent
SUBDIR += py-setproctitle
SUBDIR += py-setuptools
SUBDIR += py-setuptools-git
SUBDIR += py-setuptools27
SUBDIR += py-setuptools32
SUBDIR += py-setuptools33
SUBDIR += py-setuptools34
SUBDIR += py-setuptools_darcs
SUBDIR += py-setuptools_hg
SUBDIR += py-sh
SUBDIR += py-shapely
SUBDIR += py-simplegeneric
SUBDIR += py-simplejson
SUBDIR += py-simpleparse
SUBDIR += py-simpletal
SUBDIR += py-simpy
SUBDIR += py-singledispatch
SUBDIR += py-sip
SUBDIR += py-six
SUBDIR += py-smmap
SUBDIR += py-snack
SUBDIR += py-snackwich
SUBDIR += py-sortedcontainers
SUBDIR += py-spark
SUBDIR += py-speaklater
SUBDIR += py-sqlcc
SUBDIR += py-statgrab
SUBDIR += py-stdnum
SUBDIR += py-stevedore
SUBDIR += py-stsci.distutils
SUBDIR += py-subversion
SUBDIR += py-subvertpy
SUBDIR += py-sysctl
SUBDIR += py-sysv_ipc
SUBDIR += py-tables
SUBDIR += py-tabulate
SUBDIR += py-tapi
SUBDIR += py-tarantool-queue
SUBDIR += py-tconfpy
SUBDIR += py-tempstorage
SUBDIR += py-termcolor
SUBDIR += py-testgears
SUBDIR += py-testoob
SUBDIR += py-testtools
SUBDIR += py-tgMochiKit
SUBDIR += py-thrift
SUBDIR += py-timelib
SUBDIR += py-tipper
SUBDIR += py-tox
SUBDIR += py-trace2html
SUBDIR += py-traits
SUBDIR += py-transaction
SUBDIR += py-trollius
SUBDIR += py-turbocheetah
SUBDIR += py-turbojson
SUBDIR += py-turbojson11
SUBDIR += py-turbokid
SUBDIR += py-tvrage
SUBDIR += py-tw.forms
SUBDIR += py-twiggy
SUBDIR += py-twisted
SUBDIR += py-twistedCore
SUBDIR += py-twistedFlow
SUBDIR += py-twistedRunner
SUBDIR += py-tzlocal
SUBDIR += py-ua_parser
SUBDIR += py-ujson
SUBDIR += py-uncompyle2
SUBDIR += py-unipath
SUBDIR += py-unittest2
SUBDIR += py-unittestplus
SUBDIR += py-urlimport
SUBDIR += py-urwid
SUBDIR += py-usb
SUBDIR += py-user_agents
SUBDIR += py-utils
SUBDIR += py-validictory
SUBDIR += py-venusian
SUBDIR += py-versiontools
SUBDIR += py-virtualenv
SUBDIR += py-virtualenv-clone
SUBDIR += py-virtualenvwrapper
SUBDIR += py-watchdog
SUBDIR += py-wcwidth
SUBDIR += py-wheel
SUBDIR += py-wsgi_xmlrpc
SUBDIR += py-wsgitools
SUBDIR += py-wsgiutils
SUBDIR += py-xattr
SUBDIR += py-xcaplib
SUBDIR += py-xdg
SUBDIR += py-xerox
SUBDIR += py-xmltodict
SUBDIR += py-xoltar-toolkit
SUBDIR += py-yaml
SUBDIR += py-yappi
SUBDIR += py-yapps2
SUBDIR += py-ydbf
SUBDIR += py-yum-metadata-parser
SUBDIR += py-yunomi
SUBDIR += py-z3c.autoinclude
SUBDIR += py-z3c.batching
SUBDIR += py-z3c.caching
SUBDIR += py-z3c.form
SUBDIR += py-z3c.formwidget.query
SUBDIR += py-z3c.zcmlhook
SUBDIR += py-zExceptions
SUBDIR += py-zLOG
SUBDIR += py-zc.buildout
SUBDIR += py-zclockfile
SUBDIR += py-zconfig
SUBDIR += py-zope.annotation
SUBDIR += py-zope.app.applicationcontrol
SUBDIR += py-zope.app.appsetup
SUBDIR += py-zope.app.basicskin
SUBDIR += py-zope.app.broken
SUBDIR += py-zope.app.cache
SUBDIR += py-zope.app.component
SUBDIR += py-zope.app.container
SUBDIR += py-zope.app.content
SUBDIR += py-zope.app.debug
SUBDIR += py-zope.app.dependable
SUBDIR += py-zope.app.error
SUBDIR += py-zope.app.exception
SUBDIR += py-zope.app.folder
SUBDIR += py-zope.app.form
SUBDIR += py-zope.app.generations
SUBDIR += py-zope.app.http
SUBDIR += py-zope.app.pagetemplate
SUBDIR += py-zope.app.publication
SUBDIR += py-zope.app.publisher
SUBDIR += py-zope.app.renderer
SUBDIR += py-zope.app.rotterdam
SUBDIR += py-zope.app.schema
SUBDIR += py-zope.app.testing
SUBDIR += py-zope.app.zcmlfiles
SUBDIR += py-zope.app.zopeappgenerations
SUBDIR += py-zope.applicationcontrol
SUBDIR += py-zope.broken
SUBDIR += py-zope.browser
SUBDIR += py-zope.browsermenu
SUBDIR += py-zope.browserpage
SUBDIR += py-zope.browserresource
SUBDIR += py-zope.cachedescriptors
SUBDIR += py-zope.component
SUBDIR += py-zope.componentvocabulary
SUBDIR += py-zope.configuration
SUBDIR += py-zope.container
SUBDIR += py-zope.contentprovider
SUBDIR += py-zope.contenttype
SUBDIR += py-zope.copy
SUBDIR += py-zope.copypastemove
SUBDIR += py-zope.datetime
SUBDIR += py-zope.deferredimport
SUBDIR += py-zope.deprecation
SUBDIR += py-zope.dottedname
SUBDIR += py-zope.dublincore
SUBDIR += py-zope.error
SUBDIR += py-zope.event
SUBDIR += py-zope.exceptions
SUBDIR += py-zope.filerepresentation
SUBDIR += py-zope.formlib
SUBDIR += py-zope.generations
SUBDIR += py-zope.globalrequest
SUBDIR += py-zope.i18n
SUBDIR += py-zope.interface
SUBDIR += py-zope.lifecycleevent
SUBDIR += py-zope.location
SUBDIR += py-zope.minmax
SUBDIR += py-zope.pagetemplate
SUBDIR += py-zope.processlifetime
SUBDIR += py-zope.ptresource
SUBDIR += py-zope.publisher
SUBDIR += py-zope.ramcache
SUBDIR += py-zope.schema
SUBDIR += py-zope.sequencesort
SUBDIR += py-zope.site
SUBDIR += py-zope.size
SUBDIR += py-zope.tales
SUBDIR += py-zope.testbrowser
SUBDIR += py-zope.testing
SUBDIR += py-zope.traversing
SUBDIR += py-zope.viewlet
SUBDIR += py3-dbus
SUBDIR += py3-gobject3
SUBDIR += py3-libpeas
SUBDIR += py3-xdg
SUBDIR += py_static_check
SUBDIR += pybugz
SUBDIR += pychecker
SUBDIR += pycount
SUBDIR += pydbus-common
SUBDIR += pygobject3-common
SUBDIR += pyinstaller
SUBDIR += pylint
SUBDIR += pymacs
SUBDIR += pyobfuscate
SUBDIR += pypersrc
SUBDIR += pyrex
SUBDIR += pyside
SUBDIR += pyside-tools
SUBDIR += pyst
SUBDIR += pysvn
SUBDIR += pythk
SUBDIR += pythontidy
SUBDIR += qbzr
SUBDIR += qca
SUBDIR += qca-qt5
SUBDIR += qconf
SUBDIR += qct
SUBDIR += qdevelop
SUBDIR += qgit
SUBDIR += qjson
SUBDIR += qmake
SUBDIR += qmake4
SUBDIR += qmake5
SUBDIR += qprog
SUBDIR += qross
SUBDIR += qscintilla2
SUBDIR += qscintilla2-designerplugin
SUBDIR += qsvn
SUBDIR += qt4
SUBDIR += qt4-assistant
SUBDIR += qt4-assistant-adp
SUBDIR += qt4-corelib
SUBDIR += qt4-designer
SUBDIR += qt4-help
SUBDIR += qt4-help-tools
SUBDIR += qt4-libqtassistantclient
SUBDIR += qt4-linguist
SUBDIR += qt4-linguisttools
SUBDIR += qt4-makeqpf
SUBDIR += qt4-moc
SUBDIR += qt4-porting
SUBDIR += qt4-qdbusviewer
SUBDIR += qt4-qdoc3
SUBDIR += qt4-qmlviewer
SUBDIR += qt4-qt3support
SUBDIR += qt4-qtsolutions-singleapplication
SUBDIR += qt4-qtsolutions-soap
SUBDIR += qt4-qvfb
SUBDIR += qt4-rcc
SUBDIR += qt4-script
SUBDIR += qt4-scripttools
SUBDIR += qt4-testlib
SUBDIR += qt4-uic
SUBDIR += qt4-uic3
SUBDIR += qt5
SUBDIR += qt5-assistant
SUBDIR += qt5-buildtools
SUBDIR += qt5-concurrent
SUBDIR += qt5-core
SUBDIR += qt5-designer
SUBDIR += qt5-help
SUBDIR += qt5-linguist
SUBDIR += qt5-linguisttools
SUBDIR += qt5-qdbus
SUBDIR += qt5-qdbusviewer
SUBDIR += qt5-qdoc
SUBDIR += qt5-script
SUBDIR += qt5-scripttools
SUBDIR += qt5-testlib
SUBDIR += qt5-uitools
SUBDIR += qtcreator
SUBDIR += qtscriptgenerator
SUBDIR += quickcheck++
SUBDIR += quilt
SUBDIR += radare2
SUBDIR += ragel
SUBDIR += raknet
SUBDIR += rapidjson
SUBDIR += rapidsvn
SUBDIR += rbenv
SUBDIR += rbtools
SUBDIR += rclint
SUBDIR += rcs
SUBDIR += rcs57
SUBDIR += re2
SUBDIR += re2c
SUBDIR += readline
SUBDIR += rebar
SUBDIR += rebar3
SUBDIR += regexx
SUBDIR += regexxer
SUBDIR += relx
SUBDIR += remake
SUBDIR += renpy
SUBDIR += replay
SUBDIR += rhtvision
SUBDIR += rlog
SUBDIR += rlvm
SUBDIR += rlwrap
SUBDIR += roboctl
SUBDIR += robodoc
SUBDIR += root-doc
SUBDIR += ros
SUBDIR += rote
SUBDIR += rpc2
SUBDIR += rpm-spec-mode.el
SUBDIR += rsvndump
SUBDIR += rth
SUBDIR += ruby-aspectr
SUBDIR += ruby-bsearch
SUBDIR += ruby-build
SUBDIR += ruby-byaccr
SUBDIR += ruby-cache
SUBDIR += ruby-calendar
SUBDIR += ruby-date2
SUBDIR += ruby-dialogs
SUBDIR += ruby-event-loop
SUBDIR += ruby-gems
SUBDIR += ruby-intl
SUBDIR += ruby-korundum
SUBDIR += ruby-krossruby
SUBDIR += ruby-langscan
SUBDIR += ruby-locale
SUBDIR += ruby-ncurses
SUBDIR += ruby-property
SUBDIR += ruby-qtruby
SUBDIR += ruby-rbbr
SUBDIR += ruby-rbison
SUBDIR += ruby-rbprof
SUBDIR += ruby-rreadline
SUBDIR += ruby-sdl
SUBDIR += ruby-setup.rb
SUBDIR += ruby-subversion
SUBDIR += ruby-tzfile
SUBDIR += ruby-wirble
SUBDIR += rubygem-CFPropertyList
SUBDIR += rubygem-abstract
SUBDIR += rubygem-actionpack-action_caching
SUBDIR += rubygem-actionview
SUBDIR += rubygem-actionview41
SUBDIR += rubygem-active_scaffold
SUBDIR += rubygem-activejob
SUBDIR += rubygem-activemessaging
SUBDIR += rubygem-activesupport
SUBDIR += rubygem-activesupport4
SUBDIR += rubygem-activesupport41
SUBDIR += rubygem-algorithms
SUBDIR += rubygem-allison
SUBDIR += rubygem-analogger
SUBDIR += rubygem-annoy
SUBDIR += rubygem-ansi
SUBDIR += rubygem-apipie-bindings
SUBDIR += rubygem-app_config
SUBDIR += rubygem-arrayfields
SUBDIR += rubygem-ascii85
SUBDIR += rubygem-aspectr
SUBDIR += rubygem-atomic
SUBDIR += rubygem-atoulme-antwrap
SUBDIR += rubygem-attic
SUBDIR += rubygem-attr_required
SUBDIR += rubygem-authlogic
SUBDIR += rubygem-awesome_print
SUBDIR += rubygem-aws-sdk
SUBDIR += rubygem-aws-sdk-core
SUBDIR += rubygem-aws-sdk-resources
SUBDIR += rubygem-aws-sdk-v1
SUBDIR += rubygem-axiom-types
SUBDIR += rubygem-backports
SUBDIR += rubygem-bacon
SUBDIR += rubygem-benelux
SUBDIR += rubygem-bin_utils
SUBDIR += rubygem-bindata
SUBDIR += rubygem-binding_of_caller
SUBDIR += rubygem-bio
SUBDIR += rubygem-blankslate
SUBDIR += rubygem-blobstore_client
SUBDIR += rubygem-blockenspiel
SUBDIR += rubygem-bones
SUBDIR += rubygem-bosh-template
SUBDIR += rubygem-bosh_common
SUBDIR += rubygem-bson
SUBDIR += rubygem-bson1
SUBDIR += rubygem-buftok
SUBDIR += rubygem-bugspots
SUBDIR += rubygem-builder
SUBDIR += rubygem-builder32
SUBDIR += rubygem-byebug
SUBDIR += rubygem-caesars
SUBDIR += rubygem-cairo-gobject
SUBDIR += rubygem-capybara
SUBDIR += rubygem-celluloid
SUBDIR += rubygem-celluloid-essentials
SUBDIR += rubygem-celluloid-extras
SUBDIR += rubygem-celluloid-fsm
SUBDIR += rubygem-celluloid-io
SUBDIR += rubygem-celluloid-pool
SUBDIR += rubygem-celluloid-supervision
SUBDIR += rubygem-cf-uaa-lib
SUBDIR += rubygem-childprocess
SUBDIR += rubygem-chronic
SUBDIR += rubygem-clamp
SUBDIR += rubygem-classifier
SUBDIR += rubygem-classifier-reborn
SUBDIR += rubygem-climate_control
SUBDIR += rubygem-clio
SUBDIR += rubygem-cloudfiles
SUBDIR += rubygem-cocaine
SUBDIR += rubygem-coercible
SUBDIR += rubygem-coffee-rails
SUBDIR += rubygem-coffee-rails4
SUBDIR += rubygem-coffee-rails41
SUBDIR += rubygem-coffee-script
SUBDIR += rubygem-coffee-script-source
SUBDIR += rubygem-colorize
SUBDIR += rubygem-columnize
SUBDIR += rubygem-commander
SUBDIR += rubygem-configatron
SUBDIR += rubygem-configuration
SUBDIR += rubygem-cool.io
SUBDIR += rubygem-crack
SUBDIR += rubygem-cri
SUBDIR += rubygem-cucumber
SUBDIR += rubygem-cucumber-core
SUBDIR += rubygem-curses
SUBDIR += rubygem-cyoi
SUBDIR += rubygem-daemon_controller
SUBDIR += rubygem-daemons
SUBDIR += rubygem-debug_inspector
SUBDIR += rubygem-debugger
SUBDIR += rubygem-debugger-linecache
SUBDIR += rubygem-debugger-xml
SUBDIR += rubygem-deep_merge
SUBDIR += rubygem-deep_test
SUBDIR += rubygem-default_value_for
SUBDIR += rubygem-delayed_job
SUBDIR += rubygem-delayer
SUBDIR += rubygem-deprecated
SUBDIR += rubygem-deprecated2
SUBDIR += rubygem-descendants_tracker
SUBDIR += rubygem-devise
SUBDIR += rubygem-devise-async
SUBDIR += rubygem-devise-async-rails4
SUBDIR += rubygem-devise-rails4
SUBDIR += rubygem-directory_watcher
SUBDIR += rubygem-ditz
SUBDIR += rubygem-docile
SUBDIR += rubygem-dotenv-deployment
SUBDIR += rubygem-drydock
SUBDIR += rubygem-edavis10-object_daddy
SUBDIR += rubygem-elif
SUBDIR += rubygem-enumerize
SUBDIR += rubygem-equalizer
SUBDIR += rubygem-errand
SUBDIR += rubygem-eventmachine
SUBDIR += rubygem-excon
SUBDIR += rubygem-execjs
SUBDIR += rubygem-extlib
SUBDIR += rubygem-facets
SUBDIR += rubygem-faraday_middleware-multi_json
SUBDIR += rubygem-fast-stemmer
SUBDIR += rubygem-fast_gettext
SUBDIR += rubygem-fast_stack
SUBDIR += rubygem-fast_xor
SUBDIR += rubygem-fastercsv
SUBDIR += rubygem-fastri
SUBDIR += rubygem-fastthread
SUBDIR += rubygem-fattr
SUBDIR += rubygem-ffi
SUBDIR += rubygem-ffi-compiler
SUBDIR += rubygem-ffi-yajl
SUBDIR += rubygem-file-tail
SUBDIR += rubygem-flexmock
SUBDIR += rubygem-fluent-logger
SUBDIR += rubygem-fog
SUBDIR += rubygem-fog-brightbox
SUBDIR += rubygem-fog-core
SUBDIR += rubygem-fog-json
SUBDIR += rubygem-font-awesome-rails
SUBDIR += rubygem-font-awesome-rails-rails4
SUBDIR += rubygem-foreman
SUBDIR += rubygem-formatador
SUBDIR += rubygem-gdata
SUBDIR += rubygem-gem_plugin
SUBDIR += rubygem-gemcutter
SUBDIR += rubygem-gemnasium-gitlab-service
SUBDIR += rubygem-gems
SUBDIR += rubygem-generator_spec
SUBDIR += rubygem-generator_spec-rails4
SUBDIR += rubygem-georuby
SUBDIR += rubygem-get_process_mem
SUBDIR += rubygem-getopt
SUBDIR += rubygem-gettext
SUBDIR += rubygem-gh
SUBDIR += rubygem-gibbler
SUBDIR += rubygem-gio2
SUBDIR += rubygem-git
SUBDIR += rubygem-git-version-bump
SUBDIR += rubygem-github_api
SUBDIR += rubygem-gitlab-pygments.rb
SUBDIR += rubygem-gitlab_git
SUBDIR += rubygem-gitlab_meta
SUBDIR += rubygem-glib2
SUBDIR += rubygem-gobject-introspection
SUBDIR += rubygem-graf
SUBDIR += rubygem-grape
SUBDIR += rubygem-grape-entity
SUBDIR += rubygem-grape-swagger
SUBDIR += rubygem-grit
SUBDIR += rubygem-guess_html_encoding
SUBDIR += rubygem-gyoku
SUBDIR += rubygem-hashery
SUBDIR += rubygem-hashie
SUBDIR += rubygem-hashie2
SUBDIR += rubygem-highline
SUBDIR += rubygem-hike
SUBDIR += rubygem-hitimes
SUBDIR += rubygem-hoe
SUBDIR += rubygem-holidays
SUBDIR += rubygem-i18n
SUBDIR += rubygem-icalendar
SUBDIR += rubygem-ice_cube
SUBDIR += rubygem-ice_nine
SUBDIR += rubygem-igraph
SUBDIR += rubygem-inflecto
SUBDIR += rubygem-interact
SUBDIR += rubygem-io-like
SUBDIR += rubygem-iobuffer
SUBDIR += rubygem-jammit
SUBDIR += rubygem-jbuilder
SUBDIR += rubygem-jbuilder-rails41
SUBDIR += rubygem-jekyll-coffeescript
SUBDIR += rubygem-jeweler
SUBDIR += rubygem-jmespath
SUBDIR += rubygem-jquery-ui-themes
SUBDIR += rubygem-jruby-jars
SUBDIR += rubygem-json
SUBDIR += rubygem-json_pure
SUBDIR += rubygem-kafo
SUBDIR += rubygem-kafo_parsers
SUBDIR += rubygem-kgio
SUBDIR += rubygem-launchy
SUBDIR += rubygem-launchy22
SUBDIR += rubygem-librarian
SUBDIR += rubygem-librarianp
SUBDIR += rubygem-libyajl2
SUBDIR += rubygem-listen
SUBDIR += rubygem-listen2
SUBDIR += rubygem-little-plugger
SUBDIR += rubygem-locale
SUBDIR += rubygem-lockfile
SUBDIR += rubygem-logging
SUBDIR += rubygem-logster
SUBDIR += rubygem-loquacious
SUBDIR += rubygem-lru_redux
SUBDIR += rubygem-lumberjack
SUBDIR += rubygem-main
SUBDIR += rubygem-map
SUBDIR += rubygem-memoizable
SUBDIR += rubygem-memoize
SUBDIR += rubygem-mercenary
SUBDIR += rubygem-message_bus
SUBDIR += rubygem-metaclass
SUBDIR += rubygem-metaid
SUBDIR += rubygem-method_source
SUBDIR += rubygem-minitest
SUBDIR += rubygem-minitest4
SUBDIR += rubygem-mixlib-authentication
SUBDIR += rubygem-mixlib-cli
SUBDIR += rubygem-mixlib-config
SUBDIR += rubygem-mixlib-log
SUBDIR += rubygem-mixlib-shellout
SUBDIR += rubygem-mkrf
SUBDIR += rubygem-mocha
SUBDIR += rubygem-moneta
SUBDIR += rubygem-moneta06
SUBDIR += rubygem-mongo
SUBDIR += rubygem-msgpack
SUBDIR += rubygem-mspec
SUBDIR += rubygem-multi_json
SUBDIR += rubygem-multi_test
SUBDIR += rubygem-murmurhash3
SUBDIR += rubygem-mustache
SUBDIR += rubygem-mutter
SUBDIR += rubygem-naught
SUBDIR += rubygem-needle
SUBDIR += rubygem-nenv
SUBDIR += rubygem-nesty
SUBDIR += rubygem-netaddr
SUBDIR += rubygem-newrelic_rpm
SUBDIR += rubygem-nice-ffi
SUBDIR += rubygem-nio4r
SUBDIR += rubygem-nori
SUBDIR += rubygem-notiffany
SUBDIR += rubygem-notify
SUBDIR += rubygem-nprogress-rails
SUBDIR += rubygem-oj
SUBDIR += rubygem-open3_backport
SUBDIR += rubygem-open4
SUBDIR += rubygem-orm_adapter
SUBDIR += rubygem-paint
SUBDIR += rubygem-paperclip
SUBDIR += rubygem-piston
SUBDIR += rubygem-pkg-config
SUBDIR += rubygem-platform
SUBDIR += rubygem-plist
SUBDIR += rubygem-polyglot
SUBDIR += rubygem-popen4
SUBDIR += rubygem-posix-spawn
SUBDIR += rubygem-power_assert
SUBDIR += rubygem-powerbar
SUBDIR += rubygem-progressbar
SUBDIR += rubygem-prototype-rails
SUBDIR += rubygem-pry
SUBDIR += rubygem-pry-rails
SUBDIR += rubygem-pry-remote-em
SUBDIR += rubygem-ptreloaded
SUBDIR += rubygem-pygments.rb
SUBDIR += rubygem-r18n-core
SUBDIR += rubygem-racc
SUBDIR += rubygem-rack-mini-profiler
SUBDIR += rubygem-rack-raw-upload
SUBDIR += rubygem-rails-deprecated_sanitizer
SUBDIR += rubygem-rails-observers
SUBDIR += rubygem-rainbow
SUBDIR += rubygem-rake
SUBDIR += rubygem-rake-compiler
SUBDIR += rubygem-rapt
SUBDIR += rubygem-rash
SUBDIR += rubygem-rb-fsevent
SUBDIR += rubygem-rb-inotify
SUBDIR += rubygem-rb-kqueue
SUBDIR += rubygem-rbtrace
SUBDIR += rubygem-rdoc
SUBDIR += rubygem-rdoc3
SUBDIR += rubygem-readwritesettings
SUBDIR += rubygem-recaptcha
SUBDIR += rubygem-redis-activesupport
SUBDIR += rubygem-redis-store
SUBDIR += rubygem-redmine_plugin_support
SUBDIR += rubygem-ref
SUBDIR += rubygem-request_store
SUBDIR += rubygem-require_all
SUBDIR += rubygem-retryable
SUBDIR += rubygem-rgl
SUBDIR += rubygem-rodzilla
SUBDIR += rubygem-rotp
SUBDIR += rubygem-rr
SUBDIR += rubygem-rrd-ffi
SUBDIR += rubygem-rscm
SUBDIR += rubygem-rspec
SUBDIR += rubygem-rspec-core
SUBDIR += rubygem-rspec-expectations
SUBDIR += rubygem-rspec-logsplit
SUBDIR += rubygem-rspec-mocks
SUBDIR += rubygem-rspec-support
SUBDIR += rubygem-rubigen
SUBDIR += rubygem-ruby-atmos-pure
SUBDIR += rubygem-ruby-bugzilla
SUBDIR += rubygem-ruby-filemagic
SUBDIR += rubygem-ruby-ole
SUBDIR += rubygem-ruby-prof
SUBDIR += rubygem-ruby-sdl-ffi
SUBDIR += rubygem-ruby2ruby
SUBDIR += rubygem-ruby_parser
SUBDIR += rubygem-rubygame
SUBDIR += rubygem-rubygems-mirror
SUBDIR += rubygem-rubygems-tasks
SUBDIR += rubygem-rubygems-test
SUBDIR += rubygem-rubyinline
SUBDIR += rubygem-rubyinlineaccel
SUBDIR += rubygem-rubytree
SUBDIR += rubygem-rufus-scheduler
SUBDIR += rubygem-rugged
SUBDIR += rubygem-runt
SUBDIR += rubygem-ruport
SUBDIR += rubygem-safe_yaml
SUBDIR += rubygem-sdoc
SUBDIR += rubygem-semantic_puppet
SUBDIR += rubygem-semi_semantic
SUBDIR += rubygem-sequel
SUBDIR += rubygem-sequel3
SUBDIR += rubygem-settingslogic
SUBDIR += rubygem-sexp_processor
SUBDIR += rubygem-shoulda
SUBDIR += rubygem-shoulda-context
SUBDIR += rubygem-shoulda-matchers
SUBDIR += rubygem-sidekiq
SUBDIR += rubygem-sigdump
SUBDIR += rubygem-simple_form
SUBDIR += rubygem-simplecov
SUBDIR += rubygem-slack-notifier
SUBDIR += rubygem-slim
SUBDIR += rubygem-slop
SUBDIR += rubygem-soap4r
SUBDIR += rubygem-spring
SUBDIR += rubygem-sprockets
SUBDIR += rubygem-sprockets-helpers
SUBDIR += rubygem-sprockets-rails
SUBDIR += rubygem-sprockets-rails-rails41
SUBDIR += rubygem-sprockets-sass
SUBDIR += rubygem-sprockets211
SUBDIR += rubygem-sprockets22
SUBDIR += rubygem-sprockets3
SUBDIR += rubygem-spruz
SUBDIR += rubygem-state_machine
SUBDIR += rubygem-statsd
SUBDIR += rubygem-stella
SUBDIR += rubygem-stemmer
SUBDIR += rubygem-stomp
SUBDIR += rubygem-storable
SUBDIR += rubygem-stream
SUBDIR += rubygem-streetaddress
SUBDIR += rubygem-stringex
SUBDIR += rubygem-structured_warnings
SUBDIR += rubygem-subexec
SUBDIR += rubygem-sugar-high
SUBDIR += rubygem-sumbur
SUBDIR += rubygem-sundawg_country_codes
SUBDIR += rubygem-sysinfo
SUBDIR += rubygem-systemu
SUBDIR += rubygem-table_print
SUBDIR += rubygem-tdiff
SUBDIR += rubygem-templater
SUBDIR += rubygem-temple
SUBDIR += rubygem-term-ansicolor
SUBDIR += rubygem-test-unit
SUBDIR += rubygem-thor
SUBDIR += rubygem-thread_safe
SUBDIR += rubygem-thread_safe1
SUBDIR += rubygem-thrift
SUBDIR += rubygem-tilt
SUBDIR += rubygem-tilt1
SUBDIR += rubygem-timers
SUBDIR += rubygem-tins
SUBDIR += rubygem-tins0
SUBDIR += rubygem-toml
SUBDIR += rubygem-transaction-simple
SUBDIR += rubygem-travis
SUBDIR += rubygem-treetop
SUBDIR += rubygem-trollop
SUBDIR += rubygem-trollop1
SUBDIR += rubygem-turn
SUBDIR += rubygem-typed-array
SUBDIR += rubygem-tzinfo
SUBDIR += rubygem-tzinfo03
SUBDIR += rubygem-unicode
SUBDIR += rubygem-uuid
SUBDIR += rubygem-uuidtools
SUBDIR += rubygem-validatable
SUBDIR += rubygem-versionomy
SUBDIR += rubygem-virtus
SUBDIR += rubygem-warbler
SUBDIR += rubygem-warden
SUBDIR += rubygem-wdm
SUBDIR += rubygem-web-console
SUBDIR += rubygem-webby
SUBDIR += rubygem-wmi-lite
SUBDIR += rubygem-xpath
SUBDIR += rubygem-yajl-ruby
SUBDIR += rubygem-yui-compressor
SUBDIR += rubygem-zentest
SUBDIR += rudeconfig
SUBDIR += rudiments
SUBDIR += runsnakerun
SUBDIR += rvi
SUBDIR += rvm
SUBDIR += sabre
SUBDIR += safe-iop
SUBDIR += sbt
SUBDIR += scalatest
SUBDIR += scandoc
SUBDIR += scons
SUBDIR += sdl12
SUBDIR += sdl20
SUBDIR += sdl2pp
SUBDIR += sdl_console
SUBDIR += sdl_gnat
SUBDIR += sdl_sge
SUBDIR += sdlmm
SUBDIR += sdlskk
SUBDIR += sdts++
SUBDIR += sedsed
SUBDIR += seed
SUBDIR += seed3
SUBDIR += serdisplib
SUBDIR += sfio
SUBDIR += sfml
SUBDIR += sfml1
SUBDIR += sgb
SUBDIR += shapelib
SUBDIR += shflags
SUBDIR += shiboken
SUBDIR += shmap
SUBDIR += shtk
SUBDIR += shtool
SUBDIR += sigar
SUBDIR += sigslot
SUBDIR += silc-toolkit
SUBDIR += silentbob
SUBDIR += simgear
SUBDIR += simian
SUBDIR += simpletest
SUBDIR += skalibs
SUBDIR += slf4j
SUBDIR += smack
SUBDIR += smake
SUBDIR += smc
SUBDIR += smokegen
SUBDIR += smokekde
SUBDIR += smokeqt
SUBDIR += smv
SUBDIR += soapui
SUBDIR += sourcenav
SUBDIR += sparc64-binutils
SUBDIR += sparc64-gcc
SUBDIR += sparc64-xtoolchain-gcc
SUBDIR += spark
SUBDIR += spatialindex
SUBDIR += spdict
SUBDIR += spice-protocol
SUBDIR += spin
SUBDIR += splint
SUBDIR += srecord
SUBDIR += st
SUBDIR += statcvs
SUBDIR += statik
SUBDIR += statsvn
SUBDIR += stfl
SUBDIR += stlfilt
SUBDIR += stlink
SUBDIR += storm
SUBDIR += stormlib-ghost++
SUBDIR += str
SUBDIR += strace
SUBDIR += streamhtmlparser
SUBDIR += stringencoders
SUBDIR += stxxl
SUBDIR += styx
SUBDIR += subcommander2
SUBDIR += subversion
SUBDIR += subversion-book
SUBDIR += subversion-static
SUBDIR += subversion17
SUBDIR += subversive
SUBDIR += svk
SUBDIR += svn2git
SUBDIR += svn_load_dirs
SUBDIR += svndelta
SUBDIR += svnkit
SUBDIR += svntrac
SUBDIR += swank-clojure
SUBDIR += swig13
SUBDIR += swig20
SUBDIR += swig30
SUBDIR += synfig
SUBDIR += sysconftool
SUBDIR += sysfsutils
SUBDIR += t1lib
SUBDIR += ta-lib
SUBDIR += tailor
SUBDIR += talloc
SUBDIR += tass64
SUBDIR += tbb
SUBDIR += tcl-memchan
SUBDIR += tcl-mmap
SUBDIR += tcl-signal
SUBDIR += tcl-trf
SUBDIR += tclap
SUBDIR += tclbsd
SUBDIR += tclcheck
SUBDIR += tclgetopts
SUBDIR += tcllauncher
SUBDIR += tcllib
SUBDIR += tcllibc
SUBDIR += tclmore
SUBDIR += tcloo
SUBDIR += tclreadline
SUBDIR += tclthread
SUBDIR += tcltls
SUBDIR += tclvfs
SUBDIR += tclxml
SUBDIR += tdl
SUBDIR += terminality
SUBDIR += tesla
SUBDIR += tevent
SUBDIR += tex-kpathsea
SUBDIR += tex-libtexlua
SUBDIR += tex-libtexluajit
SUBDIR += tex-synctex
SUBDIR += tex-web2c
SUBDIR += thrift
SUBDIR += thrift-c_glib
SUBDIR += thrift-cpp
SUBDIR += thunar-vcs-plugin
SUBDIR += tig
SUBDIR += tigcc
SUBDIR += tijmp
SUBDIR += tinylaf
SUBDIR += tinyq
SUBDIR += tkcon
SUBDIR += tkcvs
SUBDIR += tkinspect
SUBDIR += tkmerge
SUBDIR += tkp4
SUBDIR += tla
SUBDIR += tmake
SUBDIR += tnt
SUBDIR += toh
SUBDIR += tokamak
SUBDIR += tortoisehg
SUBDIR += tpasm
SUBDIR += trac-bitten
SUBDIR += tradcpp
SUBDIR += trio
SUBDIR += truc
SUBDIR += ua_parser-core
SUBDIR += uatraits
SUBDIR += uboot-mkimage
SUBDIR += uclmmbase
SUBDIR += ucommon
SUBDIR += ucpp
SUBDIR += udis86
SUBDIR += ultragetopt
SUBDIR += umbrello
SUBDIR += umem
SUBDIR += umlgraph
SUBDIR += unibilium
SUBDIR += universalindentgui
SUBDIR += upnp
SUBDIR += upp
SUBDIR += upslug
SUBDIR += urjtag
SUBDIR += utf8cpp
SUBDIR += uthash
SUBDIR += valgrind
SUBDIR += valgrind-devel
SUBDIR += varconf
SUBDIR += vasm
SUBDIR += vera++
SUBDIR += viewvc
SUBDIR += violet
SUBDIR += visualparadigm
SUBDIR += vstr
SUBDIR += vtcl
SUBDIR += vxlog
SUBDIR += wand-libconfig
SUBDIR += websocketpp
SUBDIR += websvn
SUBDIR += wininfo
SUBDIR += winpdb
SUBDIR += wizardkit
SUBDIR += wxGlade
SUBDIR += xa65
SUBDIR += xc3sprog
SUBDIR += xdg-user-dirs
SUBDIR += xdg-utils
SUBDIR += xfce4-dev-tools
SUBDIR += xfce4-vala
SUBDIR += xlocale
SUBDIR += xmake
SUBDIR += xmltooling
SUBDIR += xorg-macros
SUBDIR += xparam
SUBDIR += xsd
SUBDIR += xtl
SUBDIR += xwpe
SUBDIR += xxgdb
SUBDIR += xxl
SUBDIR += yajl
SUBDIR += yajl-tcl
SUBDIR += yaml-cpp
SUBDIR += yaml-cpp03
SUBDIR += yasm
SUBDIR += yasm-devel
SUBDIR += z80-asm
SUBDIR += z80asm
SUBDIR += z80ex
SUBDIR += zookeeper
SUBDIR += zpu-binutils
SUBDIR += zpu-gcc
SUBDIR += ztcl
SUBDIR += zthread
SUBDIR += zziplib
.include <bsd.port.subdir.mk>
|