aboutsummaryrefslogtreecommitdiff
path: root/devel/Makefile
blob: 26724f9ec29a0d21a5df473551ae89a57cd89270 (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
# $FreeBSD$
#

    COMMENT = Development utilities

    SUBDIR += ElectricFence
    SUBDIR += ORBit
    SUBDIR += ORBit2
    SUBDIR += SpecTcl
    SUBDIR += ZendOptimizer
    SUBDIR += a2dev
    SUBDIR += aap
    SUBDIR += ac-archive
    SUBDIR += ace
    SUBDIR += ace+tao
    SUBDIR += ace+tao-doc
    SUBDIR += acpicatools
    SUBDIR += activitymail
    SUBDIR += adabindx
    SUBDIR += adabooch
    SUBDIR += adabooch-doc-html
    SUBDIR += adacurses
    SUBDIR += adasdl
    SUBDIR += adime
    SUBDIR += adocman
    SUBDIR += agenda-headers
    SUBDIR += agenda-libs
    SUBDIR += agenda-snow-libs
    SUBDIR += agenda-static-libs
    SUBDIR += agide
    SUBDIR += ald
    SUBDIR += alf
    SUBDIR += allegro
    SUBDIR += alleyoop
    SUBDIR += anjuta
    SUBDIR += antlr
    SUBDIR += apache-ant
    SUBDIR += apr
    SUBDIR += apr-svn
    SUBDIR += argouml
    SUBDIR += argp-standalone
    SUBDIR += argtable
    SUBDIR += arm-elf-binutils
    SUBDIR += arm-elf-gcc295
    SUBDIR += arm-rtems-binutils
    SUBDIR += arm-rtems-g77
    SUBDIR += arm-rtems-gcc
    SUBDIR += arm-rtems-gdb
    SUBDIR += arm-rtems-objc
    SUBDIR += as31
    SUBDIR += asis
    SUBDIR += asl
    SUBDIR += asmutils
    SUBDIR += astyle
    SUBDIR += atlas
    SUBDIR += atlas-devel
    SUBDIR += aunit
    SUBDIR += autobook
    SUBDIR += autoconf213
    SUBDIR += autoconf253
    SUBDIR += autoconf259
    SUBDIR += autodia
    SUBDIR += autogen
    SUBDIR += automake14
    SUBDIR += automake15
    SUBDIR += automake19
    SUBDIR += avalon-framework
    SUBDIR += avarice
    SUBDIR += avltree
    SUBDIR += avr-binutils
    SUBDIR += avr-gcc
    SUBDIR += avr-gdb
    SUBDIR += avr-libc
    SUBDIR += avra
    SUBDIR += avrdude
    SUBDIR += bazaar
    SUBDIR += bazaar-ng
    SUBDIR += bcc
    SUBDIR += bcpp
    SUBDIR += beautifyphp
    SUBDIR += bglibs
    SUBDIR += bicyclerepair
    SUBDIR += bin86
    SUBDIR += bison
    SUBDIR += bison2
    SUBDIR += bisongen
    SUBDIR += bitkeeper
    SUBDIR += bnf
    SUBDIR += boaconstructor
    SUBDIR += boehm-gc
    SUBDIR += bonobo
    SUBDIR += bonobo-conf
    SUBDIR += boost
    SUBDIR += boost-gcc3
    SUBDIR += boost-python
    SUBDIR += bouml
    SUBDIR += bugbuddy
    SUBDIR += bugzilla
    SUBDIR += buildbot
    SUBDIR += buildtool
    SUBDIR += buildtool-doc
    SUBDIR += byaccj
    SUBDIR += bzrtools
    SUBDIR += c2lib
    SUBDIR += c2man
    SUBDIR += c2mdoc
    SUBDIR += c4
    SUBDIR += c_c++_reference
    SUBDIR += c_parser
    SUBDIR += calibrator
    SUBDIR += callgrind
    SUBDIR += cbrowser
    SUBDIR += cc65
    SUBDIR += ccache
    SUBDIR += cccc
    SUBDIR += ccdoc
    SUBDIR += ccmalloc
    SUBDIR += cdecl
    SUBDIR += cdialog
    SUBDIR += cdk
    SUBDIR += cdoc
    SUBDIR += cedet
    SUBDIR += cflow
    SUBDIR += cflow2vcg
    SUBDIR += cgdb
    SUBDIR += cgilib
    SUBDIR += cgprof
    SUBDIR += chora
    SUBDIR += cil
    SUBDIR += cl-asdf
    SUBDIR += cl-asdf-clisp
    SUBDIR += cl-asdf-cmucl
    SUBDIR += cl-asdf-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-cmucl
    SUBDIR += cl-split-sequence-sbcl
    SUBDIR += cl-uffi
    SUBDIR += cl-uffi-cmucl
    SUBDIR += cl-uffi-sbcl
    SUBDIR += clanlib
    SUBDIR += clanlib-devel
    SUBDIR += clig
    SUBDIR += clint
    SUBDIR += clisp-hyperspec
    SUBDIR += cmake
    SUBDIR += cmunge
    SUBDIR += cocktail
    SUBDIR += codeblocks
    SUBDIR += codeville
    SUBDIR += codeworker
    SUBDIR += cogito
    SUBDIR += colorer
    SUBDIR += commoncpp
    SUBDIR += configgen
    SUBDIR += cons
    SUBDIR += cons-test
    SUBDIR += cook
    SUBDIR += cpan-upload
    SUBDIR += cppadvio
    SUBDIR += cppunit
    SUBDIR += cproto
    SUBDIR += crossgo32
    SUBDIR += crossgo32-djgpp2
    SUBDIR += crossgo32-djgpp2-pdcurses
    SUBDIR += cscope
    SUBDIR += cscout
    SUBDIR += cscout-devel
    SUBDIR += cssc
    SUBDIR += cstringbuffer
    SUBDIR += ctags
    SUBDIR += cut
    SUBDIR += cutils
    SUBDIR += cvs+ipv6
    SUBDIR += cvs2cl
    SUBDIR += cvs2html
    SUBDIR += cvs2p4
    SUBDIR += cvs2svn
    SUBDIR += cvsadmin
    SUBDIR += cvsbook
    SUBDIR += cvschk
    SUBDIR += cvsd
    SUBDIR += cvsdadm
    SUBDIR += cvsdelta
    SUBDIR += cvsdiff2patch
    SUBDIR += cvsgraph
    SUBDIR += cvslines
    SUBDIR += cvsmapfs
    SUBDIR += cvsmonitor
    SUBDIR += cvsnt
    SUBDIR += cvspadm
    SUBDIR += cvsplot
    SUBDIR += cvsps
    SUBDIR += cvsps-devel
    SUBDIR += cvsspam
    SUBDIR += cvsstat
    SUBDIR += cvstrac
    SUBDIR += cvsutils
    SUBDIR += cvsweb
    SUBDIR += cvsweb3
    SUBDIR += cvswrap
    SUBDIR += cweb
    SUBDIR += cxmon
    SUBDIR += cxref
    SUBDIR += cxxtest
    SUBDIR += darcs
    SUBDIR += darts
    SUBDIR += datadesigner
    SUBDIR += dbus
    SUBDIR += dbus-sharp
    SUBDIR += ddd
    SUBDIR += desktop-file-utils
    SUBDIR += devhelp
    SUBDIR += devtodo
    SUBDIR += dia2code
    SUBDIR += dialyzer
    SUBDIR += diffconvert
    SUBDIR += directfb
    SUBDIR += distcc
    SUBDIR += distel
    SUBDIR += dits
    SUBDIR += dmake
    SUBDIR += dmalloc
    SUBDIR += doctorj
    SUBDIR += dotconf
    SUBDIR += dotconf++
    SUBDIR += doxygen
    SUBDIR += dparser
    SUBDIR += dprog
    SUBDIR += drpython
    SUBDIR += dumb
    SUBDIR += dwarfdump
    SUBDIR += e4graph
    SUBDIR += ebnf2yacc
    SUBDIR += eboxy
    SUBDIR += ecb
    SUBDIR += ecgi
    SUBDIR += ecos-tools
    SUBDIR += eet
    SUBDIR += eieio
    SUBDIR += eieio-emacs20
    SUBDIR += elf
    SUBDIR += elfio
    SUBDIR += elfsh
    SUBDIR += elftoaout
    SUBDIR += elib
    SUBDIR += elib-emacs19
    SUBDIR += elib-emacs20
    SUBDIR += entity
    SUBDIR += epm
    SUBDIR += epydoc
    SUBDIR += eric
    SUBDIR += eris
    SUBDIR += erlslang
    SUBDIR += error
    SUBDIR += esdl
    SUBDIR += esvn
    SUBDIR += evolution-gconf-tools
    SUBDIR += excalibur-configuration
    SUBDIR += f77flow
    SUBDIR += fam
    SUBDIR += fampp
    SUBDIR += fastcrc
    SUBDIR += fastdep
    SUBDIR += fc++
    SUBDIR += ffcall
    SUBDIR += fhist
    SUBDIR += fib
    SUBDIR += flatzebra
    SUBDIR += flick
    SUBDIR += florist
    SUBDIR += flowdesigner
    SUBDIR += flyspray
    SUBDIR += fnccheck
    SUBDIR += fnorb
    SUBDIR += fortran-utils
    SUBDIR += fpc-fvision
    SUBDIR += fpc-gdb
    SUBDIR += fpc-gdbint
    SUBDIR += fpc-regexpr
    SUBDIR += fpp
    SUBDIR += freebase
    SUBDIR += freelibiberty
    SUBDIR += freeride
    SUBDIR += freescope
    SUBDIR += frink
    SUBDIR += fsmgenerator
    SUBDIR += ftjam
    SUBDIR += ftnchek
    SUBDIR += fujaba
    SUBDIR += funnelweb
    SUBDIR += g-wrap
    SUBDIR += g2c
    SUBDIR += gaa
    SUBDIR += gamin
    SUBDIR += gaphor
    SUBDIR += gauche-gaunit
    SUBDIR += gauche-readline
    SUBDIR += gauche-sdl
    SUBDIR += gaul
    SUBDIR += gccxml
    SUBDIR += gconf
    SUBDIR += gconf2
    SUBDIR += gconfmm
    SUBDIR += gconfmm26
    SUBDIR += gcvs
    SUBDIR += gdb53
    SUBDIR += gdb53-act
    SUBDIR += gdb6
    SUBDIR += gdbmods
    SUBDIR += gengameng
    SUBDIR += gengetopt
    SUBDIR += genproto
    SUBDIR += gettext
    SUBDIR += gettext-lint
    SUBDIR += getxml
    SUBDIR += gindent
    SUBDIR += git
    SUBDIR += glade2
    SUBDIR += glademm
    SUBDIR += glib-java
    SUBDIR += glib12
    SUBDIR += glib20
    SUBDIR += glibmm
    SUBDIR += global
    SUBDIR += glrparser
    SUBDIR += glui
    SUBDIR += gmake
    SUBDIR += gnome-vfsmm
    SUBDIR += gnome2-hacker-tools
    SUBDIR += gnomebuild
    SUBDIR += gnomecommon
    SUBDIR += gnomecrash
    SUBDIR += gnomevfs
    SUBDIR += gnomevfs2
    SUBDIR += gnu-autoconf
    SUBDIR += gnu-automake
    SUBDIR += gnu-libtool
    SUBDIR += gnulibiberty
    SUBDIR += gnustep
    SUBDIR += gnustep-make
    SUBDIR += gob2
    SUBDIR += goffice
    SUBDIR += gonzui
    SUBDIR += google-sparsehash
    SUBDIR += gorm
    SUBDIR += gpc
    SUBDIR += gperf
    SUBDIR += gputils
    SUBDIR += gsoap
    SUBDIR += gstreamer-plugins-gconf
    SUBDIR += gstreamer-plugins-gnomevfs
    SUBDIR += gstreamer-plugins-sdl
    SUBDIR += gtgt
    SUBDIR += gtkmozedit
    SUBDIR += gtranslator
    SUBDIR += guichan
    SUBDIR += guikachu
    SUBDIR += gwenhywfar
    SUBDIR += happydoc
    SUBDIR += hapy
    SUBDIR += hc12mem
    SUBDIR += hptools
    SUBDIR += hs-alex
    SUBDIR += hs-buddha
    SUBDIR += hs-c2hs
    SUBDIR += hs-cpphs
    SUBDIR += hs-crypto
    SUBDIR += hs-drift
    SUBDIR += hs-green-card
    SUBDIR += hs-haddock
    SUBDIR += hs-happy
    SUBDIR += hs-hat
    SUBDIR += hs-hdoc
    SUBDIR += hs-hmake
    SUBDIR += hs-hpl
    SUBDIR += hs-idoc
    SUBDIR += hs-popenhs
    SUBDIR += hs-tclhaskell-ghc
    SUBDIR += hypersrc
    SUBDIR += i386-rtems-binutils
    SUBDIR += i386-rtems-g77
    SUBDIR += i386-rtems-gcc
    SUBDIR += i386-rtems-gdb
    SUBDIR += i386-rtems-objc
    SUBDIR += i960-rtems-binutils
    SUBDIR += i960-rtems-gcc
    SUBDIR += i960-rtems-gdb
    SUBDIR += ice
    SUBDIR += icu
    SUBDIR += icu2
    SUBDIR += id-utils
    SUBDIR += ifd-test
    SUBDIR += imake-4
    SUBDIR += imake-6
    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-io
    SUBDIR += jakelib2
    SUBDIR += jam
    SUBDIR += java-util-concurrent
    SUBDIR += javasvn
    SUBDIR += jclassinfo
    SUBDIR += jcmdline
    SUBDIR += jep
    SUBDIR += jrtplib
    SUBDIR += jsap
    SUBDIR += jude-community
    SUBDIR += judy
    SUBDIR += kaptain
    SUBDIR += kcachegrind
    SUBDIR += kdbg
    SUBDIR += kdesdk3
    SUBDIR += kdevelop
    SUBDIR += kimwitu
    SUBDIR += kimwitu++
    SUBDIR += klassmodeler
    SUBDIR += kodos
    SUBDIR += kprof
    SUBDIR += kscope
    SUBDIR += kxl
    SUBDIR += kyra
    SUBDIR += lbpp
    SUBDIR += leaktracer
    SUBDIR += lemon
    SUBDIR += leoarg
    SUBDIR += libIDL
    SUBDIR += libPropList
    SUBDIR += libU77
    SUBDIR += libafterbase
    SUBDIR += libassa
    SUBDIR += libassetml
    SUBDIR += libast
    SUBDIR += libavl
    SUBDIR += libbegemot
    SUBDIR += libbfd
    SUBDIR += libbinio
    SUBDIR += libbnr
    SUBDIR += libbonobo
    SUBDIR += libbonobomm
    SUBDIR += libcapsinetwork
    SUBDIR += libccid
    SUBDIR += libcheck
    SUBDIR += libchipcard
    SUBDIR += libchipcard-kde
    SUBDIR += libcii
    SUBDIR += libconfuse
    SUBDIR += libcoro
    SUBDIR += libcwd
    SUBDIR += libdaemon
    SUBDIR += libdict
    SUBDIR += libdlmalloc
    SUBDIR += libdnsres
    SUBDIR += libds
    SUBDIR += libdsp
    SUBDIR += libdwarf
    SUBDIR += libedit
    SUBDIR += libelf
    SUBDIR += libevent
    SUBDIR += libexecinfo
    SUBDIR += libffi
    SUBDIR += libformat
    SUBDIR += libfs++
    SUBDIR += libg++
    SUBDIR += libgconf-java
    SUBDIR += libgetline
    SUBDIR += libghthash
    SUBDIR += libgii
    SUBDIR += libgiigic
    SUBDIR += libglade
    SUBDIR += libglade-java
    SUBDIR += libglade2
    SUBDIR += libglademm
    SUBDIR += libglademm24
    SUBDIR += libgnugetopt
    SUBDIR += libgsf
    SUBDIR += libgsf-gnome
    SUBDIR += libgtop2
    SUBDIR += libgutenfetch
    SUBDIR += libhash
    SUBDIR += libhoard
    SUBDIR += libical
    SUBDIR += libisc
    SUBDIR += libltdl15
    SUBDIR += libmatheval
    SUBDIR += libmba
    SUBDIR += libmcve
    SUBDIR += libmimedir
    SUBDIR += libmtrie
    SUBDIR += libnaji
    SUBDIR += libnotify
    SUBDIR += liboil
    SUBDIR += libol
    SUBDIR += libole2
    SUBDIR += liboop
    SUBDIR += libopendaap
    SUBDIR += libopensync
    SUBDIR += libowfat
    SUBDIR += libpci
    SUBDIR += libpdel
    SUBDIR += libpeak
    SUBDIR += libpperl
    SUBDIR += libredblack
    SUBDIR += libshbuf
    SUBDIR += libshhmsg
    SUBDIR += libshhopt
    SUBDIR += libsigc++
    SUBDIR += libsigc++12
    SUBDIR += libsigc++20
    SUBDIR += libsigcx
    SUBDIR += libsigsegv
    SUBDIR += libslang
    SUBDIR += libslang2
    SUBDIR += libsoup
    SUBDIR += libstatgrab
    SUBDIR += libstrfunc
    SUBDIR += libstroke
    SUBDIR += libtai
    SUBDIR += libtap
    SUBDIR += libtar
    SUBDIR += libtecla
    SUBDIR += libticalcs
    SUBDIR += libtifiles
    SUBDIR += libtool13
    SUBDIR += libtool15
    SUBDIR += libukcprog
    SUBDIR += libunicode
    SUBDIR += libusb
    SUBDIR += libvanessa_adt
    SUBDIR += libvanessa_logger
    SUBDIR += libvanessa_socket
    SUBDIR += libvc
    SUBDIR += libxalloc
    SUBDIR += libzvbi
    SUBDIR += lightning
    SUBDIR += lincvs
    SUBDIR += linux-allegro
    SUBDIR += linux-glib2
    SUBDIR += linux-js
    SUBDIR += linux-libglade
    SUBDIR += linux-runrev
    SUBDIR += linux-sdl12
    SUBDIR += linux_devtools
    SUBDIR += linux_kdump
    SUBDIR += linuxthreads
    SUBDIR += llvm
    SUBDIR += log4c
    SUBDIR += log4cplus
    SUBDIR += log4cpp
    SUBDIR += log4cxx
    SUBDIR += log4j
    SUBDIR += log4sh
    SUBDIR += looks
    SUBDIR += lrmi
    SUBDIR += lwp
    SUBDIR += m17n-db
    SUBDIR += m17n-docs
    SUBDIR += m17n-lib
    SUBDIR += m4
    SUBDIR += m6811-binutils
    SUBDIR += m68k-rtems-binutils
    SUBDIR += m68k-rtems-g77
    SUBDIR += m68k-rtems-gcc
    SUBDIR += m68k-rtems-gdb
    SUBDIR += m68k-rtems-objc
    SUBDIR += make++
    SUBDIR += makedepend
    SUBDIR += makeplus
    SUBDIR += maketool
    SUBDIR += maven
    SUBDIR += maven2
    SUBDIR += memcheck
    SUBDIR += mercator
    SUBDIR += mercurial
    SUBDIR += meta-cvs
    SUBDIR += mico
    SUBDIR += mime
    SUBDIR += mimir
    SUBDIR += mingw
    SUBDIR += mingw-bin-msvcrt
    SUBDIR += mingw-binutils
    SUBDIR += mingw-gcc
    SUBDIR += mingw-opengl-headers
    SUBDIR += mingw32-bin-msvcrt
    SUBDIR += mingw32-binutils
    SUBDIR += mingw32-gcc
    SUBDIR += mips-rtems-binutils
    SUBDIR += mips-rtems-g77
    SUBDIR += mips-rtems-gcc
    SUBDIR += mips-rtems-gdb
    SUBDIR += mips-rtems-objc
    SUBDIR += mipsel-linux-binutils
    SUBDIR += mipsel-linux-gcc
    SUBDIR += mipsel-linux-kernel-headers
    SUBDIR += mk
    SUBDIR += mkcmd
    SUBDIR += mkmf
    SUBDIR += mm
    SUBDIR += mob
    SUBDIR += mono-tools
    SUBDIR += monodoc
    SUBDIR += monotone
    SUBDIR += motor
    SUBDIR += mpatrol
    SUBDIR += mph
    SUBDIR += mprof
    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 += netscape-java40
    SUBDIR += newfile
    SUBDIR += newt
    SUBDIR += ngpt
    SUBDIR += noweb
    SUBDIR += nspr
    SUBDIR += nx
    SUBDIR += oaf
    SUBDIR += obby
    SUBDIR += ocaml-camomile
    SUBDIR += ocaml-classes
    SUBDIR += ocaml-equeue
    SUBDIR += ocaml-event
    SUBDIR += ocaml-extlib
    SUBDIR += ocaml-findlib
    SUBDIR += ocaml-pcre
    SUBDIR += ocaml-sdl
    SUBDIR += ocaml-sem
    SUBDIR += ocaml-ulex
    SUBDIR += ocamlweb
    SUBDIR += ode
    SUBDIR += ode-devel
    SUBDIR += omniNotify
    SUBDIR += omniORB
    SUBDIR += oniguruma
    SUBDIR += open-beagle
    SUBDIR += openorb
    SUBDIR += openthreads
    SUBDIR += openzz
    SUBDIR += orbitcpp
    SUBDIR += oskit
    SUBDIR += ossp-al
    SUBDIR += ossp-cfg
    SUBDIR += ossp-ex
    SUBDIR += ossp-l2
    SUBDIR += ossp-val
    SUBDIR += ossp-var
    SUBDIR += ossp-xds
    SUBDIR += p4.el
    SUBDIR += p4api
    SUBDIR += p4db
    SUBDIR += p4delta
    SUBDIR += p4genpatch
    SUBDIR += p4v
    SUBDIR += p5-AI-Pathfinding-AStar
    SUBDIR += p5-Agent
    SUBDIR += p5-Algorithm-Accounting
    SUBDIR += p5-Algorithm-Annotate
    SUBDIR += p5-Algorithm-Bucketizer
    SUBDIR += p5-Algorithm-ChooseSubsets
    SUBDIR += p5-Algorithm-Cluster
    SUBDIR += p5-Algorithm-Dependency
    SUBDIR += p5-Algorithm-Diff
    SUBDIR += p5-Algorithm-Evolutionary
    SUBDIR += p5-Algorithm-Interval2Prefix
    SUBDIR += p5-Algorithm-LCS
    SUBDIR += p5-Algorithm-LUHN
    SUBDIR += p5-Algorithm-MDiff
    SUBDIR += p5-Algorithm-MarkovChain
    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-App-CLI
    SUBDIR += p5-App-Info
    SUBDIR += p5-AppConfig
    SUBDIR += p5-AppConfig-Std
    SUBDIR += p5-Array-Iterator
    SUBDIR += p5-Array-Window
    SUBDIR += p5-AtExit
    SUBDIR += p5-Attribute-Handlers
    SUBDIR += p5-Attribute-Handlers-Prospective
    SUBDIR += p5-Attribute-Persistent
    SUBDIR += p5-B-Deobfuscate
    SUBDIR += p5-B-Graph
    SUBDIR += p5-B-Keywords
    SUBDIR += p5-B-Size
    SUBDIR += p5-BFD
    SUBDIR += p5-BSD-Resource
    SUBDIR += p5-BSD-stat
    SUBDIR += p5-Bundle-Perl6
    SUBDIR += p5-C-Scan
    SUBDIR += p5-CPAN-DistnameInfo
    SUBDIR += p5-CPAN-Mini
    SUBDIR += p5-CPAN-YACSmoke
    SUBDIR += p5-CPANPLUS
    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-Carp-Assert
    SUBDIR += p5-Carp-Clan
    SUBDIR += p5-Carp-Datum
    SUBDIR += p5-Cdk
    SUBDIR += p5-Class-Accessor
    SUBDIR += p5-Class-Accessor-Chained
    SUBDIR += p5-Class-Accessor-Lvalue
    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-Container
    SUBDIR += p5-Class-Contract
    SUBDIR += p5-Class-Data-Accessor
    SUBDIR += p5-Class-Data-Inheritable
    SUBDIR += p5-Class-Date
    SUBDIR += p5-Class-Default
    SUBDIR += p5-Class-Delegation
    SUBDIR += p5-Class-ErrorHandler
    SUBDIR += p5-Class-Factory
    SUBDIR += p5-Class-Factory-Util
    SUBDIR += p5-Class-Fields
    SUBDIR += p5-Class-Generate
    SUBDIR += p5-Class-Gomor-Hash
    SUBDIR += p5-Class-Handle
    SUBDIR += p5-Class-Hook
    SUBDIR += p5-Class-ISA
    SUBDIR += p5-Class-Inner
    SUBDIR += p5-Class-Inspector
    SUBDIR += p5-Class-Loader
    SUBDIR += p5-Class-MakeMethods
    SUBDIR += p5-Class-MethodMaker
    SUBDIR += p5-Class-MethodMapper
    SUBDIR += p5-Class-NamedParms
    SUBDIR += p5-Class-ObjectTemplate
    SUBDIR += p5-Class-ObjectTemplate-DB
    SUBDIR += p5-Class-Observable
    SUBDIR += p5-Class-ParmList
    SUBDIR += p5-Class-ReturnValue
    SUBDIR += p5-Class-Roles
    SUBDIR += p5-Class-Singleton
    SUBDIR += p5-Class-Spiffy
    SUBDIR += p5-Class-StateMachine
    SUBDIR += p5-Class-Tangram
    SUBDIR += p5-Class-Throwable
    SUBDIR += p5-Class-Tom
    SUBDIR += p5-Class-Trigger
    SUBDIR += p5-Class-Virtual
    SUBDIR += p5-Class-WhiteHole
    SUBDIR += p5-Class-XPath
    SUBDIR += p5-Clone
    SUBDIR += p5-Commands-Guarded
    SUBDIR += p5-Config-Auto
    SUBDIR += p5-Config-Fast
    SUBDIR += p5-Config-General
    SUBDIR += p5-Config-IniFiles
    SUBDIR += p5-Config-Objective
    SUBDIR += p5-Config-Setting
    SUBDIR += p5-Config-Simple
    SUBDIR += p5-Config-Tiny
    SUBDIR += p5-ConfigReader
    SUBDIR += p5-ConfigReader-Simple
    SUBDIR += p5-Coro
    SUBDIR += p5-Curses
    SUBDIR += p5-Curses-Application
    SUBDIR += p5-Curses-Forms
    SUBDIR += p5-Curses-UI
    SUBDIR += p5-Curses-Widgets
    SUBDIR += p5-DB_File-Lock
    SUBDIR += p5-Danga-Socket
    SUBDIR += p5-Data-ACL
    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-Simple
    SUBDIR += p5-Data-Flow
    SUBDIR += p5-Data-HexDump
    SUBDIR += p5-Data-Hexdumper
    SUBDIR += p5-Data-Hierarchy
    SUBDIR += p5-Data-Lazy
    SUBDIR += p5-Data-Properties
    SUBDIR += p5-Data-Random
    SUBDIR += p5-Data-Serializer
    SUBDIR += p5-Data-ShowTable
    SUBDIR += p5-Data-Stag
    SUBDIR += p5-Data-Swap
    SUBDIR += p5-Data-Table
    SUBDIR += p5-Data-Taxonomy-Tags
    SUBDIR += p5-Data-TemporaryBag
    SUBDIR += p5-Data-TreeDumper
    SUBDIR += p5-Data-Types
    SUBDIR += p5-Data-UUID
    SUBDIR += p5-Date-Calc
    SUBDIR += p5-Date-DayOfWeek
    SUBDIR += p5-Date-Easter
    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-Christian
    SUBDIR += p5-DateTime-Calendar-FrenchRevolutionary
    SUBDIR += p5-DateTime-Calendar-Hebrew
    SUBDIR += p5-DateTime-Calendar-Julian
    SUBDIR += p5-DateTime-Calendar-Mayan
    SUBDIR += p5-DateTime-Calendar-Pataphysical
    SUBDIR += p5-DateTime-Event-Cron
    SUBDIR += p5-DateTime-Event-Easter
    SUBDIR += p5-DateTime-Event-ICal
    SUBDIR += p5-DateTime-Event-NameDay
    SUBDIR += p5-DateTime-Event-Random
    SUBDIR += p5-DateTime-Event-Recurrence
    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-Duration
    SUBDIR += p5-DateTime-Format-Epoch
    SUBDIR += p5-DateTime-Format-Excel
    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-Pg
    SUBDIR += p5-DateTime-Format-Roman
    SUBDIR += p5-DateTime-Format-Strptime
    SUBDIR += p5-DateTime-Format-W3CDTF
    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-Decision-ACL
    SUBDIR += p5-Devel-Arena
    SUBDIR += p5-Devel-Constants
    SUBDIR += p5-Devel-Cover
    SUBDIR += p5-Devel-Cycle
    SUBDIR += p5-Devel-DProf
    SUBDIR += p5-Devel-DProfPP
    SUBDIR += p5-Devel-Diagram
    SUBDIR += p5-Devel-Leak
    SUBDIR += p5-Devel-LeakTrace
    SUBDIR += p5-Devel-Modlist
    SUBDIR += p5-Devel-ObjectTracker
    SUBDIR += p5-Devel-PPPort
    SUBDIR += p5-Devel-Peek
    SUBDIR += p5-Devel-Pointer
    SUBDIR += p5-Devel-Profile
    SUBDIR += p5-Devel-Profiler
    SUBDIR += p5-Devel-SimpleTrace
    SUBDIR += p5-Devel-Size
    SUBDIR += p5-Devel-SmallProf
    SUBDIR += p5-Devel-StackTrace
    SUBDIR += p5-Devel-StealthDebug
    SUBDIR += p5-Devel-Symdump
    SUBDIR += p5-Devel-Trace
    SUBDIR += p5-Devel-TraceCalls
    SUBDIR += p5-Devel-ptkdb
    SUBDIR += p5-Dialog
    SUBDIR += p5-Encode
    SUBDIR += p5-Encode-compat
    SUBDIR += p5-Env-PS1
    SUBDIR += p5-Errno
    SUBDIR += p5-Event
    SUBDIR += p5-Exception-Class
    SUBDIR += p5-Exporter-Lite
    SUBDIR += p5-Exporter-Tidy
    SUBDIR += p5-ExtUtils-AutoInstall
    SUBDIR += p5-ExtUtils-CBuilder
    SUBDIR += p5-ExtUtils-Constant
    SUBDIR += p5-ExtUtils-Depends
    SUBDIR += p5-ExtUtils-MakeMaker
    SUBDIR += p5-ExtUtils-MakeMaker-Coverage
    SUBDIR += p5-ExtUtils-ParseXS
    SUBDIR += p5-ExtUtils-PkgConfig
    SUBDIR += p5-ExtUtils-XSBuilder
    SUBDIR += p5-FSA-Rules
    SUBDIR += p5-File-Append-TempFile
    SUBDIR += p5-File-BaseDir
    SUBDIR += p5-File-BasicFlock
    SUBDIR += p5-File-Binary
    SUBDIR += p5-File-Cache
    SUBDIR += p5-File-Copy-Recursive
    SUBDIR += p5-File-DirSync
    SUBDIR += p5-File-FTS
    SUBDIR += p5-File-Find-Rule
    SUBDIR += p5-File-Flat
    SUBDIR += p5-File-Flock
    SUBDIR += p5-File-Grep
    SUBDIR += p5-File-HomeDir
    SUBDIR += p5-File-Lock
    SUBDIR += p5-File-MMagic
    SUBDIR += p5-File-MimeInfo
    SUBDIR += p5-File-Modified
    SUBDIR += p5-File-NCopy
    SUBDIR += p5-File-NFSLock
    SUBDIR += p5-File-Path-Expand
    SUBDIR += p5-File-PathConvert
    SUBDIR += p5-File-Random
    SUBDIR += p5-File-ReadBackwards
    SUBDIR += p5-File-Remove
    SUBDIR += p5-File-ShareDir
    SUBDIR += p5-File-Slurp
    SUBDIR += p5-File-Sync
    SUBDIR += p5-File-Tail
    SUBDIR += p5-File-Temp
    SUBDIR += p5-File-Type
    SUBDIR += p5-File-chdir
    SUBDIR += p5-File-pushd
    SUBDIR += p5-FileHandle-Unget
    SUBDIR += p5-Filesys-Statvfs_Df
    SUBDIR += p5-Filesys-Virtual
    SUBDIR += p5-Filesys-Virtual-Plain
    SUBDIR += p5-Filter
    SUBDIR += p5-FreezeThaw
    SUBDIR += p5-Geo-ShapeFile
    SUBDIR += p5-Getargs-Long
    SUBDIR += p5-Getopt-ArgvFile
    SUBDIR += p5-Getopt-Declare
    SUBDIR += p5-Getopt-Long
    SUBDIR += p5-Getopt-Mixed
    SUBDIR += p5-Getopt-Popt
    SUBDIR += p5-Glib2
    SUBDIR += p5-Gnome2-GConf
    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-All
    SUBDIR += p5-IO-Capture
    SUBDIR += p5-IO-CaptureOutput
    SUBDIR += p5-IO-Digest
    SUBDIR += p5-IO-KQueue
    SUBDIR += p5-IO-LockedFile
    SUBDIR += p5-IO-Multiplex
    SUBDIR += p5-IO-NestedCapture
    SUBDIR += p5-IO-Pager
    SUBDIR += p5-IO-Prompt
    SUBDIR += p5-IO-String
    SUBDIR += p5-IO-Stty
    SUBDIR += p5-IO-Tee
    SUBDIR += p5-IO-Tty
    SUBDIR += p5-IO-Util
    SUBDIR += p5-IO-stringy
    SUBDIR += p5-IPC-Cache
    SUBDIR += p5-IPC-Cmd
    SUBDIR += p5-IPC-DirQueue
    SUBDIR += p5-IPC-Locker
    SUBDIR += p5-IPC-MM
    SUBDIR += p5-IPC-Run
    SUBDIR += p5-IPC-Run3
    SUBDIR += p5-IPC-ShareLite
    SUBDIR += p5-IPC-Shareable
    SUBDIR += p5-IPC-SharedCache
    SUBDIR += p5-Include
    SUBDIR += p5-Inline
    SUBDIR += p5-Inline-ASM
    SUBDIR += p5-Inline-CPP
    SUBDIR += p5-Inline-Filters
    SUBDIR += p5-Inline-Java
    SUBDIR += p5-Inline-Tcl
    SUBDIR += p5-Ioctl
    SUBDIR += p5-Iterator
    SUBDIR += p5-List-Cycle
    SUBDIR += p5-List-Group
    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-PGetText
    SUBDIR += p5-Locale-gettext
    SUBDIR += p5-Locale-libintl
    SUBDIR += p5-LockFile-Simple
    SUBDIR += p5-Log-Accounting-SVK
    SUBDIR += p5-Log-Agent
    SUBDIR += p5-Log-Agent-Logger
    SUBDIR += p5-Log-Dispatch
    SUBDIR += p5-Log-Dispatch-Config
    SUBDIR += p5-Log-Dispatch-FileRotate
    SUBDIR += p5-Log-Dispatch-Perl
    SUBDIR += p5-Log-Log4perl
    SUBDIR += p5-Log-TraceMessages
    SUBDIR += p5-Mac-FileSpec-Unixish
    SUBDIR += p5-Make
    SUBDIR += p5-Memoize
    SUBDIR += p5-Memoize-ExpireLRU
    SUBDIR += p5-Mknod
    SUBDIR += p5-Module-Build
    SUBDIR += p5-Module-CoreList
    SUBDIR += p5-Module-Find
    SUBDIR += p5-Module-Info
    SUBDIR += p5-Module-Info-File
    SUBDIR += p5-Module-Install
    SUBDIR += p5-Module-Load
    SUBDIR += p5-Module-Load-Conditional
    SUBDIR += p5-Module-Pluggable
    SUBDIR += p5-Module-Pluggable-Fast
    SUBDIR += p5-Module-Pluggable-Ordered
    SUBDIR += p5-Module-Refresh
    SUBDIR += p5-Module-Release
    SUBDIR += p5-Module-Reload
    SUBDIR += p5-Module-Reload-Sel
    SUBDIR += p5-Module-ScanDeps
    SUBDIR += p5-Module-Starter
    SUBDIR += p5-Module-Starter-PBP
    SUBDIR += p5-Module-Versions-Report
    SUBDIR += p5-NEXT
    SUBDIR += p5-Net-DBus
    SUBDIR += p5-OLE-Storage_Lite
    SUBDIR += p5-OOTools
    SUBDIR += p5-ORBit
    SUBDIR += p5-Object-Accessor
    SUBDIR += p5-Object-InsideOut
    SUBDIR += p5-Object-MultiType
    SUBDIR += p5-Object-Realize-Later
    SUBDIR += p5-Object-Signature
    SUBDIR += p5-P4
    SUBDIR += p5-P4-Client
    SUBDIR += p5-PAR
    SUBDIR += p5-PAR-Dist
    SUBDIR += p5-PCSC-Card
    SUBDIR += p5-POE
    SUBDIR += p5-POE-API-Hooks
    SUBDIR += p5-POE-API-Peek
    SUBDIR += p5-POE-Component-Child
    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-RSS
    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-PPerl
    SUBDIR += p5-PV
    SUBDIR += p5-PadWalker
    SUBDIR += p5-Parallel-ForkManager
    SUBDIR += p5-Params-CallbackRequest
    SUBDIR += p5-Params-Check
    SUBDIR += p5-Params-Util
    SUBDIR += p5-Params-Validate
    SUBDIR += p5-Parse-CPAN-Packages
    SUBDIR += p5-Parse-PerlConfig
    SUBDIR += p5-Parse-RecDescent
    SUBDIR += p5-Parse-Yapp
    SUBDIR += p5-ParseLex
    SUBDIR += p5-PatchReader
    SUBDIR += p5-PathTools
    SUBDIR += p5-Path-Class
    SUBDIR += p5-Penguin
    SUBDIR += p5-Penguin-Easy
    SUBDIR += p5-Perl6-Export
    SUBDIR += p5-Perl6-Form
    SUBDIR += p5-PerlIO-eol
    SUBDIR += p5-PerlIO-via-MD5
    SUBDIR += p5-PerlIO-via-dynamic
    SUBDIR += p5-PerlIO-via-symlink
    SUBDIR += p5-PerlMenu
    SUBDIR += p5-Pod-Coverage
    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-Project-Gantt
    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-Shellish
    SUBDIR += p5-Religion
    SUBDIR += p5-ResourcePool
    SUBDIR += p5-Resources
    SUBDIR += p5-Return-Value
    SUBDIR += p5-SDL
    SUBDIR += p5-SPOPS
    SUBDIR += p5-SSN-Validate
    SUBDIR += p5-SVN-ACL
    SUBDIR += p5-SVN-Mirror
    SUBDIR += p5-SVN-Notify
    SUBDIR += p5-SVN-Simple
    SUBDIR += p5-SVN-Web
    SUBDIR += p5-Search-Binary
    SUBDIR += p5-Set-Array
    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-Parser
    SUBDIR += p5-Smart-Comments
    SUBDIR += p5-Sort-Array
    SUBDIR += p5-Sort-ArrayOfArrays
    SUBDIR += p5-Sort-Key
    SUBDIR += p5-Sort-Key-DateTime
    SUBDIR += p5-Sort-Tree
    SUBDIR += p5-Sort-Versions
    SUBDIR += p5-Spiffy
    SUBDIR += p5-Spoon
    SUBDIR += p5-Storable
    SUBDIR += p5-String-Approx
    SUBDIR += p5-String-CRC32
    SUBDIR += p5-String-Checker
    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-Installer
    SUBDIR += p5-Sub-Name
    SUBDIR += p5-Sub-Override
    SUBDIR += p5-Sub-Uplevel
    SUBDIR += p5-Sys-Mmap
    SUBDIR += p5-System2
    SUBDIR += p5-Term-ANSIColor
    SUBDIR += p5-Term-ANSIScreen
    SUBDIR += p5-Term-Animation
    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-Test-Base
    SUBDIR += p5-Test-Class
    SUBDIR += p5-Test-ClassAPI
    SUBDIR += p5-Test-Cmd
    SUBDIR += p5-Test-Deep
    SUBDIR += p5-Test-Differences
    SUBDIR += p5-Test-Exception
    SUBDIR += p5-Test-File
    SUBDIR += p5-Test-File-Contents
    SUBDIR += p5-Test-Harness
    SUBDIR += p5-Test-Inline
    SUBDIR += p5-Test-LectroTest
    SUBDIR += p5-Test-LongString
    SUBDIR += p5-Test-Manifest
    SUBDIR += p5-Test-MockModule
    SUBDIR += p5-Test-MockObject
    SUBDIR += p5-Test-NoWarnings
    SUBDIR += p5-Test-Pod
    SUBDIR += p5-Test-Pod-Coverage
    SUBDIR += p5-Test-RandomResults
    SUBDIR += p5-Test-Reporter
    SUBDIR += p5-Test-Simple
    SUBDIR += p5-Test-Strict
    SUBDIR += p5-Test-SubCalls
    SUBDIR += p5-Test-Tester
    SUBDIR += p5-Test-Unit
    SUBDIR += p5-Test-WWW-Mechanize
    SUBDIR += p5-Test-WWW-Mechanize-Catalyst
    SUBDIR += p5-Test-Warn
    SUBDIR += p5-Test-XML
    SUBDIR += p5-Text-LevenshteinXS
    SUBDIR += p5-Text-vFile-asData
    SUBDIR += p5-Tie-Array-Sorted
    SUBDIR += p5-Tie-Cache
    SUBDIR += p5-Tie-DB_File-SplitHash
    SUBDIR += p5-Tie-DB_FileLock
    SUBDIR += p5-Tie-File
    SUBDIR += p5-Tie-FileLRUCache
    SUBDIR += p5-Tie-Hash-Sorted
    SUBDIR += p5-Tie-Hash-TwoWay
    SUBDIR += p5-Tie-IxHash
    SUBDIR += p5-Tie-ShareLite
    SUBDIR += p5-Tie-iCal
    SUBDIR += p5-Time-Duration
    SUBDIR += p5-Time-HiRes
    SUBDIR += p5-Time-Local
    SUBDIR += p5-Time-Object
    SUBDIR += p5-Time-Period
    SUBDIR += p5-Time-Piece
    SUBDIR += p5-Time-Piece-Range
    SUBDIR += p5-Time-modules
    SUBDIR += p5-TimeDate
    SUBDIR += p5-TraceFuncs
    SUBDIR += p5-Tree-Binary
    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-UNIVERSAL-can
    SUBDIR += p5-UNIVERSAL-exports
    SUBDIR += p5-UNIVERSAL-isa
    SUBDIR += p5-UNIVERSAL-moniker
    SUBDIR += p5-UNIVERSAL-require
    SUBDIR += p5-Unix-Statgrab
    SUBDIR += p5-User-Identity
    SUBDIR += p5-VCP
    SUBDIR += p5-VCP-Dest-svk
    SUBDIR += p5-VCP-Source-cvsbk
    SUBDIR += p5-VCP-autrijus
    SUBDIR += p5-VCS
    SUBDIR += p5-VCS-CVS
    SUBDIR += p5-Want
    SUBDIR += p5-XSLoader
    SUBDIR += p5-accessors
    SUBDIR += p5-base
    SUBDIR += p5-capitalization
    SUBDIR += p5-enum
    SUBDIR += p5-iCal-Parser
    SUBDIR += p5-mixin
    SUBDIR += p5-prefork
    SUBDIR += p5-version
    SUBDIR += p65
    SUBDIR += patch
    SUBDIR += pccts
    SUBDIR += pcl-cvs-emacs20
    SUBDIR += pcre
    SUBDIR += pcre++
    SUBDIR += pcre-utf8
    SUBDIR += pcsc-lite
    SUBDIR += pear
    SUBDIR += pear-Config
    SUBDIR += pear-Console_Getargs
    SUBDIR += pear-Console_Table
    SUBDIR += pear-Date
    SUBDIR += pear-Event_Dispatcher
    SUBDIR += pear-FSM
    SUBDIR += pear-HTML_BBCodeParser
    SUBDIR += pear-HTML_CSS
    SUBDIR += pear-HTML_Common
    SUBDIR += pear-HTML_Form
    SUBDIR += pear-HTML_Javascript
    SUBDIR += pear-HTML_Page2
    SUBDIR += pear-HTML_QuickForm
    SUBDIR += pear-HTML_QuickForm_Controller
    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-OLE
    SUBDIR += pear-PEAR_PackageFileManager
    SUBDIR += pear-PHPDoc
    SUBDIR += pear-PHPUnit
    SUBDIR += pear-PHPUnit2
    SUBDIR += pear-PHP_Beautifier
    SUBDIR += pear-PHP_Compat
    SUBDIR += pear-PHP_CompatInfo
    SUBDIR += pear-Pager
    SUBDIR += pear-Structures_DataGrid
    SUBDIR += pear-System_Command
    SUBDIR += pear-Text_Diff
    SUBDIR += pear-VFS
    SUBDIR += pear-Validate
    SUBDIR += pear-Var_Dump
    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-apd
    SUBDIR += pecl-operator
    SUBDIR += pecl-runkit
    SUBDIR += pecl-statgrab
    SUBDIR += pecl-svn
    SUBDIR += pedisassem
    SUBDIR += perforce
    SUBDIR += perltidy
    SUBDIR += pharmacy
    SUBDIR += php-dbg
    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-gettext
    SUBDIR += php5-ncurses
    SUBDIR += php5-pcntl
    SUBDIR += php5-pcre
    SUBDIR += php5-readline
    SUBDIR += php5-shmop
    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 += pinstall
    SUBDIR += pkgconfig
    SUBDIR += plan9port
    SUBDIR += ply
    SUBDIR += pmake
    SUBDIR += pmk
    SUBDIR += popt
    SUBDIR += portcheckout
    SUBDIR += portlet-api
    SUBDIR += portlint
    SUBDIR += portmk
    SUBDIR += porttools
    SUBDIR += poslib
    SUBDIR += powerpc-rtems-binutils
    SUBDIR += powerpc-rtems-g77
    SUBDIR += powerpc-rtems-gcc
    SUBDIR += powerpc-rtems-gdb
    SUBDIR += powerpc-rtems-objc
    SUBDIR += ppl
    SUBDIR += prcs
    SUBDIR += premake
    SUBDIR += preps-gui
    SUBDIR += prepstools
    SUBDIR += present
    SUBDIR += privman
    SUBDIR += projectcenter.app
    SUBDIR += prototype
    SUBDIR += psvn
    SUBDIR += pth
    SUBDIR += ptmalloc
    SUBDIR += ptypes
    SUBDIR += publib
    SUBDIR += pwlib
    SUBDIR += pwlib152
    SUBDIR += py-anonfunc
    SUBDIR += py-bison
    SUBDIR += py-celementtree
    SUBDIR += py-cheetah
    SUBDIR += py-ciphon
    SUBDIR += py-clientcookie
    SUBDIR += py-coro
    SUBDIR += py-ctypes
    SUBDIR += py-cxx
    SUBDIR += py-dateutil
    SUBDIR += py-dbus
    SUBDIR += py-dialog
    SUBDIR += py-elementtree
    SUBDIR += py-fam
    SUBDIR += py-fileutils
    SUBDIR += py-fortran
    SUBDIR += py-freebsd
    SUBDIR += py-game
    SUBDIR += py-gamin
    SUBDIR += py-getargs
    SUBDIR += py-gobject
    SUBDIR += py-grouch
    SUBDIR += py-icalendar
    SUBDIR += py-ice
    SUBDIR += py-istring
    SUBDIR += py-json-py
    SUBDIR += py-kid
    SUBDIR += py-kjbuckets
    SUBDIR += py-kqueue
    SUBDIR += py-ll-core
    SUBDIR += py-log4py
    SUBDIR += py-logging
    SUBDIR += py-logilab-common
    SUBDIR += py-mx-experimental
    SUBDIR += py-ncurses
    SUBDIR += py-omniorb
    SUBDIR += py-optik
    SUBDIR += py-orbit2
    SUBDIR += py-parsing
    SUBDIR += py-period
    SUBDIR += py-plex
    SUBDIR += py-pmock
    SUBDIR += py-pqueue
    SUBDIR += py-protocols
    SUBDIR += py-psyco
    SUBDIR += py-px
    SUBDIR += py-repl
    SUBDIR += py-resourcepackage
    SUBDIR += py-reverse
    SUBDIR += py-rlcompleter2
    SUBDIR += py-ro
    SUBDIR += py-roxlib
    SUBDIR += py-sendfile
    SUBDIR += py-setuptools
    SUBDIR += py-simpleparse
    SUBDIR += py-simpy
    SUBDIR += py-sip
    SUBDIR += py-spark
    SUBDIR += py-statgrab
    SUBDIR += py-tables
    SUBDIR += py-testgears
    SUBDIR += py-tconfpy
    SUBDIR += py-twisted
    SUBDIR += py-twistedCore
    SUBDIR += py-twistedFlow
    SUBDIR += py-twistedRunner
    SUBDIR += py-twistedXish
    SUBDIR += py-ui
    SUBDIR += py-unit
    SUBDIR += py-urwid
    SUBDIR += py-vmaps
    SUBDIR += py-xdg
    SUBDIR += py-xoltar-toolkit
    SUBDIR += py-yaml
    SUBDIR += py-zconfig
    SUBDIR += py-zopeInterface
    SUBDIR += py_otp_interface
    SUBDIR += pychecker
    SUBDIR += pylint
    SUBDIR += pyobfuscate
    SUBDIR += pymacs
    SUBDIR += pyrex
    SUBDIR += pyumlgraph
    SUBDIR += qca
    SUBDIR += qextmdi
    SUBDIR += qmake
    SUBDIR += qsa
    SUBDIR += qssl
    SUBDIR += ragel
    SUBDIR += raknet
    SUBDIR += rapidsvn
    SUBDIR += re2c
    SUBDIR += readline
    SUBDIR += regexx
    SUBDIR += regexxer
    SUBDIR += replay
    SUBDIR += rhtvision
    SUBDIR += rinfo
    SUBDIR += rlwrap
    SUBDIR += robodoc
    SUBDIR += root
    SUBDIR += root-doc
    SUBDIR += rote
    SUBDIR += rpc2
    SUBDIR += rtplib
    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-fam
    SUBDIR += ruby-filelock
    SUBDIR += ruby-filemagic
    SUBDIR += ruby-flexmock
    SUBDIR += ruby-gconf2
    SUBDIR += ruby-gemfinder
    SUBDIR += ruby-gems
    SUBDIR += ruby-gettext
    SUBDIR += ruby-glib2
    SUBDIR += ruby-gnomevfs
    SUBDIR += ruby-gnustep
    SUBDIR += ruby-inline
    SUBDIR += ruby-intl
    SUBDIR += ruby-io-reactor
    SUBDIR += ruby-jttui
    SUBDIR += ruby-libglade2
    SUBDIR += ruby-locale
    SUBDIR += ruby-metaruby
    SUBDIR += ruby-mmap
    SUBDIR += ruby-ncurses
    SUBDIR += ruby-p4
    SUBDIR += ruby-pcsc-lite
    SUBDIR += ruby-poll
    SUBDIR += ruby-property
    SUBDIR += ruby-racc
    SUBDIR += ruby-rbbr
    SUBDIR += ruby-rbison
    SUBDIR += ruby-rbprof
    SUBDIR += ruby-rbtree
    SUBDIR += ruby-rjudy
    SUBDIR += ruby-robjectteam
    SUBDIR += ruby-rrb
    SUBDIR += ruby-rreadline
    SUBDIR += ruby-rudl
    SUBDIR += ruby-sdl
    SUBDIR += ruby-setup.rb
    SUBDIR += ruby-slang
    SUBDIR += ruby-strongtyping
    SUBDIR += ruby-sysvipc
    SUBDIR += ruby-textbuf
    SUBDIR += ruby-tzfile
    SUBDIR += ruby-zoom
    SUBDIR += rubygem-activesupport
    SUBDIR += rubygem-needle
    SUBDIR += rubygem-rake
    SUBDIR += rubygem-rgl
    SUBDIR += rubygem-rscm
    SUBDIR += rubygem-stream
    SUBDIR += rubygem-transactionsimple
    SUBDIR += rudiments
    SUBDIR += rvi
    SUBDIR += rvm
    SUBDIR += safestr
    SUBDIR += scandoc
    SUBDIR += scons
    SUBDIR += scsh-install-lib
    SUBDIR += sdl12
    SUBDIR += sdl_ldbad
    SUBDIR += sdlmm
    SUBDIR += sdts++
    SUBDIR += sedsed
    SUBDIR += semantic
    SUBDIR += semantic-emacs20
    SUBDIR += sfio
    SUBDIR += sfslite
    SUBDIR += sfslite-dbg
    SUBDIR += sfslite-noopt
    SUBDIR += sgb
    SUBDIR += sgl
    SUBDIR += sh-rtems-binutils
    SUBDIR += sh-rtems-g77
    SUBDIR += sh-rtems-gcc
    SUBDIR += sh-rtems-gdb
    SUBDIR += sh-rtems-objc
    SUBDIR += shapelib
    SUBDIR += shmap
    SUBDIR += showgrammar
    SUBDIR += shtool
    SUBDIR += sigslot
    SUBDIR += silc-toolkit
    SUBDIR += simgear
    SUBDIR += simian
    SUBDIR += simpletest
    SUBDIR += simulavr
    SUBDIR += skalibs
    SUBDIR += smake
    SUBDIR += smc
    SUBDIR += smv
    SUBDIR += soup
    SUBDIR += sourcenav
    SUBDIR += sparc-rtems-binutils
    SUBDIR += sparc-rtems-g77
    SUBDIR += sparc-rtems-gcc
    SUBDIR += sparc-rtems-gdb
    SUBDIR += sparc-rtems-objc
    SUBDIR += spin
    SUBDIR += splint
    SUBDIR += st
    SUBDIR += stlfilt
    SUBDIR += stlport
    SUBDIR += stlport-icc
    SUBDIR += str
    SUBDIR += strace
    SUBDIR += styx
    SUBDIR += subclipse
    SUBDIR += subversion
    SUBDIR += subversion-perl
    SUBDIR += subversion-python
    SUBDIR += subversion-ruby
    SUBDIR += sunterlib
    SUBDIR += svk
    SUBDIR += swig11
    SUBDIR += swig13
    SUBDIR += swigruby
    SUBDIR += sysconftool
    SUBDIR += t1lib
    SUBDIR += tavrasm
    SUBDIR += tcl-memchan
    SUBDIR += tcl-neo
    SUBDIR += tcl-trf
    SUBDIR += tclcheck
    SUBDIR += tclcl
    SUBDIR += tclgetopts
    SUBDIR += tcllib
    SUBDIR += tclreadline
    SUBDIR += tcltls
    SUBDIR += tclxml
    SUBDIR += tdl
    SUBDIR += templ
    SUBDIR += terminality
    SUBDIR += tide
    SUBDIR += tigcc
    SUBDIR += tinylaf
    SUBDIR += tinyq
    SUBDIR += titano
    SUBDIR += tkcon
    SUBDIR += tkcvs
    SUBDIR += tkinspect
    SUBDIR += tkmerge
    SUBDIR += tkp4
    SUBDIR += tkref
    SUBDIR += tla
    SUBDIR += tmake
    SUBDIR += tnt
    SUBDIR += towitoko
    SUBDIR += tpasm
    SUBDIR += tpg
    SUBDIR += trio
    SUBDIR += tvision
    SUBDIR += uclmmbase
    SUBDIR += ucpp
    SUBDIR += upnp
    SUBDIR += upnp104
    SUBDIR += uppaal
    SUBDIR += ups-debug
    SUBDIR += ustl
    SUBDIR += valgrind
    SUBDIR += valgrind-snapshot
    SUBDIR += varconf
    SUBDIR += vb2c
    SUBDIR += viewcvs
    SUBDIR += vstr
    SUBDIR += vtcl
    SUBDIR += websvn
    SUBDIR += wftk
    SUBDIR += wfut
    SUBDIR += wininfo
    SUBDIR += wxGlade
    SUBDIR += xfc
    SUBDIR += xlslib
    SUBDIR += xmake
    SUBDIR += xparam
    SUBDIR += xtl
    SUBDIR += xtla
    SUBDIR += xwpe
    SUBDIR += xxgdb
    SUBDIR += xxl
    SUBDIR += yasm
    SUBDIR += z80-asm
    SUBDIR += zthread
    SUBDIR += zziplib

.include <bsd.port.subdir.mk>