blob: f29a3c00141e50f65ad016e8e386cd2263f7c097 (
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
|
# $FreeBSD$
#
COMMENT = Development utilities
SUBDIR += 9base
SUBDIR += ElectricFence
SUBDIR += ORBit
SUBDIR += ORBit2
SUBDIR += ORBit2-reference
SUBDIR += SpecTcl
SUBDIR += ZendOptimizer
SUBDIR += a2dev
SUBDIR += aap
SUBDIR += abi-compliance-checker
SUBDIR += ace
SUBDIR += ace+tao
SUBDIR += ace+tao-doc
SUBDIR += acovea
SUBDIR += acovea-gtk
SUBDIR += acpicatools
SUBDIR += activitymail
SUBDIR += adabindx
SUBDIR += adabooch
SUBDIR += adabooch-doc-html
SUBDIR += adacurses
SUBDIR += adasdl
SUBDIR += adime
SUBDIR += adocman
SUBDIR += aegis
SUBDIR += afay
SUBDIR += agide
SUBDIR += aifad
SUBDIR += alabastra
SUBDIR += ald
SUBDIR += alf
SUBDIR += allegro
SUBDIR += allegro-devel
SUBDIR += anjuta
SUBDIR += anjuta-extras
SUBDIR += antlr
SUBDIR += antlrworks
SUBDIR += apache-ant
SUBDIR += apr
SUBDIR += argouml
SUBDIR += argp-standalone
SUBDIR += argtable
SUBDIR += arm-elf-binutils
SUBDIR += arm-rtems-binutils
SUBDIR += arm-rtems-gcc
SUBDIR += arm-rtems-gdb
SUBDIR += aros-sdk
SUBDIR += as31
SUBDIR += asdlgen
SUBDIR += asis
SUBDIR += asis-gpl
SUBDIR += asl
SUBDIR += asmutils
SUBDIR += asmx
SUBDIR += astyle
SUBDIR += atlas
SUBDIR += atlas-devel
SUBDIR += aunit
SUBDIR += autobook
SUBDIR += autoconf-archive
SUBDIR += autoconf-wrapper
SUBDIR += autoconf213
SUBDIR += autoconf262
SUBDIR += autodia
SUBDIR += autodist
SUBDIR += autogen
SUBDIR += automake-wrapper
SUBDIR += automake110
SUBDIR += automake14
SUBDIR += automake15
SUBDIR += automake16
SUBDIR += automake17
SUBDIR += automake18
SUBDIR += automake19
SUBDIR += automoc4
SUBDIR += autotools
SUBDIR += avalon-framework
SUBDIR += avarice
SUBDIR += avce00
SUBDIR += avltree
SUBDIR += avr-binutils
SUBDIR += avr-gcc
SUBDIR += avr-gcc-3
SUBDIR += avr-gcc-42
SUBDIR += avr-gdb
SUBDIR += avr-libc
SUBDIR += avra
SUBDIR += avrdude
SUBDIR += bazaar
SUBDIR += bazaar-ng
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 += bisongen
SUBDIR += bmake
SUBDIR += bnf
SUBDIR += bnfc
SUBDIR += boaconstructor
SUBDIR += boehm-gc
SUBDIR += boehm-gc-redirect
SUBDIR += boehm-gc-threaded
SUBDIR += bonobo
SUBDIR += bonobo-conf
SUBDIR += boost-all
SUBDIR += boost-docs
SUBDIR += boost-jam
SUBDIR += boost-libs
SUBDIR += boost-pyste
SUBDIR += boost-python-libs
SUBDIR += boost_build
SUBDIR += bouml
SUBDIR += bouml-doc
SUBDIR += bsdcflow
SUBDIR += bufferpool
SUBDIR += bug-buddy
SUBDIR += bugzilla
SUBDIR += bugzilla2
SUBDIR += buildbot
SUBDIR += buildtool
SUBDIR += buildtool-doc
SUBDIR += bullet
SUBDIR += bunny
SUBDIR += byaccj
SUBDIR += bzr-gtk
SUBDIR += bzrtools
SUBDIR += c2lib
SUBDIR += c2man
SUBDIR += c2mdoc
SUBDIR += c4
SUBDIR += c_c++_reference
SUBDIR += c_parser
SUBDIR += calibrator
SUBDIR += callgrind
SUBDIR += cbind
SUBDIR += cbrowser
SUBDIR += cc65
SUBDIR += ccache
SUBDIR += cccc
SUBDIR += ccdoc
SUBDIR += ccrtp
SUBDIR += cdecl
SUBDIR += cdialog
SUBDIR += cdk
SUBDIR += cdoc
SUBDIR += cedet
SUBDIR += cflow
SUBDIR += cflow2vcg
SUBDIR += cgdb
SUBDIR += cgilib
SUBDIR += cgit
SUBDIR += cgprof
SUBDIR += charva
SUBDIR += chrpath
SUBDIR += cil
SUBDIR += cl-asdf
SUBDIR += cl-asdf-clisp
SUBDIR += cl-infix
SUBDIR += cl-infix-sbcl
SUBDIR += cl-port
SUBDIR += cl-port-clisp
SUBDIR += cl-port-sbcl
SUBDIR += cl-split-sequence
SUBDIR += cl-split-sequence-clisp
SUBDIR += cl-split-sequence-sbcl
SUBDIR += cl-uffi
SUBDIR += cl-uffi-sbcl
SUBDIR += clang
SUBDIR += clanlib
SUBDIR += clewn
SUBDIR += clig
SUBDIR += clint
SUBDIR += clisp-hyperspec
SUBDIR += cmake
SUBDIR += cmake-gui
SUBDIR += cmunge
SUBDIR += cobf
SUBDIR += cocktail
SUBDIR += codeblocks
SUBDIR += codeville
SUBDIR += codeworker
SUBDIR += colorer
SUBDIR += colorgcc
SUBDIR += commoncpp
SUBDIR += compiler-rt
SUBDIR += compiz-bcop
SUBDIR += configkit
SUBDIR += cons
SUBDIR += cons-test
SUBDIR += cook
SUBDIR += cpan-upload
SUBDIR += cppcheck
SUBDIR += cppi
SUBDIR += cppunit
SUBDIR += cproto
SUBDIR += cross-binutils
SUBDIR += cross-gcc
SUBDIR += cross-gdb
SUBDIR += crossvc
SUBDIR += crow
SUBDIR += cscope
SUBDIR += cscout
SUBDIR += csoap
SUBDIR += cssc
SUBDIR += cstringbuffer
SUBDIR += ctags
SUBDIR += cunit
SUBDIR += cut
SUBDIR += cutils
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 += cvsmapfs
SUBDIR += cvsmonitor
SUBDIR += cvsnt
SUBDIR += cvsplot
SUBDIR += cvsps
SUBDIR += cvsps-devel
SUBDIR += cvsspam
SUBDIR += cvsstat
SUBDIR += cvstrac
SUBDIR += cvsutils
SUBDIR += cvsweb
SUBDIR += cvsweb3
SUBDIR += cvswrap
SUBDIR += cweb
SUBDIR += cx_Freeze
SUBDIR += cxmon
SUBDIR += cxref
SUBDIR += cxxtest
SUBDIR += darcs
SUBDIR += darts
SUBDIR += datadesigner
SUBDIR += datadraw
SUBDIR += dbus
SUBDIR += dbus-glib
SUBDIR += dbus-qt3
SUBDIR += dbus-qt4
SUBDIR += dbus-sharp
SUBDIR += ddd
SUBDIR += deputy
SUBDIR += desktop-file-utils
SUBDIR += dev86
SUBDIR += devhelp
SUBDIR += devtodo
SUBDIR += dfuife-curses
SUBDIR += dia2code
SUBDIR += diffconvert
SUBDIR += diffuse
SUBDIR += directfb
SUBDIR += distcc
SUBDIR += distel
SUBDIR += distorm
SUBDIR += ditrack
SUBDIR += dits
SUBDIR += djgpp-binutils
SUBDIR += djgpp-crx
SUBDIR += djgpp-gcc
SUBDIR += dklibs
SUBDIR += dmake
SUBDIR += dmalloc
SUBDIR += dmucs
SUBDIR += doctorj
SUBDIR += dotconf
SUBDIR += dotconf++
SUBDIR += doxygen
SUBDIR += dparser
SUBDIR += dprog
SUBDIR += drpython
SUBDIR += dsss
SUBDIR += dulwich
SUBDIR += duplo
SUBDIR += dwarfdump
SUBDIR += dyncall
SUBDIR += e00compr
SUBDIR += e2fsprogs-libss
SUBDIR += e4graph
SUBDIR += e_dbus
SUBDIR += easygit
SUBDIR += ebnf2yacc
SUBDIR += eboxy
SUBDIR += ecb
SUBDIR += ecgi
SUBDIR += ecore
SUBDIR += ecore-file
SUBDIR += ecore-ipc
SUBDIR += ecore-job
SUBDIR += ecore-main
SUBDIR += ecos-tools
SUBDIR += eet
SUBDIR += eggdbus
SUBDIR += egypt
SUBDIR += eieio
SUBDIR += eiffelstudio
SUBDIR += elf
SUBDIR += elfio
SUBDIR += elfrc
SUBDIR += elfsh
SUBDIR += elftoaout
SUBDIR += elib
SUBDIR += elib-emacs21
SUBDIR += engrave
SUBDIR += entity
SUBDIR += epm
SUBDIR += epydoc
SUBDIR += eric4
SUBDIR += eris
SUBDIR += erlang-thrift
SUBDIR += error
SUBDIR += esdl
SUBDIR += esvn
SUBDIR += etl
SUBDIR += etoile-collectionkit
SUBDIR += etoile-coreobject
SUBDIR += etoile-foundation
SUBDIR += etoile-serialize
SUBDIR += etoile-unitkit
SUBDIR += eventxx
SUBDIR += evfs
SUBDIR += evolution-gconf-tools
SUBDIR += excalibur-configuration
SUBDIR += f77flow
SUBDIR += fam
SUBDIR += fampp
SUBDIR += fastcrc
SUBDIR += fastdep
SUBDIR += fb303
SUBDIR += fc++
SUBDIR += ffcall
SUBDIR += fga
SUBDIR += fhist
SUBDIR += fib
SUBDIR += fistgen
SUBDIR += flatzebra
SUBDIR += flex-sdk
SUBDIR += flex-sdk2
SUBDIR += flex_compiler_shell
SUBDIR += flexdock
SUBDIR += flexjson
SUBDIR += flick
SUBDIR += florist
SUBDIR += florist-gpl
SUBDIR += flowdesigner
SUBDIR += flyspray
SUBDIR += fnccheck
SUBDIR += fnorb
SUBDIR += fortran-utils
SUBDIR += fortytwo-encore
SUBDIR += fossology
SUBDIR += fpc-bfd
SUBDIR += fpc-fcl-async
SUBDIR += fpc-fcl-base
SUBDIR += fpc-fcl-db
SUBDIR += fpc-fcl-fpcunit
SUBDIR += fpc-fcl-image
SUBDIR += fpc-fcl-json
SUBDIR += fpc-fcl-net
SUBDIR += fpc-fcl-passrc
SUBDIR += fpc-fcl-process
SUBDIR += fpc-fcl-registry
SUBDIR += fpc-fcl-web
SUBDIR += fpc-fcl-xml
SUBDIR += fpc-fpmkunit
SUBDIR += fpc-fv
SUBDIR += fpc-gdbint
SUBDIR += fpc-pthreads
SUBDIR += fpc-regexpr
SUBDIR += fpc-sdl
SUBDIR += fpc-symbolic
SUBDIR += fpc-zlib
SUBDIR += fpp
SUBDIR += freebase
SUBDIR += freelibiberty
SUBDIR += freeride
SUBDIR += frink
SUBDIR += fsmgenerator
SUBDIR += ftjam
SUBDIR += ftnchek
SUBDIR += fujaba
SUBDIR += funnelweb
SUBDIR += g-wrap
SUBDIR += g2c
SUBDIR += gaa
SUBDIR += gambas2-gb-corba
SUBDIR += gambas2-gb-pcre
SUBDIR += gambas2-gb-sdl
SUBDIR += gamin
SUBDIR += gaphor
SUBDIR += gauche-gaunit
SUBDIR += gauche-readline
SUBDIR += gauche-sdl
SUBDIR += gaul
SUBDIR += gazpacho
SUBDIR += gccmakedep
SUBDIR += gccxml
SUBDIR += gconf
SUBDIR += gconf2
SUBDIR += gconf2-reference
SUBDIR += gconfmm
SUBDIR += gconfmm26
SUBDIR += gcvs
SUBDIR += gdb53
SUBDIR += gdb53-act
SUBDIR += gdb6
SUBDIR += gdbmods
SUBDIR += geany
SUBDIR += gearmand
SUBDIR += generate
SUBDIR += gengameng
SUBDIR += gengetopt
SUBDIR += genproto
SUBDIR += gettext
SUBDIR += gettext-lint
SUBDIR += gettext-msghack
SUBDIR += getxml
SUBDIR += gflags
SUBDIR += giggle
SUBDIR += gindent
SUBDIR += gio-fam-backend
SUBDIR += gir-repository
SUBDIR += gir-repository-dbus
SUBDIR += gir-repository-gconf2
SUBDIR += gir-repository-libnotify
SUBDIR += gir-repository-libsoup
SUBDIR += git
SUBDIR += gittrac
SUBDIR += glade2
SUBDIR += glade3
SUBDIR += glademm
SUBDIR += glib-java
SUBDIR += glib12
SUBDIR += glib20
SUBDIR += glib20-reference
SUBDIR += glibmm
SUBDIR += glibmm-reference
SUBDIR += global
SUBDIR += glog
SUBDIR += glrparser
SUBDIR += glui
SUBDIR += gmake
SUBDIR += gnome-common
SUBDIR += gnome-crash
SUBDIR += gnome-js-common
SUBDIR += gnome-vfs
SUBDIR += gnome-vfs-monikers
SUBDIR += gnome-vfs-reference
SUBDIR += gnome-vfs1
SUBDIR += gnome-vfsmm
SUBDIR += gnome2-hacker-tools
SUBDIR += gnucflow
SUBDIR += gnulibiberty
SUBDIR += gnustep
SUBDIR += gnustep-make
SUBDIR += gob2
SUBDIR += gobject-introspection
SUBDIR += goffice
SUBDIR += goffice04
SUBDIR += goffice06
SUBDIR += goffice1
SUBDIR += gold
SUBDIR += gonzui
SUBDIR += google-perftools
SUBDIR += google-sparsehash
SUBDIR += googlemock
SUBDIR += googletest
SUBDIR += gorm
SUBDIR += gperf
SUBDIR += gpsim
SUBDIR += gputils
SUBDIR += gsoap
SUBDIR += gstreamer-plugins-gconf
SUBDIR += gstreamer-plugins-gio
SUBDIR += gstreamer-plugins-gnomevfs
SUBDIR += gstreamer-plugins-sdl
SUBDIR += gstreamer-plugins-soup
SUBDIR += gtgt
SUBDIR += gtkparasite
SUBDIR += gtranslator
SUBDIR += guichan
SUBDIR += guikachu
SUBDIR += guile-lib
SUBDIR += guiloader
SUBDIR += guiloader-c++
SUBDIR += gvfs
SUBDIR += gwenhywfar
SUBDIR += gzstream
SUBDIR += hachoir-core
SUBDIR += hachoir-parser
SUBDIR += hachoir-regex
SUBDIR += happydoc
SUBDIR += hapy
SUBDIR += hcs12mem
SUBDIR += hg-git
SUBDIR += hgsvn
SUBDIR += hgview
SUBDIR += highlighterkit
SUBDIR += horde-chora
SUBDIR += horde-whups
SUBDIR += hp48cc
SUBDIR += hp48xgcc
SUBDIR += hptools
SUBDIR += hs-DeepArrow
SUBDIR += hs-MemoTrie
SUBDIR += hs-MissingH
SUBDIR += hs-MonadCatchIO-mtl
SUBDIR += hs-ObjectName
SUBDIR += hs-QuickCheck
SUBDIR += hs-StateVar
SUBDIR += hs-Stream
SUBDIR += hs-Tensor
SUBDIR += hs-TypeCompose
SUBDIR += hs-alex
SUBDIR += hs-arrows
SUBDIR += hs-binary-ghc
SUBDIR += hs-c2hs
SUBDIR += hs-checkers
SUBDIR += hs-convertible
SUBDIR += hs-cpphs
SUBDIR += hs-deepseq
SUBDIR += hs-dlist
SUBDIR += hs-drift
SUBDIR += hs-fgl
SUBDIR += hs-ghc-mtl
SUBDIR += hs-ghc-paths
SUBDIR += hs-ghc-paths-docs
SUBDIR += hs-haddock
SUBDIR += hs-haddock-docs
SUBDIR += hs-happy
SUBDIR += hs-haskeline
SUBDIR += hs-haskell-src-exts
SUBDIR += hs-hat
SUBDIR += hs-hdoc
SUBDIR += hs-hint
SUBDIR += hs-hmake
SUBDIR += hs-hoogle
SUBDIR += hs-hslogger
SUBDIR += hs-idoc
SUBDIR += hs-language-c-ghc
SUBDIR += hs-lazysmallcheck-ghc
SUBDIR += hs-mmap
SUBDIR += hs-mueval
SUBDIR += hs-pcre-light-ghc
SUBDIR += hs-reactive
SUBDIR += hs-readline
SUBDIR += hs-safe
SUBDIR += hs-show
SUBDIR += hs-smallcheck
SUBDIR += hs-testpack
SUBDIR += hs-transformers
SUBDIR += hs-unamb
SUBDIR += hs-uniplate
SUBDIR += hs-utf8-string-ghc
SUBDIR += hs-utility-ht
SUBDIR += hs-uuagc
SUBDIR += hs-uulib
SUBDIR += hs-uvector
SUBDIR += hs-uvector-algorithms
SUBDIR += hypersrc
SUBDIR += i386-rtems-binutils
SUBDIR += i386-rtems-gcc
SUBDIR += i386-rtems-gdb
SUBDIR += ice
SUBDIR += icmake
SUBDIR += icu
SUBDIR += icu2
SUBDIR += icu4
SUBDIR += id-utils
SUBDIR += ifd-test
SUBDIR += imake
SUBDIR += inilib
SUBDIR += initutil
SUBDIR += invitation_to_ruby
SUBDIR += ipython
SUBDIR += ireport
SUBDIR += itext
SUBDIR += ixlib
SUBDIR += jakarta-commons-chain
SUBDIR += jakarta-commons-configuration
SUBDIR += jakarta-commons-daemon
SUBDIR += jakarta-commons-io
SUBDIR += jakarta-commons-jxpath
SUBDIR += jakarta-commons-modeler
SUBDIR += jakelib2
SUBDIR += jam
SUBDIR += java-util-concurrent
SUBDIR += javolution
SUBDIR += jclassinfo
SUBDIR += jcmdline
SUBDIR += jep
SUBDIR += jline
SUBDIR += jrtplib
SUBDIR += jsap
SUBDIR += jsl
SUBDIR += jsmin
SUBDIR += json-c
SUBDIR += json-glib
SUBDIR += jtag
SUBDIR += jude-community
SUBDIR += judy
SUBDIR += k8048
SUBDIR += kBuild
SUBDIR += kaptain
SUBDIR += kcachegrind
SUBDIR += kdbg
SUBDIR += kdebindings4
SUBDIR += kdebindings4-python
SUBDIR += kdebindings4-python-krosspython
SUBDIR += kdebindings4-python-pykde4
SUBDIR += kdesdk3
SUBDIR += kdesdk4
SUBDIR += kdesvn
SUBDIR += kdesvn-kde4
SUBDIR += kdevelop
SUBDIR += kimwitu
SUBDIR += kimwitu++
SUBDIR += klassmodeler
SUBDIR += kodos
SUBDIR += kprof
SUBDIR += kscope
SUBDIR += kxl
SUBDIR += kyra
SUBDIR += lasi
SUBDIR += lbpp
SUBDIR += leaktracer
SUBDIR += lemon
SUBDIR += lexi
SUBDIR += lhs2TeX
SUBDIR += libIDL
SUBDIR += libPropList
SUBDIR += libU77
SUBDIR += libXGP
SUBDIR += libYGP
SUBDIR += libafterbase
SUBDIR += libarena
SUBDIR += libassa
SUBDIR += libassetml
SUBDIR += libast
SUBDIR += libaura
SUBDIR += libavl
SUBDIR += libbegemot
SUBDIR += libbfd
SUBDIR += libbinio
SUBDIR += libbnr
SUBDIR += libbobcat
SUBDIR += libbonobo
SUBDIR += libbonobo-reference
SUBDIR += libbonobomm
SUBDIR += libburn
SUBDIR += libcapsinetwork
SUBDIR += libccid
SUBDIR += libcfg
SUBDIR += libcheck
SUBDIR += libchipcard
SUBDIR += libchipcard-kde
SUBDIR += libcii
SUBDIR += libclaw
SUBDIR += libconfig
SUBDIR += libconfuse
SUBDIR += libcoro
SUBDIR += libcoyotl
SUBDIR += libcwd
SUBDIR += libdaemon
SUBDIR += libdap
SUBDIR += libdasm
SUBDIR += libdfui
SUBDIR += libdict
SUBDIR += libdisasm
SUBDIR += libdispatch
SUBDIR += libdlmalloc
SUBDIR += libdlna
SUBDIR += libdnsres
SUBDIR += libds
SUBDIR += libdsp
SUBDIR += libdwarf
SUBDIR += libedit
SUBDIR += libelf
SUBDIR += libepp-nicbr
SUBDIR += libev
SUBDIR += libevent
SUBDIR += libevocosm
SUBDIR += libexecinfo
SUBDIR += libffi
SUBDIR += libfirm
SUBDIR += libfs++
SUBDIR += libftdi
SUBDIR += libgalago
SUBDIR += libgamepad
SUBDIR += libgconf-java
SUBDIR += libgdata
SUBDIR += libgetline
SUBDIR += libghthash
SUBDIR += libgii
SUBDIR += libgiigic
SUBDIR += libglade
SUBDIR += libglade-java
SUBDIR += libglade2
SUBDIR += libglade2-reference
SUBDIR += libglademm
SUBDIR += libglademm24
SUBDIR += libgpc
SUBDIR += libgsf
SUBDIR += libgsf-gnome
SUBDIR += libgtop
SUBDIR += libgutenfetch
SUBDIR += libhash
SUBDIR += libhid
SUBDIR += libhoard
SUBDIR += libical
SUBDIR += libiqxmlrpc
SUBDIR += libisc
SUBDIR += libisofs
SUBDIR += libixp
SUBDIR += liblas
SUBDIR += libleaftag
SUBDIR += liblogging
SUBDIR += liblouis
SUBDIR += liblouisxml
SUBDIR += libltdl22
SUBDIR += libmaa
SUBDIR += libmatheval
SUBDIR += libmba
SUBDIR += libmcs
SUBDIR += libmimedir
SUBDIR += libmonetra
SUBDIR += libmowgli
SUBDIR += libmpcbdm
SUBDIR += libmsocket
SUBDIR += libmtrie
SUBDIR += libnaji
SUBDIR += libnotify
SUBDIR += libnotifymm
SUBDIR += libnxt
SUBDIR += liboil
SUBDIR += libol
SUBDIR += libole2
SUBDIR += liboobs
SUBDIR += liboop
SUBDIR += libopendaap
SUBDIR += libopensync
SUBDIR += libopensync022
SUBDIR += libopkele
SUBDIR += libowfat
SUBDIR += libpasori
SUBDIR += libpci
SUBDIR += libpciaccess
SUBDIR += libpdel
SUBDIR += libpeak
SUBDIR += libphish
SUBDIR += libphk
SUBDIR += libpperl
SUBDIR += libpthread-stubs
SUBDIR += librcc
SUBDIR += librcd
SUBDIR += libreadline-java
SUBDIR += libredblack
SUBDIR += librelp
SUBDIR += libruin
SUBDIR += libs11n
SUBDIR += libshbuf
SUBDIR += libshhmsg
SUBDIR += libshhopt
SUBDIR += libsigc++
SUBDIR += libsigc++12
SUBDIR += libsigc++20
SUBDIR += libsigcx
SUBDIR += libsigsegv
SUBDIR += libslang2
SUBDIR += libsoup
SUBDIR += libsoup-reference
SUBDIR += libsoup22
SUBDIR += libstatgrab
SUBDIR += libstrfunc
SUBDIR += libstroke
SUBDIR += libtai
SUBDIR += libtap
SUBDIR += libtar
SUBDIR += libtecla
SUBDIR += libthai
SUBDIR += libticalcs
SUBDIR += libtifiles
SUBDIR += libtifiles2
SUBDIR += libtool22
SUBDIR += libublio
SUBDIR += libukcprog
SUBDIR += libunicode
SUBDIR += libuninum
SUBDIR += libusb
SUBDIR += libvanessa_adt
SUBDIR += libvanessa_logger
SUBDIR += libvanessa_socket
SUBDIR += libvc
SUBDIR += libvolume_id
SUBDIR += libwfut
SUBDIR += libx86
SUBDIR += libxalloc
SUBDIR += libytnef
SUBDIR += libzrtpcpp
SUBDIR += libzvbi
SUBDIR += lightning
SUBDIR += lincvs
SUBDIR += linux-allegro
SUBDIR += linux-f10-allegro
SUBDIR += linux-f10-dbus-glib
SUBDIR += linux-f10-dbus-libs
SUBDIR += linux-f10-libglade
SUBDIR += linux-f10-libglade2
SUBDIR += linux-f10-libsigc++20
SUBDIR += linux-f10-nspr
SUBDIR += linux-f10-sdl12
SUBDIR += linux-f8-allegro
SUBDIR += linux-f8-libglade
SUBDIR += linux-f8-libglade2
SUBDIR += linux-f8-libsigc++20
SUBDIR += linux-f8-nspr
SUBDIR += linux-f8-sdl12
SUBDIR += linux-js
SUBDIR += linux-kmod-compat
SUBDIR += linux-libglade
SUBDIR += linux-libglade2
SUBDIR += linux-libsigc++20
SUBDIR += linux-runrev
SUBDIR += linux-sdl12
SUBDIR += linux_kdump
SUBDIR += linuxthreads
SUBDIR += lion
SUBDIR += llvm
SUBDIR += llvm-devel
SUBDIR += lmdbg
SUBDIR += lndir
SUBDIR += log4c
SUBDIR += log4cplus
SUBDIR += log4cpp
SUBDIR += log4cxx
SUBDIR += log4j
SUBDIR += log4net
SUBDIR += log4sh
SUBDIR += log4shib
SUBDIR += loki
SUBDIR += looks
SUBDIR += love
SUBDIR += lpc21isp
SUBDIR += lrmi
SUBDIR += lua-bitlib
SUBDIR += lua-filename
SUBDIR += lua-gettext
SUBDIR += lua-posix
SUBDIR += lua-pty
SUBDIR += lua-sysctl
SUBDIR += lua50-app
SUBDIR += lua50-compat51
SUBDIR += lua50-dfui
SUBDIR += lua50-filename
SUBDIR += lua50-gettext
SUBDIR += lua50-posix
SUBDIR += lua50-pty
SUBDIR += luabind
SUBDIR += luajava
SUBDIR += lwp
SUBDIR += lxr
SUBDIR += m17n-db
SUBDIR += m17n-docs
SUBDIR += m17n-lib
SUBDIR += m4
SUBDIR += m6811-binutils
SUBDIR += m68k-rtems-binutils
SUBDIR += m68k-rtems-gcc
SUBDIR += m68k-rtems-gdb
SUBDIR += make++
SUBDIR += makedepend
SUBDIR += makeplus
SUBDIR += maketool
SUBDIR += maven
SUBDIR += maven2
SUBDIR += mcpp
SUBDIR += memcheck
SUBDIR += menhir
SUBDIR += mercator
SUBDIR += mercurial
SUBDIR += mercurialeclipse
SUBDIR += meta-cvs
SUBDIR += mico
SUBDIR += mime
SUBDIR += mimir
SUBDIR += mingw32-bin-msvcrt
SUBDIR += mingw32-binutils
SUBDIR += mingw32-directx
SUBDIR += mingw32-gcc
SUBDIR += mingw32-pdcurses
SUBDIR += mingw32-pthreads
SUBDIR += mingw64-binutils
SUBDIR += mips-rtems-binutils
SUBDIR += mips-rtems-gcc
SUBDIR += mips-rtems-gdb
SUBDIR += mk
SUBDIR += mk-configure
SUBDIR += mkcmd
SUBDIR += mkmf
SUBDIR += ml-doc
SUBDIR += mm
SUBDIR += mm-common
SUBDIR += mob
SUBDIR += mono-addins
SUBDIR += mono-tools
SUBDIR += monodevelop
SUBDIR += monodevelop-boo
SUBDIR += monodevelop-database
SUBDIR += monodevelop-java
SUBDIR += monodevelop-vala
SUBDIR += monotone
SUBDIR += monotone-viz
SUBDIR += motor
SUBDIR += mpatrol
SUBDIR += mph
SUBDIR += mprof
SUBDIR += mq4cpp
SUBDIR += msp430-binutils
SUBDIR += msp430-gcc
SUBDIR += msp430-gdb
SUBDIR += msp430-libc
SUBDIR += msrc0
SUBDIR += nana
SUBDIR += nant
SUBDIR += nasm
SUBDIR += naturaldocs
SUBDIR += ncc
SUBDIR += ncnf
SUBDIR += ncurses
SUBDIR += ncurses-devel
SUBDIR += ndesk-dbus
SUBDIR += ndesk-dbus-glib
SUBDIR += nemiver
SUBDIR += netbsd-pkgsrc-mk-files
SUBDIR += netscape-java40
SUBDIR += newfile
SUBDIR += newt
SUBDIR += ngpt
SUBDIR += noweb
SUBDIR += nspr
SUBDIR += nx
SUBDIR += oaf
SUBDIR += obby
SUBDIR += obfuscatejs
SUBDIR += objcunit
SUBDIR += objectivelib
SUBDIR += ocaml-annexlib
SUBDIR += ocaml-calendar
SUBDIR += ocaml-camljava
SUBDIR += ocaml-camlp5
SUBDIR += ocaml-camomile
SUBDIR += ocaml-camomile-examples
SUBDIR += ocaml-cfg
SUBDIR += ocaml-classes
SUBDIR += ocaml-equeue
SUBDIR += ocaml-event
SUBDIR += ocaml-extlib
SUBDIR += ocaml-findlib
SUBDIR += ocaml-lacaml
SUBDIR += ocaml-lwt
SUBDIR += ocaml-magic
SUBDIR += ocaml-ounit
SUBDIR += ocaml-pcre
SUBDIR += ocaml-pomap
SUBDIR += ocaml-res
SUBDIR += ocaml-sdl
SUBDIR += ocaml-sem
SUBDIR += ocaml-sexplib
SUBDIR += ocaml-typeconv
SUBDIR += ocaml-ulex
SUBDIR += ocaml-xstr
SUBDIR += ocaml-xstrp4
SUBDIR += ocamlweb
SUBDIR += ocfpcsc
SUBDIR += ode
SUBDIR += ode-devel
SUBDIR += ois
SUBDIR += omake
SUBDIR += omniNotify
SUBDIR += omniORB
SUBDIR += oniguruma
SUBDIR += oniguruma4
SUBDIR += oniguruma5
SUBDIR += open-beagle
SUBDIR += opencvs
SUBDIR += opengrok
SUBDIR += openocd
SUBDIR += openwince-include
SUBDIR += openzz
SUBDIR += orbitcpp
SUBDIR += ossp-al
SUBDIR += ossp-cfg
SUBDIR += ossp-ex
SUBDIR += ossp-l2
SUBDIR += ossp-val
SUBDIR += ossp-var
SUBDIR += ossp-xds
SUBDIR += otrs
SUBDIR += p4.el
SUBDIR += p4api
SUBDIR += p4db
SUBDIR += p4delta
SUBDIR += p4genpatch
SUBDIR += p4v
SUBDIR += p5-AI-Pathfinding-AStar
SUBDIR += p5-AI-Prolog
SUBDIR += p5-Acme-MetaSyntactic
SUBDIR += p5-Agent
SUBDIR += p5-Algorithm-Accounting
SUBDIR += p5-Algorithm-Annotate
SUBDIR += p5-Algorithm-Bucketizer
SUBDIR += p5-Algorithm-C3
SUBDIR += p5-Algorithm-ChooseSubsets
SUBDIR += p5-Algorithm-Cluster
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-Alzabo
SUBDIR += p5-Alzabo-GUI-Mason
SUBDIR += p5-Any-Moose
SUBDIR += p5-AnyData
SUBDIR += p5-AnyEvent
SUBDIR += p5-AnyEvent-AIO
SUBDIR += p5-App-CLI
SUBDIR += p5-App-CLI-Extension
SUBDIR += p5-App-Cache
SUBDIR += p5-App-Cmd
SUBDIR += p5-App-Control
SUBDIR += p5-App-Info
SUBDIR += p5-App-Options
SUBDIR += p5-App-SVN-Bisect
SUBDIR += p5-App-Trace
SUBDIR += p5-AppConfig
SUBDIR += p5-AppConfig-Std
SUBDIR += p5-Array-Group
SUBDIR += p5-Array-Iterator
SUBDIR += p5-Array-Window
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-Deobfuscate
SUBDIR += p5-B-Generate
SUBDIR += p5-B-Graph
SUBDIR += p5-B-Hooks-EndOfScope
SUBDIR += p5-B-Hooks-OP-Check
SUBDIR += p5-B-Hooks-OP-PPAddr
SUBDIR += p5-B-Hooks-Parser
SUBDIR += p5-B-Keywords
SUBDIR += p5-B-OPCheck
SUBDIR += p5-B-Size
SUBDIR += p5-B-Utils
SUBDIR += p5-BFD
SUBDIR += p5-BS-Event
SUBDIR += p5-BSD-Resource
SUBDIR += p5-BSD-stat
SUBDIR += p5-Badger
SUBDIR += p5-Best
SUBDIR += p5-Bundle-Perl6
SUBDIR += p5-C-Scan
SUBDIR += p5-CHI
SUBDIR += p5-CLASS
SUBDIR += p5-CPAN-Checksums
SUBDIR += p5-CPAN-DistnameInfo
SUBDIR += p5-CPAN-Inject
SUBDIR += p5-CPAN-Mini
SUBDIR += p5-CPAN-SQLite
SUBDIR += p5-CPAN-YACSmoke
SUBDIR += p5-CPANPLUS
SUBDIR += p5-CPANPLUS-Dist-Build
SUBDIR += p5-Cache
SUBDIR += p5-Cache-Cache
SUBDIR += p5-Cache-FastMmap
SUBDIR += p5-Cache-Mmap
SUBDIR += p5-Cache-Simple-TimedExpiry
SUBDIR += p5-Calendar-Simple
SUBDIR += p5-Capture-Tiny
SUBDIR += p5-Carp-Always
SUBDIR += p5-Carp-Assert
SUBDIR += p5-Carp-Assert-More
SUBDIR += p5-Carp-Clan
SUBDIR += p5-Carp-Clan-Share
SUBDIR += p5-Carp-Datum
SUBDIR += p5-Cdk
SUBDIR += p5-Check-ISA
SUBDIR += p5-Chooser
SUBDIR += p5-Class-Accessor
SUBDIR += p5-Class-Accessor-Chained
SUBDIR += p5-Class-Accessor-Children
SUBDIR += p5-Class-Accessor-Fast-XS
SUBDIR += p5-Class-Accessor-Grouped
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-Accessor
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-Fields
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-Loader
SUBDIR += p5-Class-MOP
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-MixinFactory
SUBDIR += p5-Class-Multimethods
SUBDIR += p5-Class-Multimethods-Pure
SUBDIR += p5-Class-NamedParms
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-StrongSingleton
SUBDIR += p5-Class-Tangram
SUBDIR += p5-Class-Throwable
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-Class-XSAccessor-Array
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-Config-Any
SUBDIR += p5-Config-ApacheFormat
SUBDIR += p5-Config-Auto
SUBDIR += p5-Config-Fast
SUBDIR += p5-Config-General
SUBDIR += p5-Config-INI
SUBDIR += p5-Config-INI-Simple
SUBDIR += p5-Config-IniFiles
SUBDIR += p5-Config-IniHash
SUBDIR += p5-Config-IniRegEx
SUBDIR += p5-Config-JFDI
SUBDIR += p5-Config-JSON
SUBDIR += p5-Config-Model
SUBDIR += p5-Config-MVP
SUBDIR += p5-Config-Objective
SUBDIR += p5-Config-Options
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-ConfigReader
SUBDIR += p5-ConfigReader-Simple
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-DB_File-Lock
SUBDIR += p5-Danga-Socket
SUBDIR += p5-Danga-Socket-Callback
SUBDIR += p5-Data-ACL
SUBDIR += p5-Data-Alias
SUBDIR += p5-Data-Bind
SUBDIR += p5-Data-ClearSilver-HDF
SUBDIR += p5-Data-Compare
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-HashArray
SUBDIR += p5-Data-HexDump
SUBDIR += p5-Data-Hexdumper
SUBDIR += p5-Data-Hierarchy
SUBDIR += p5-Data-Integer
SUBDIR += p5-Data-Lazy
SUBDIR += p5-Data-Localize
SUBDIR += p5-Data-MessagePack
SUBDIR += p5-Data-ObjectDriver
SUBDIR += p5-Data-OptList
SUBDIR += p5-Data-ParseBinary
SUBDIR += p5-Data-Path
SUBDIR += p5-Data-Properties
SUBDIR += p5-Data-Random
SUBDIR += p5-Data-Remember
SUBDIR += p5-Data-RoundRobin
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-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-Visitor
SUBDIR += p5-Data-Visitor-Encode
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-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-Range
SUBDIR += p5-Date-Roman
SUBDIR += p5-Date-Set
SUBDIR += p5-Date-Simple
SUBDIR += p5-DateConvert
SUBDIR += p5-DateTime
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-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-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-Pg
SUBDIR += p5-DateTime-Format-RFC3339
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-Decision-ACL
SUBDIR += p5-Devel-Arena
SUBDIR += p5-Devel-Backtrace
SUBDIR += p5-Devel-Caller
SUBDIR += p5-Devel-Caller-Perl
SUBDIR += p5-Devel-Callsite
SUBDIR += p5-Devel-CheckOS
SUBDIR += p5-Devel-Constants
SUBDIR += p5-Devel-CoreStack
SUBDIR += p5-Devel-Cover
SUBDIR += p5-Devel-Cycle
SUBDIR += p5-Devel-DProfPP
SUBDIR += p5-Devel-Declare
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-Gladiator
SUBDIR += p5-Devel-GlobalDestruction
SUBDIR += p5-Devel-Leak
SUBDIR += p5-Devel-Leak-Object
SUBDIR += p5-Devel-LeakGuard-Object
SUBDIR += p5-Devel-LeakTrace
SUBDIR += p5-Devel-LeakTrace-Fast
SUBDIR += p5-Devel-LexAlias
SUBDIR += p5-Devel-Messenger
SUBDIR += p5-Devel-Modlist
SUBDIR += p5-Devel-NYTProf
SUBDIR += p5-Devel-ObjectTracker
SUBDIR += p5-Devel-PPPort
SUBDIR += p5-Devel-PartialDump
SUBDIR += p5-Devel-Pointer
SUBDIR += p5-Devel-Profile
SUBDIR += p5-Devel-Profiler
SUBDIR += p5-Devel-REPL
SUBDIR += p5-Devel-Refactor
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-Dialog
SUBDIR += p5-Digest-TransformPath
SUBDIR += p5-Dir-Project
SUBDIR += p5-Dir-Watch
SUBDIR += p5-Directory-Scratch
SUBDIR += p5-Directory-Scratch-Structured
SUBDIR += p5-EV
SUBDIR += p5-Env-PS1
SUBDIR += p5-Env-Path
SUBDIR += p5-Errno
SUBDIR += p5-Eval-Context
SUBDIR += p5-Event
SUBDIR += p5-Event-ExecFlow
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-Lite
SUBDIR += p5-Exporter-Tidy
SUBDIR += p5-ExtUtils-AutoInstall
SUBDIR += p5-ExtUtils-CBuilder
SUBDIR += p5-ExtUtils-Command
SUBDIR += p5-ExtUtils-Constant
SUBDIR += p5-ExtUtils-Depends
SUBDIR += p5-ExtUtils-Install
SUBDIR += p5-ExtUtils-MakeMaker
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-File-Append-TempFile
SUBDIR += p5-File-Attributes
SUBDIR += p5-File-Attributes-Recursive
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-Copy-Recursive
SUBDIR += p5-File-CreationTime
SUBDIR += p5-File-DesktopEntry
SUBDIR += p5-File-Dir-Dumper
SUBDIR += p5-File-DirSync
SUBDIR += p5-File-ExtAttr
SUBDIR += p5-File-FTS
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-FnMatch
SUBDIR += p5-File-Grep
SUBDIR += p5-File-HStore
SUBDIR += p5-File-HomeDir
SUBDIR += p5-File-Lock
SUBDIR += p5-File-MMagic
SUBDIR += p5-File-MMagic-XS
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-PathConvert
SUBDIR += p5-File-Pid
SUBDIR += p5-File-Policy
SUBDIR += p5-File-Random
SUBDIR += p5-File-ReadBackwards
SUBDIR += p5-File-Remove
SUBDIR += p5-File-ShareDir
SUBDIR += p5-File-ShareDir-PAR
SUBDIR += p5-File-Slurp
SUBDIR += p5-File-Slurp-Tree
SUBDIR += p5-File-Stream
SUBDIR += p5-File-Sync
SUBDIR += p5-File-Tail
SUBDIR += p5-File-Temp
SUBDIR += p5-File-Tempdir
SUBDIR += p5-File-Type
SUBDIR += p5-File-Util
SUBDIR += p5-File-chdir
SUBDIR += p5-File-chmod
SUBDIR += p5-File-pushd
SUBDIR += p5-FileHandle-Fmode
SUBDIR += p5-FileHandle-Unget
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-FreeBSD-i386-Ptrace
SUBDIR += p5-FreezeThaw
SUBDIR += p5-Gearman
SUBDIR += p5-Gearman-Client-Async
SUBDIR += p5-Gearman-Server
SUBDIR += p5-Gearman-XS
SUBDIR += p5-Geo-ShapeFile
SUBDIR += p5-Getargs-Long
SUBDIR += p5-Getopt-ArgvFile
SUBDIR += p5-Getopt-Declare
SUBDIR += p5-Getopt-Euclid
SUBDIR += p5-Getopt-Long
SUBDIR += p5-Getopt-Long-Descriptive
SUBDIR += p5-Getopt-Mixed
SUBDIR += p5-Getopt-Popt
SUBDIR += p5-Git-PurePerl
SUBDIR += p5-Glib2
SUBDIR += p5-Gnome2-GConf
SUBDIR += p5-Google-Checkout
SUBDIR += p5-Gravatar-URL
SUBDIR += p5-Gtk2-Spell
SUBDIR += p5-Guard
SUBDIR += p5-Hash-AsObject
SUBDIR += p5-Hash-Case
SUBDIR += p5-Hash-Flatten
SUBDIR += p5-Hash-Merge-Simple
SUBDIR += p5-Hash-MoreUtils
SUBDIR += p5-Hash-MultiKey
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
SUBDIR += p5-IO-AIO
SUBDIR += p5-IO-All
SUBDIR += p5-IO-All-LWP
SUBDIR += p5-IO-Async
SUBDIR += p5-IO-BufferedSelect
SUBDIR += p5-IO-Capture
SUBDIR += p5-IO-CaptureOutput
SUBDIR += p5-IO-Digest
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-Prompt
SUBDIR += p5-IO-String
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-Mmap
SUBDIR += p5-IPC-Mmap-Share
SUBDIR += p5-IPC-Open3-Simple
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-Signal
SUBDIR += p5-IPC-System-Simple
SUBDIR += p5-Include
SUBDIR += p5-Inline
SUBDIR += p5-Inline-ASM
SUBDIR += p5-Inline-CPP
SUBDIR += p5-Inline-Files
SUBDIR += p5-Inline-Filters
SUBDIR += p5-Inline-Java
SUBDIR += p5-Inline-TT
SUBDIR += p5-Inline-Tcl
SUBDIR += p5-InlineX-C2XS
SUBDIR += p5-Ioctl
SUBDIR += p5-Iterator
SUBDIR += p5-Iterator-IO
SUBDIR += p5-Iterator-Misc
SUBDIR += p5-Iterator-Util
SUBDIR += p5-JIRA-Client
SUBDIR += p5-JQuery
SUBDIR += p5-JSON-RPC
SUBDIR += p5-JSON-RPC-Common
SUBDIR += p5-Java
SUBDIR += p5-Lexical-Alias
SUBDIR += p5-Lexical-Persistence
SUBDIR += p5-Lingua-JA-Fold
SUBDIR += p5-List-Cycle
SUBDIR += p5-List-Group
SUBDIR += p5-List-Permutor
SUBDIR += p5-List-PowerSet
SUBDIR += p5-List-Rotation-Cycle
SUBDIR += p5-List-Uniq
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
SUBDIR += p5-Log-Any-Adapter-Dispatch
SUBDIR += p5-Log-Dispatch
SUBDIR += p5-Log-Dispatch-Colorful
SUBDIR += p5-Log-Dispatch-Config
SUBDIR += p5-Log-Dispatch-Configurator-YAML
SUBDIR += p5-Log-Dispatch-Email-EmailSend
SUBDIR += p5-Log-Dispatch-FileRotate
SUBDIR += p5-Log-Dispatch-FileShared
SUBDIR += p5-Log-Dispatch-Perl
SUBDIR += p5-Log-Dispatch-Screen-Color
SUBDIR += p5-Log-Dispatch-Scribe
SUBDIR += p5-Log-Handler
SUBDIR += p5-Log-Log4perl
SUBDIR += p5-Log-Message
SUBDIR += p5-Log-Message-Simple
SUBDIR += p5-Log-Report
SUBDIR += p5-Log-Simple
SUBDIR += p5-Log-Trace
SUBDIR += p5-Log-TraceMessages
SUBDIR += p5-Logfile-Rotate
SUBDIR += p5-Luka
SUBDIR += p5-MRO-Compat
SUBDIR += p5-Mac-FileSpec-Unixish
SUBDIR += p5-Make
SUBDIR += p5-Make-Cache
SUBDIR += p5-Memoize
SUBDIR += p5-Memoize-ExpireLRU
SUBDIR += p5-Method-Alias
SUBDIR += p5-Mixin-Linewise
SUBDIR += p5-Mknod
SUBDIR += p5-Module-Build
SUBDIR += p5-Module-Build-Convert
SUBDIR += p5-Module-Build-Kwalitee
SUBDIR += p5-Module-CPANTS-Analyse
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-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-Repository
SUBDIR += p5-Module-Install-Template
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-Pluggable
SUBDIR += p5-Module-Pluggable-Fast
SUBDIR += p5-Module-Pluggable-Ordered
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-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-Util
SUBDIR += p5-Module-Versions-Report
SUBDIR += p5-Moose
SUBDIR += p5-Moose-Autobox
SUBDIR += p5-Moose-Policy
SUBDIR += p5-MooseX-Aliases
SUBDIR += p5-MooseX-Async
SUBDIR += p5-MooseX-AttributeHelpers
SUBDIR += p5-MooseX-ClassAttribute
SUBDIR += p5-MooseX-Clone
SUBDIR += p5-MooseX-ConfigFromFile
SUBDIR += p5-MooseX-Daemonize
SUBDIR += p5-MooseX-Declare
SUBDIR += p5-MooseX-Emulate-Class-Accessor-Fast
SUBDIR += p5-MooseX-Getopt
SUBDIR += p5-MooseX-Has-Sugar
SUBDIR += p5-MooseX-IOC
SUBDIR += p5-MooseX-InsideOut
SUBDIR += p5-MooseX-LazyRequire
SUBDIR += p5-MooseX-Log-Log4perl
SUBDIR += p5-MooseX-Meta-TypeConstraint-ForceCoercion
SUBDIR += p5-MooseX-Method-Signatures
SUBDIR += p5-MooseX-MethodAttributes
SUBDIR += p5-MooseX-MultiInitArg
SUBDIR += p5-MooseX-Object-Pluggable
SUBDIR += p5-MooseX-POE
SUBDIR += p5-MooseX-Params-Validate
SUBDIR += p5-MooseX-Role-Parameterized
SUBDIR += p5-MooseX-Role-WithOverloading
SUBDIR += p5-MooseX-SemiAffordanceAccessor
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-Types
SUBDIR += p5-MooseX-Types-Common
SUBDIR += p5-MooseX-Types-DateTime-ButMaintained
SUBDIR += p5-MooseX-Types-DateTimeX
SUBDIR += p5-MooseX-Types-Path-Class
SUBDIR += p5-MooseX-Types-Structured
SUBDIR += p5-Mouse
SUBDIR += p5-MouseX-AttributeHelpers
SUBDIR += p5-MouseX-ConfigFromFile
SUBDIR += p5-MouseX-Getopt
SUBDIR += p5-MouseX-Types
SUBDIR += p5-MouseX-Types-Path-Class
SUBDIR += p5-NEXT
SUBDIR += p5-Net-DBus
SUBDIR += p5-Number-Bytes-Human
SUBDIR += p5-OLE-Storage_Lite
SUBDIR += p5-OOTools
SUBDIR += p5-ORBit
SUBDIR += p5-Object-Accessor
SUBDIR += p5-Object-Array
SUBDIR += p5-Object-Declare
SUBDIR += p5-Object-Enum
SUBDIR += p5-Object-Event
SUBDIR += p5-Object-InsideOut
SUBDIR += p5-Object-MultiType
SUBDIR += p5-Object-Realize-Later
SUBDIR += p5-Object-Signature
SUBDIR += p5-Object-Tiny
SUBDIR += p5-Olson-Abbreviations
SUBDIR += p5-P4
SUBDIR += p5-P4-Client
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-Daemon
SUBDIR += p5-POE-Component-DebugShell
SUBDIR += p5-POE-Component-DirWatch
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-Server-XMLRPC
SUBDIR += p5-POE-Component-TSTP
SUBDIR += p5-POE-Devel-Profiler
SUBDIR += p5-POE-Exceptions
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-POSIX-strptime
SUBDIR += p5-PPerl
SUBDIR += p5-PV
SUBDIR += p5-Package-Constants
SUBDIR += p5-Package-Generator
SUBDIR += p5-PadWalker
SUBDIR += p5-Parallel-ForkManager
SUBDIR += p5-Parallel-Prefork
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-Parse-CPAN-Meta
SUBDIR += p5-Parse-CPAN-Packages
SUBDIR += p5-Parse-ErrorString-Perl
SUBDIR += p5-Parse-ExuberantCTags
SUBDIR += p5-Parse-Method-Signatures
SUBDIR += p5-Parse-PerlConfig
SUBDIR += p5-Parse-Pidl
SUBDIR += p5-Parse-RecDescent
SUBDIR += p5-Parse-Yapp
SUBDIR += p5-ParseLex
SUBDIR += p5-PatchReader
SUBDIR += p5-Path-Class
SUBDIR += p5-PathTools
SUBDIR += p5-Penguin
SUBDIR += p5-Penguin-Easy
SUBDIR += p5-Perl-Version
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-PerlIO-eol
SUBDIR += p5-PerlIO-via-MD5
SUBDIR += p5-PerlIO-via-dynamic
SUBDIR += p5-PerlIO-via-symlink
SUBDIR += p5-PerlMenu
SUBDIR += p5-Pipeline
SUBDIR += p5-Pod-Coverage
SUBDIR += p5-Pod-Coverage-Moose
SUBDIR += p5-Pod-Tests
SUBDIR += p5-Proc-Background
SUBDIR += p5-Proc-Daemon
SUBDIR += p5-Proc-Fork
SUBDIR += p5-Proc-PID-File
SUBDIR += p5-Proc-PIDFile
SUBDIR += p5-Proc-ProcessTable
SUBDIR += p5-Proc-Queue
SUBDIR += p5-Proc-Reliable
SUBDIR += p5-Proc-Simple
SUBDIR += p5-Proc-Wait3
SUBDIR += p5-Project-Gantt
SUBDIR += p5-RRDTool-OO
SUBDIR += p5-Rcs
SUBDIR += p5-Rcs-Agent
SUBDIR += p5-ReadLine-Gnu
SUBDIR += p5-ReadLine-Perl
SUBDIR += p5-Readonly
SUBDIR += p5-Regexp-Assemble
SUBDIR += p5-Regexp-Bind
SUBDIR += p5-Regexp-Shellish
SUBDIR += p5-Religion
SUBDIR += p5-ResourcePool
SUBDIR += p5-Resources
SUBDIR += p5-Return-Value
SUBDIR += p5-Rose-DateTime
SUBDIR += p5-Rose-Object
SUBDIR += p5-RunApp
SUBDIR += p5-SDL
SUBDIR += p5-SNMP-Persist
SUBDIR += p5-SOAP-WSDL
SUBDIR += p5-SPOPS
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-Scalar-Defer
SUBDIR += p5-Scalar-Listify
SUBDIR += p5-Scalar-String
SUBDIR += p5-Scalar-Util-Clone
SUBDIR += p5-Scope-Guard
SUBDIR += p5-Scope-Upper
SUBDIR += p5-Search-Binary
SUBDIR += p5-Set-Array
SUBDIR += p5-Set-ConsistentHash
SUBDIR += p5-Set-Crontab
SUBDIR += p5-Set-Infinite
SUBDIR += p5-Set-NestedGroups
SUBDIR += p5-Set-Object
SUBDIR += p5-Set-Scalar
SUBDIR += p5-Shape
SUBDIR += p5-Shell-Base
SUBDIR += p5-Shell-EnvImporter
SUBDIR += p5-Shell-Parser
SUBDIR += p5-Shell-Source
SUBDIR += p5-ShipIt
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-Spiffy
SUBDIR += p5-Spoon
SUBDIR += p5-Storable
SUBDIR += p5-Stream
SUBDIR += p5-Stream-Reader
SUBDIR += p5-String-Approx
SUBDIR += p5-String-CRC32
SUBDIR += p5-String-Checker
SUBDIR += p5-String-Diff
SUBDIR += p5-String-Ediff
SUBDIR += p5-String-LRC
SUBDIR += p5-String-Parity
SUBDIR += p5-String-Random
SUBDIR += p5-String-RexxParse
SUBDIR += p5-String-Similarity
SUBDIR += p5-Sub-Current
SUBDIR += p5-Sub-Delete
SUBDIR += p5-Sub-Exporter
SUBDIR += p5-Sub-Identify
SUBDIR += p5-Sub-Install
SUBDIR += p5-Sub-Installer
SUBDIR += p5-Sub-Multi
SUBDIR += p5-Sub-Name
SUBDIR += p5-Sub-Override
SUBDIR += p5-Sub-Uplevel
SUBDIR += p5-Sub-WrapPackages
SUBDIR += p5-Sys-Cpu
SUBDIR += p5-Sys-MemInfo
SUBDIR += p5-Sys-Mmap
SUBDIR += p5-Sys-RunAlone
SUBDIR += p5-Sys-RunAlways
SUBDIR += p5-Sys-Sendfile-FreeBSD
SUBDIR += p5-Sys-Sig
SUBDIR += p5-Sys-SigAction
SUBDIR += p5-Sys-Syscall
SUBDIR += p5-System2
SUBDIR += p5-TAP-Formatter-JUnit
SUBDIR += p5-TAP-Harness-JUnit
SUBDIR += p5-Taint-Runtime
SUBDIR += p5-Task-Weaken
SUBDIR += p5-Template-Provider-Encode
SUBDIR += p5-Term-ANSIColor
SUBDIR += p5-Term-ANSIScreen
SUBDIR += p5-Term-Animation
SUBDIR += p5-Term-CallEditor
SUBDIR += p5-Term-Encoding
SUBDIR += p5-Term-Menus
SUBDIR += p5-Term-ProgressBar
SUBDIR += p5-Term-Prompt
SUBDIR += p5-Term-Query
SUBDIR += p5-Term-ReadKey
SUBDIR += p5-Term-ReadLine-Zoid
SUBDIR += p5-Term-ReadPassword
SUBDIR += p5-Term-Screen
SUBDIR += p5-Term-Shell
SUBDIR += p5-Term-Size
SUBDIR += p5-Term-UI
SUBDIR += p5-Term-VT102
SUBDIR += p5-Term-Visual
SUBDIR += p5-Test-Assertions
SUBDIR += p5-Test-Base
SUBDIR += p5-Test-Benchmark
SUBDIR += p5-Test-Block
SUBDIR += p5-Test-Class
SUBDIR += p5-Test-ClassAPI
SUBDIR += p5-Test-Cmd
SUBDIR += p5-Test-Compile
SUBDIR += p5-Test-Data
SUBDIR += p5-Test-Debugger
SUBDIR += p5-Test-Declare
SUBDIR += p5-Test-Deep
SUBDIR += p5-Test-Dependencies
SUBDIR += p5-Test-Differences
SUBDIR += p5-Test-Distribution
SUBDIR += p5-Test-Exception
SUBDIR += p5-Test-Expect
SUBDIR += p5-Test-File
SUBDIR += p5-Test-File-Contents
SUBDIR += p5-Test-Fixture-DBIC-Schema
SUBDIR += p5-Test-Group
SUBDIR += p5-Test-HTML-Tidy
SUBDIR += p5-Test-Harness
SUBDIR += p5-Test-HasVersion
SUBDIR += p5-Test-Inline
SUBDIR += p5-Test-JSON
SUBDIR += p5-Test-Kwalitee
SUBDIR += p5-Test-LectroTest
SUBDIR += p5-Test-LoadAllModules
SUBDIR += p5-Test-Log4perl
SUBDIR += p5-Test-LongString
SUBDIR += p5-Test-Manifest
SUBDIR += p5-Test-Memory-Cycle
SUBDIR += p5-Test-Mock-LWP
SUBDIR += p5-Test-MockModule
SUBDIR += p5-Test-MockObject
SUBDIR += p5-Test-MockRandom
SUBDIR += p5-Test-MockTime
SUBDIR += p5-Test-Most
SUBDIR += p5-Test-NoWarnings
SUBDIR += p5-Test-Number-Delta
SUBDIR += p5-Test-Object
SUBDIR += p5-Test-Output
SUBDIR += p5-Test-POE-Client-TCP
SUBDIR += p5-Test-POE-Server-TCP
SUBDIR += p5-Test-Parser
SUBDIR += p5-Test-Pod
SUBDIR += p5-Test-Pod-Coverage
SUBDIR += p5-Test-Portability-Files
SUBDIR += p5-Test-RandomResults
SUBDIR += p5-Test-Reporter
SUBDIR += p5-Test-Requires
SUBDIR += p5-Test-Script
SUBDIR += p5-Test-SharedFork
SUBDIR += p5-Test-Simple
SUBDIR += p5-Test-Singleton
SUBDIR += p5-Test-Spelling
SUBDIR += p5-Test-Strict
SUBDIR += p5-Test-SubCalls
SUBDIR += p5-Test-TAP-HTMLMatrix
SUBDIR += p5-Test-TAP-Model
SUBDIR += p5-Test-TCP
SUBDIR += p5-Test-TempDir
SUBDIR += p5-Test-Tester
SUBDIR += p5-Test-Unit
SUBDIR += p5-Test-UseAllModules
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-Selenium
SUBDIR += p5-Test-Warn
SUBDIR += p5-Test-XML
SUBDIR += p5-Test-XML-Valid
SUBDIR += p5-Test-YAML-Meta
SUBDIR += p5-Test-YAML-Valid
SUBDIR += p5-Test-use-ok
SUBDIR += p5-Text-LevenshteinXS
SUBDIR += p5-Text-vFile-asData
SUBDIR += p5-TheSchwartz
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-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-Hash-Indexed
SUBDIR += p5-Tie-Hash-Regex
SUBDIR += p5-Tie-Hash-Sorted
SUBDIR += p5-Tie-Hash-TwoWay
SUBDIR += p5-Tie-IxHash
SUBDIR += p5-Tie-RefHash
SUBDIR += p5-Tie-RefHash-Weak
SUBDIR += p5-Tie-Restore
SUBDIR += p5-Tie-ShareLite
SUBDIR += p5-Tie-Simple
SUBDIR += p5-Tie-ToObject
SUBDIR += p5-Tie-iCal
SUBDIR += p5-Time-Clock
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-Object
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-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-Simple
SUBDIR += p5-Tree-Simple-View
SUBDIR += p5-Tree-Simple-VisitorFactory
SUBDIR += p5-UI-Dialog
SUBDIR += p5-UNIVERSAL-can
SUBDIR += p5-UNIVERSAL-exports
SUBDIR += p5-UNIVERSAL-isa
SUBDIR += p5-UNIVERSAL-moniker
SUBDIR += p5-UNIVERSAL-require
SUBDIR += p5-UNIVERSAL-which
SUBDIR += p5-UUID-Tiny
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-Variable-Magic
SUBDIR += p5-Want
SUBDIR += p5-WeakRef
SUBDIR += p5-Workflow
SUBDIR += p5-XML-Compile-Tester
SUBDIR += p5-XML-Pastor
SUBDIR += p5-XSLoader
SUBDIR += p5-Yada-Yada-Yada
SUBDIR += p5-ZConf-GUI
SUBDIR += p5-ZML
SUBDIR += p5-accessors
SUBDIR += p5-aliased
SUBDIR += p5-autobox
SUBDIR += p5-autodie
SUBDIR += p5-base
SUBDIR += p5-boolean
SUBDIR += p5-capitalization
SUBDIR += p5-common-sense
SUBDIR += p5-constant-boolean
SUBDIR += p5-constant-def
SUBDIR += p5-constant-lexical
SUBDIR += p5-doxygenfilter
SUBDIR += p5-enum
SUBDIR += p5-ex-lib
SUBDIR += p5-forks
SUBDIR += p5-github_creator
SUBDIR += p5-iCal-Parser
SUBDIR += p5-lib-abs
SUBDIR += p5-libalarm
SUBDIR += p5-local-lib
SUBDIR += p5-mixin
SUBDIR += p5-mocked
SUBDIR += p5-namespace-autoclean
SUBDIR += p5-namespace-clean
SUBDIR += p5-orz
SUBDIR += p5-parent
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-subatom
SUBDIR += p5-subversion
SUBDIR += p5-threads
SUBDIR += p5-threads-shared
SUBDIR += p5-uni-perl
SUBDIR += p5-usb
SUBDIR += p5-version
SUBDIR += p65
SUBDIR += paexec
SUBDIR += papi
SUBDIR += pas2dox
SUBDIR += patch
SUBDIR += pccts
SUBDIR += pcl
SUBDIR += pcre
SUBDIR += pcre++
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-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_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-I18N
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-PHPUnit
SUBDIR += pear-PHPUnit2
SUBDIR += pear-PHPUnit3
SUBDIR += pear-PHP_ArrayOf
SUBDIR += pear-PHP_Beautifier
SUBDIR += pear-PHP_CodeSniffer
SUBDIR += pear-PHP_Compat
SUBDIR += pear-PHP_CompatInfo
SUBDIR += pear-PHP_Parser
SUBDIR += pear-PHP_ParserGenerator
SUBDIR += pear-PHP_UML
SUBDIR += pear-Pager
SUBDIR += pear-PhpDocumentor
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-System_Command
SUBDIR += pear-Testing_Selenium
SUBDIR += pear-Text_Diff
SUBDIR += pear-VFS
SUBDIR += pear-Validate
SUBDIR += pear-Validate_AU
SUBDIR += pear-Validate_Finance
SUBDIR += pear-Validate_Finance_CreditCard
SUBDIR += pear-Var_Dump
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-XML_XPath
SUBDIR += pear-codegen
SUBDIR += pecl-automap
SUBDIR += pecl-bbcode
SUBDIR += pecl-bcompiler
SUBDIR += pecl-expect
SUBDIR += pecl-gearman
SUBDIR += pecl-hidef
SUBDIR += pecl-htscanner
SUBDIR += pecl-inclued
SUBDIR += pecl-intl
SUBDIR += pecl-json
SUBDIR += pecl-mcve
SUBDIR += pecl-newt
SUBDIR += pecl-operator
SUBDIR += pecl-params
SUBDIR += pecl-runkit
SUBDIR += pecl-shape
SUBDIR += pecl-spl_types
SUBDIR += pecl-spread
SUBDIR += pecl-statgrab
SUBDIR += pecl-svn
SUBDIR += pecl-uploadprogress
SUBDIR += pecl-vld
SUBDIR += pedisassem
SUBDIR += perforce
SUBDIR += performance
SUBDIR += perlconsole
SUBDIR += perltidy
SUBDIR += pharmacy
SUBDIR += php-dbg2
SUBDIR += php-java-bridge
SUBDIR += php-libawl
SUBDIR += php-xdebug
SUBDIR += php4-dio
SUBDIR += php4-gettext
SUBDIR += php4-mcve
SUBDIR += php4-ncurses
SUBDIR += php4-pcntl
SUBDIR += php4-pcre
SUBDIR += php4-readline
SUBDIR += php4-shmop
SUBDIR += php4-sysvmsg
SUBDIR += php4-sysvsem
SUBDIR += php4-sysvshm
SUBDIR += php4-tokenizer
SUBDIR += php5-geshi
SUBDIR += php5-gettext
SUBDIR += php5-ice
SUBDIR += php5-json
SUBDIR += php5-ncurses
SUBDIR += php5-pcntl
SUBDIR += php5-pcre
SUBDIR += php5-phing
SUBDIR += php5-pinba
SUBDIR += php5-readline
SUBDIR += php5-shmop
SUBDIR += php5-spl
SUBDIR += php5-sysvmsg
SUBDIR += php5-sysvsem
SUBDIR += php5-sysvshm
SUBDIR += php5-tokenizer
SUBDIR += phpbt
SUBDIR += phptags
SUBDIR += physfs
SUBDIR += physfs-devel
SUBDIR += picasm
SUBDIR += picp
SUBDIR += picprog
SUBDIR += pikdev
SUBDIR += piklab
SUBDIR += pinba_engine
SUBDIR += pinstall
SUBDIR += pipestatus
SUBDIR += pkg-config
SUBDIR += plan9port
SUBDIR += pmake
SUBDIR += pmd
SUBDIR += pmk
SUBDIR += poco
SUBDIR += poco-ssl
SUBDIR += popt
SUBDIR += portlet-api
SUBDIR += poslib
SUBDIR += powerpc-rtems-binutils
SUBDIR += powerpc-rtems-gcc
SUBDIR += powerpc-rtems-gdb
SUBDIR += ppl
SUBDIR += premake
SUBDIR += preps-gui
SUBDIR += prepstools
SUBDIR += present
SUBDIR += privman
SUBDIR += projectcenter.app
SUBDIR += projectmanager
SUBDIR += protobuf
SUBDIR += prototype
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 += ptlib26
SUBDIR += ptmalloc
SUBDIR += ptmalloc2
SUBDIR += pty
SUBDIR += ptypes
SUBDIR += publib
SUBDIR += pushmi
SUBDIR += pwlib
SUBDIR += py-AddOns
SUBDIR += py-Breve
SUBDIR += py-BytecodeAssembler
SUBDIR += py-EnthoughtBase
SUBDIR += py-InlineEgg
SUBDIR += py-Jinja
SUBDIR += py-Jinja2
SUBDIR += py-PEAK-Rules
SUBDIR += py-RPyC
SUBDIR += py-SymbolType
SUBDIR += py-ToscaWidgets
SUBDIR += py-TurboJinja
SUBDIR += py-akismet
SUBDIR += py-anonfunc
SUBDIR += py-argparse
SUBDIR += py-asn1
SUBDIR += py-aspects
SUBDIR += py-aspyct
SUBDIR += py-astng
SUBDIR += py-babel
SUBDIR += py-bison
SUBDIR += py-boto
SUBDIR += py-cclib
SUBDIR += py-celementtree
SUBDIR += py-cfgparse
SUBDIR += py-cheetah
SUBDIR += py-ciphon
SUBDIR += py-cjson
SUBDIR += py-cmdln
SUBDIR += py-cog
SUBDIR += py-configobj
SUBDIR += py-construct
SUBDIR += py-coverage
SUBDIR += py-ctags
SUBDIR += py-ctypes
SUBDIR += py-cxx
SUBDIR += py-dal
SUBDIR += py-darcsver
SUBDIR += py-dateutil
SUBDIR += py-dbus
SUBDIR += py-decorator
SUBDIR += py-decoratortools
SUBDIR += py-demjson
SUBDIR += py-dexml
SUBDIR += py-dialog
SUBDIR += py-distorm
SUBDIR += py-durus
SUBDIR += py-dynrules
SUBDIR += py-elementtree
SUBDIR += py-epsilon
SUBDIR += py-event
SUBDIR += py-extended_threading
SUBDIR += py-extremes
SUBDIR += py-ez_xml
SUBDIR += py-ezpyinline
SUBDIR += py-fabric
SUBDIR += py-fam
SUBDIR += py-fileutils
SUBDIR += py-flakes
SUBDIR += py-fortran
SUBDIR += py-freebsd
SUBDIR += py-fusefs
SUBDIR += py-game
SUBDIR += py-gamin
SUBDIR += py-gdata
SUBDIR += py-gearman
SUBDIR += py-generate
SUBDIR += py-geojson
SUBDIR += py-geotypes
SUBDIR += py-gitosis
SUBDIR += py-gitpython
SUBDIR += py-gobject
SUBDIR += py-grouch
SUBDIR += py-hashring
SUBDIR += py-icalendar
SUBDIR += py-ice
SUBDIR += py-icu
SUBDIR += py-iniparse
SUBDIR += py-instant
SUBDIR += py-interface
SUBDIR += py-ipaddr
SUBDIR += py-istring
SUBDIR += py-itools
SUBDIR += py-jcc
SUBDIR += py-json-py
SUBDIR += py-jsonlib
SUBDIR += py-jsonlib2
SUBDIR += py-kid
SUBDIR += py-kjbuckets
SUBDIR += py-kqueue
SUBDIR += py-levenshtein
SUBDIR += py-libgsf
SUBDIR += py-ll-core
SUBDIR += py-lock_file
SUBDIR += py-lockfile
SUBDIR += py-log4py
SUBDIR += py-logilab-common
SUBDIR += py-lxml
SUBDIR += py-magic
SUBDIR += py-mez_xml
SUBDIR += py-mox
SUBDIR += py-mwlib
SUBDIR += py-mwlib.ext
SUBDIR += py-mwlib.rl
SUBDIR += py-mx-experimental
SUBDIR += py-myghtyutils
SUBDIR += py-ncurses
SUBDIR += py-nose
SUBDIR += py-notifier
SUBDIR += py-notify
SUBDIR += py-ocempgui
SUBDIR += py-ode
SUBDIR += py-odfpy
SUBDIR += py-omniorb
SUBDIR += py-optik
SUBDIR += py-orbit
SUBDIR += py-parsedatetime
SUBDIR += py-parsing
SUBDIR += py-pefile
SUBDIR += py-period
SUBDIR += py-phpserialize
SUBDIR += py-pip
SUBDIR += py-plex
SUBDIR += py-ply
SUBDIR += py-pmock
SUBDIR += py-polib
SUBDIR += py-pp
SUBDIR += py-pqueue
SUBDIR += py-prioritized_methods
SUBDIR += py-protobuf
SUBDIR += py-protocols
SUBDIR += py-protocols-devel
SUBDIR += py-psyco
SUBDIR += py-ptrace
SUBDIR += py-pudb
SUBDIR += py-px
SUBDIR += py-pycallgraph
SUBDIR += py-pydasm
SUBDIR += py-pygpx
SUBDIR += py-pyke
SUBDIR += py-pylib
SUBDIR += py-pymarc
SUBDIR += py-pyro
SUBDIR += py-pyshapelib
SUBDIR += py-pytemplate
SUBDIR += py-pytz
SUBDIR += py-pyutil
SUBDIR += py-qt4-assistant
SUBDIR += py-qt4-core
SUBDIR += py-qt4-dbus
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-rbtree
SUBDIR += py-repl
SUBDIR += py-repoze.tm2
SUBDIR += py-repoze.what
SUBDIR += py-repoze.what-pylons
SUBDIR += py-repoze.who
SUBDIR += py-repoze.who-testutil
SUBDIR += py-resourcepackage
SUBDIR += py-reverse
SUBDIR += py-rlcompleter2
SUBDIR += py-ro
SUBDIR += py-roxlib
SUBDIR += py-rtree
SUBDIR += py-ruledispatch
SUBDIR += py-sendfile
SUBDIR += py-setuptools
SUBDIR += py-setuptools_darcs
SUBDIR += py-shapely
SUBDIR += py-simplejson
SUBDIR += py-simpleparse
SUBDIR += py-simpletal
SUBDIR += py-simpy
SUBDIR += py-sip
SUBDIR += py-spark
SUBDIR += py-sqlcc
SUBDIR += py-statgrab
SUBDIR += py-subversion
SUBDIR += py-tables
SUBDIR += py-tconfpy
SUBDIR += py-testgears
SUBDIR += py-testoob
SUBDIR += py-tgMochiKit
SUBDIR += py-thrift
SUBDIR += py-timelib
SUBDIR += py-trace2html
SUBDIR += py-traits
SUBDIR += py-transaction
SUBDIR += py-turbocheetah
SUBDIR += py-turbojson
SUBDIR += py-turbojson11
SUBDIR += py-turbokid
SUBDIR += py-twisted
SUBDIR += py-twistedCore
SUBDIR += py-twistedFlow
SUBDIR += py-twistedRunner
SUBDIR += py-unit
SUBDIR += py-unittestplus
SUBDIR += py-urlimport
SUBDIR += py-urwid
SUBDIR += py-usb
SUBDIR += py-utils
SUBDIR += py-uuid
SUBDIR += py-virtualenv
SUBDIR += py-vmaps
SUBDIR += py-waf
SUBDIR += py-wsgi_xmlrpc
SUBDIR += py-wsgiutils
SUBDIR += py-xattr
SUBDIR += py-xdg
SUBDIR += py-xoltar-toolkit
SUBDIR += py-yaml
SUBDIR += py-yapps2
SUBDIR += py-ydbf
SUBDIR += py-zclockfile
SUBDIR += py-zconfig
SUBDIR += py-zope.exceptions
SUBDIR += py-zopeInterface
SUBDIR += py-zopeevent
SUBDIR += py-zopetesting
SUBDIR += py_otp_interface
SUBDIR += pybaz
SUBDIR += pychecker
SUBDIR += pycount
SUBDIR += pylint
SUBDIR += pymacs
SUBDIR += pyobfuscate
SUBDIR += pypersrc
SUBDIR += pyrex
SUBDIR += pysvn
SUBDIR += pythk
SUBDIR += pythontidy
SUBDIR += qca
SUBDIR += qct
SUBDIR += qdevelop
SUBDIR += qgit
SUBDIR += qmake
SUBDIR += qmake4
SUBDIR += qprog
SUBDIR += qsa
SUBDIR += qscintilla2
SUBDIR += qscintilla2-designerplugin
SUBDIR += qssl
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-makeqpf
SUBDIR += qt4-moc
SUBDIR += qt4-porting
SUBDIR += qt4-qdbusviewer
SUBDIR += qt4-qdoc3
SUBDIR += qt4-qt3support
SUBDIR += qt4-qtestlib
SUBDIR += qt4-qvfb
SUBDIR += qt4-rcc
SUBDIR += qt4-script
SUBDIR += qt4-scripttools
SUBDIR += qt4-uic
SUBDIR += qt4-uic3
SUBDIR += qtcreator
SUBDIR += qtscriptgenerator
SUBDIR += quilt
SUBDIR += radrails
SUBDIR += ragel
SUBDIR += raknet
SUBDIR += rapidsvn
SUBDIR += rbtools
SUBDIR += re2c
SUBDIR += readline
SUBDIR += regexx
SUBDIR += regexxer
SUBDIR += replay
SUBDIR += rhtvision
SUBDIR += ri-emacs
SUBDIR += rinfo
SUBDIR += rlog
SUBDIR += rlwrap
SUBDIR += roboctl
SUBDIR += robodoc
SUBDIR += root
SUBDIR += root-doc
SUBDIR += rote
SUBDIR += rpc2
SUBDIR += rpm-spec-mode.el
SUBDIR += rsvndump
SUBDIR += rth
SUBDIR += ruby-amstd
SUBDIR += ruby-aspectr
SUBDIR += ruby-avl
SUBDIR += ruby-bsearch
SUBDIR += ruby-byaccr
SUBDIR += ruby-cache
SUBDIR += ruby-calendar
SUBDIR += ruby-cvs
SUBDIR += ruby-date2
SUBDIR += ruby-dialogs
SUBDIR += ruby-ecore
SUBDIR += ruby-eet
SUBDIR += ruby-event-loop
SUBDIR += ruby-fam
SUBDIR += ruby-fastri
SUBDIR += ruby-filelock
SUBDIR += ruby-filemagic
SUBDIR += ruby-flexmock
SUBDIR += ruby-game
SUBDIR += ruby-gconf2
SUBDIR += ruby-gemfinder
SUBDIR += ruby-gems
SUBDIR += ruby-gettext
SUBDIR += ruby-glib2
SUBDIR += ruby-gnomevfs
SUBDIR += ruby-gnustep
SUBDIR += ruby-intl
SUBDIR += ruby-io-reactor
SUBDIR += ruby-jttui
SUBDIR += ruby-libglade2
SUBDIR += ruby-locale
SUBDIR += ruby-locale2
SUBDIR += ruby-metaruby
SUBDIR += ruby-mmap
SUBDIR += ruby-multi
SUBDIR += ruby-ncurses
SUBDIR += ruby-poll
SUBDIR += ruby-property
SUBDIR += ruby-racc
SUBDIR += ruby-rbbr
SUBDIR += ruby-rbison
SUBDIR += ruby-rbprof
SUBDIR += ruby-rbtree
SUBDIR += ruby-rcov
SUBDIR += ruby-rjudy
SUBDIR += ruby-robjectteam
SUBDIR += ruby-rrb
SUBDIR += ruby-rreadline
SUBDIR += ruby-rudl
SUBDIR += ruby-sdl
SUBDIR += ruby-setup.rb
SUBDIR += ruby-sexp
SUBDIR += ruby-slang
SUBDIR += ruby-statgrab
SUBDIR += ruby-strongtyping
SUBDIR += ruby-subversion
SUBDIR += ruby-sysvipc
SUBDIR += ruby-term-ansicolor
SUBDIR += ruby-textbuf
SUBDIR += ruby-thrift
SUBDIR += ruby-tzfile
SUBDIR += ruby-wirble
SUBDIR += rubygem-abstract
SUBDIR += rubygem-activesupport
SUBDIR += rubygem-analogger
SUBDIR += rubygem-arrayfields
SUBDIR += rubygem-authlogic
SUBDIR += rubygem-bioruby
SUBDIR += rubygem-builder
SUBDIR += rubygem-chronic
SUBDIR += rubygem-classifier
SUBDIR += rubygem-columnize
SUBDIR += rubygem-configuration
SUBDIR += rubygem-crack
SUBDIR += rubygem-daemons
SUBDIR += rubygem-deeptest
SUBDIR += rubygem-deprecated
SUBDIR += rubygem-directory_watcher
SUBDIR += rubygem-ditz
SUBDIR += rubygem-echoe
SUBDIR += rubygem-eventmachine
SUBDIR += rubygem-extlib
SUBDIR += rubygem-facets
SUBDIR += rubygem-fastercsv
SUBDIR += rubygem-fastthread
SUBDIR += rubygem-fattr
SUBDIR += rubygem-file-tail
SUBDIR += rubygem-gdata
SUBDIR += rubygem-gem_plugin
SUBDIR += rubygem-georuby
SUBDIR += rubygem-git
SUBDIR += rubygem-grit
SUBDIR += rubygem-highline
SUBDIR += rubygem-hoe
SUBDIR += rubygem-icalendar
SUBDIR += rubygem-igraph
SUBDIR += rubygem-inline
SUBDIR += rubygem-jruby-jars
SUBDIR += rubygem-json
SUBDIR += rubygem-json_pure
SUBDIR += rubygem-launchy
SUBDIR += rubygem-linecache
SUBDIR += rubygem-little_plugger
SUBDIR += rubygem-lockfile
SUBDIR += rubygem-logging
SUBDIR += rubygem-loquacious
SUBDIR += rubygem-main
SUBDIR += rubygem-mash
SUBDIR += rubygem-metaid
SUBDIR += rubygem-mocha
SUBDIR += rubygem-needle
SUBDIR += rubygem-newgem
SUBDIR += rubygem-open4
SUBDIR += rubygem-parsetree
SUBDIR += rubygem-piston
SUBDIR += rubygem-platform
SUBDIR += rubygem-polyglot
SUBDIR += rubygem-ptreloaded
SUBDIR += rubygem-rake
SUBDIR += rubygem-rapt
SUBDIR += rubygem-rascut
SUBDIR += rubygem-rcov
SUBDIR += rubygem-rgl
SUBDIR += rubygem-rparsec
SUBDIR += rubygem-rscm
SUBDIR += rubygem-rspec
SUBDIR += rubygem-rtags
SUBDIR += rubygem-rubigen
SUBDIR += rubygem-ruby-debug
SUBDIR += rubygem-ruby-debug-base
SUBDIR += rubygem-ruby-debug-ide
SUBDIR += rubygem-ruby-ole
SUBDIR += rubygem-ruby-prof
SUBDIR += rubygem-ruby2ruby
SUBDIR += rubygem-ruby_parser
SUBDIR += rubygem-rubyforge
SUBDIR += rubygem-rubyinlineaccel
SUBDIR += rubygem-runt
SUBDIR += rubygem-ruport
SUBDIR += rubygem-sequel
SUBDIR += rubygem-sexp_processor
SUBDIR += rubygem-soap4r
SUBDIR += rubygem-stemmer
SUBDIR += rubygem-stomp
SUBDIR += rubygem-stream
SUBDIR += rubygem-streetaddress
SUBDIR += rubygem-templater
SUBDIR += rubygem-transactionsimple
SUBDIR += rubygem-treetop
SUBDIR += rubygem-trollop
SUBDIR += rubygem-tzinfo
SUBDIR += rubygem-uuid
SUBDIR += rubygem-validatable
SUBDIR += rubygem-warbler
SUBDIR += rubygem-webby
SUBDIR += rubygem-zentest
SUBDIR += rubygem-zoom
SUBDIR += rudeconfig
SUBDIR += rudiments
SUBDIR += rvi
SUBDIR += rvm
SUBDIR += safestr
SUBDIR += scandoc
SUBDIR += scons
SUBDIR += scsh-install-lib
SUBDIR += sdl12
SUBDIR += sdl_console
SUBDIR += sdl_sge
SUBDIR += sdlmm
SUBDIR += sdts++
SUBDIR += sedsed
SUBDIR += seed
SUBDIR += semantic
SUBDIR += sfio
SUBDIR += sfml
SUBDIR += sfslite
SUBDIR += sfslite-dbg
SUBDIR += sfslite-noopt
SUBDIR += sgb
SUBDIR += sgl
SUBDIR += sh-rtems-binutils
SUBDIR += sh-rtems-gcc
SUBDIR += sh-rtems-gdb
SUBDIR += shapelib
SUBDIR += shflags
SUBDIR += shmap
SUBDIR += showgrammar
SUBDIR += shtool
SUBDIR += sid
SUBDIR += sigslot
SUBDIR += silc-toolkit
SUBDIR += silentbob
SUBDIR += simgear
SUBDIR += simian
SUBDIR += simpletest
SUBDIR += simulavr
SUBDIR += skalibs
SUBDIR += slf4j
SUBDIR += slglade
SUBDIR += smake
SUBDIR += smc
SUBDIR += sml_tk
SUBDIR += smv
SUBDIR += soapui
SUBDIR += soup
SUBDIR += sourcenav
SUBDIR += sparc-rtems-binutils
SUBDIR += sparc-rtems-gcc
SUBDIR += sparc-rtems-gdb
SUBDIR += spatialindex
SUBDIR += spdict
SUBDIR += spin
SUBDIR += splint
SUBDIR += srecord
SUBDIR += st
SUBDIR += statcvs
SUBDIR += statsvn
SUBDIR += stfl
SUBDIR += stlfilt
SUBDIR += stlport
SUBDIR += str
SUBDIR += strace
SUBDIR += stringencoders
SUBDIR += styx
SUBDIR += subclipse
SUBDIR += subcommander
SUBDIR += subcommander2
SUBDIR += subversion
SUBDIR += subversion-freebsd
SUBDIR += subversive
SUBDIR += sunterlib
SUBDIR += svk
SUBDIR += svn_load_dirs
SUBDIR += svndelta
SUBDIR += svnkit
SUBDIR += svntrac
SUBDIR += swig13
SUBDIR += synfig
SUBDIR += sysconftool
SUBDIR += sysfsutils
SUBDIR += t1lib
SUBDIR += ta-lib
SUBDIR += tailor
SUBDIR += talloc
SUBDIR += tavrasm
SUBDIR += tbb
SUBDIR += tcl-memchan
SUBDIR += tcl-neo
SUBDIR += tcl-trf
SUBDIR += tclcheck
SUBDIR += tclcl
SUBDIR += tclgetopts
SUBDIR += tcllib
SUBDIR += tclmore
SUBDIR += tclreadline
SUBDIR += tclthread
SUBDIR += tcltls
SUBDIR += tclxml
SUBDIR += tdl
SUBDIR += templ
SUBDIR += terminality
SUBDIR += tevent
SUBDIR += thistest
SUBDIR += thrift
SUBDIR += thunar-svn-plugin
SUBDIR += tide
SUBDIR += tig
SUBDIR += tigcc
SUBDIR += tijmp
SUBDIR += tinylaf
SUBDIR += tinyq
SUBDIR += titano
SUBDIR += tkcon
SUBDIR += tkcvs
SUBDIR += tkinspect
SUBDIR += tkmerge
SUBDIR += tkp4
SUBDIR += tla
SUBDIR += tmake
SUBDIR += tnt
SUBDIR += toh
SUBDIR += tokamak
SUBDIR += towitoko
SUBDIR += tpasm
SUBDIR += tpg
SUBDIR += trio
SUBDIR += truc
SUBDIR += u-boot
SUBDIR += uclmmbase
SUBDIR += ucpp
SUBDIR += udis86
SUBDIR += umem
SUBDIR += universalindentgui
SUBDIR += upnp
SUBDIR += upp
SUBDIR += uppaal
SUBDIR += upslug
SUBDIR += urjtag
SUBDIR += ustl
SUBDIR += valgrind
SUBDIR += valgrind-snapshot
SUBDIR += valide
SUBDIR += varconf
SUBDIR += vb2c
SUBDIR += viewvc
SUBDIR += vstr
SUBDIR += vtcl
SUBDIR += wand-libconfig
SUBDIR += websvn
SUBDIR += wininfo
SUBDIR += winpdb
SUBDIR += wizardkit
SUBDIR += wxGlade
SUBDIR += xdg-user-dirs
SUBDIR += xdg-utils
SUBDIR += xfc
SUBDIR += xfce4-dev-tools
SUBDIR += xlslib
SUBDIR += xmake
SUBDIR += xmltooling
SUBDIR += xorg-macros
SUBDIR += xparam
SUBDIR += xtl
SUBDIR += xtla
SUBDIR += xwpe
SUBDIR += xxgdb
SUBDIR += xxl
SUBDIR += yasm
SUBDIR += z80-asm
SUBDIR += z80asm
SUBDIR += zeroinstall-injector
SUBDIR += zmq
SUBDIR += ztcl
SUBDIR += zthread
SUBDIR += zziplib
.include <bsd.port.subdir.mk>
|