blob: 9975c2954c8cfe4f18dbf1a9997890725cf1062a (
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
|
# $FreeBSD$
#
COMMENT = Ports related to the World Wide Web
SUBDIR += MT
SUBDIR += WebMagick
SUBDIR += abyssws
SUBDIR += adblock
SUBDIR += admuser
SUBDIR += adzap
SUBDIR += amphetadesk
SUBDIR += analog
SUBDIR += anyremote2html
SUBDIR += anyterm
SUBDIR += aolserver
SUBDIR += aolserver-xotcl
SUBDIR += apache-contrib
SUBDIR += apache-forrest
SUBDIR += apache-mode.el
SUBDIR += apache13
SUBDIR += apache13+ipv6
SUBDIR += apache13-modperl
SUBDIR += apache13-modssl
SUBDIR += apache13-modssl+ipv6
SUBDIR += apache13-ssl
SUBDIR += apache20
SUBDIR += apache22
SUBDIR += apache22-peruser-mpm
SUBDIR += apercu
SUBDIR += aria
SUBDIR += aria2
SUBDIR += aria2fe
SUBDIR += arora
SUBDIR += ashe
SUBDIR += asp2php
SUBDIR += asql
SUBDIR += asterisk-fop
SUBDIR += asterisk-gui
SUBDIR += asterisk-stat
SUBDIR += aswedit
SUBDIR += aswiki
SUBDIR += atutor
SUBDIR += august
SUBDIR += auth_ldap
SUBDIR += autoindex
SUBDIR += autoindex2
SUBDIR += awffull
SUBDIR += awstats
SUBDIR += axis
SUBDIR += b2evolution
SUBDIR += bacula-web
SUBDIR += bannerfilter
SUBDIR += bblog
SUBDIR += bins
SUBDIR += bk2site
SUBDIR += bk_edit
SUBDIR += bkmrkconv
SUBDIR += blogd
SUBDIR += blogsum
SUBDIR += bluefish
SUBDIR += boa
SUBDIR += bookmarkbridge
SUBDIR += bozohttpd
SUBDIR += bricolage
SUBDIR += bugmenot
SUBDIR += bugmenot-firefox
SUBDIR += c-icap
SUBDIR += cacheboy15-devel
SUBDIR += cacheboy16
SUBDIR += cadaver
SUBDIR += cakephp11
SUBDIR += cakephp12
SUBDIR += calamaris
SUBDIR += campsite
SUBDIR += castget
SUBDIR += caudium12
SUBDIR += caudium14
SUBDIR += cgi-lib
SUBDIR += cgi-lib.pl
SUBDIR += cgic
SUBDIR += cgicc
SUBDIR += cgichk
SUBDIR += cgihtml
SUBDIR += cgiparse
SUBDIR += cgiwrap
SUBDIR += checkbot
SUBDIR += cheetah
SUBDIR += chems
SUBDIR += cherokee
SUBDIR += chimera
SUBDIR += choqok
SUBDIR += chpasswd
SUBDIR += chtml
SUBDIR += cl-lml
SUBDIR += cl-lml-clisp
SUBDIR += cl-lml-sbcl
SUBDIR += claroline
SUBDIR += clearsilver
SUBDIR += clearsilver-python
SUBDIR += clickheat
SUBDIR += closure-compiler
SUBDIR += cmsmadesimple
SUBDIR += cntlm
SUBDIR += cocoon
SUBDIR += codeigniter
SUBDIR += comclear
SUBDIR += commonist
SUBDIR += contenido
SUBDIR += coppermine
SUBDIR += crawl
SUBDIR += crp
SUBDIR += css-mode.el
SUBDIR += cssed
SUBDIR += csstidy
SUBDIR += ctemplate
SUBDIR += cybercalendar
SUBDIR += dalbum
SUBDIR += dansguardian
SUBDIR += dansguardian-devel
SUBDIR += davical
SUBDIR += decss
SUBDIR += demoroniser
SUBDIR += dfileserver
SUBDIR += dhttpd
SUBDIR += diamanda
SUBDIR += dillo
SUBDIR += dillo-i18n
SUBDIR += dillo2
SUBDIR += docebo
SUBDIR += dojo
SUBDIR += dojo-shrinksafe
SUBDIR += dokeos
SUBDIR += dokuwiki
SUBDIR += dokuwiki-devel
SUBDIR += dotclear
SUBDIR += dotproject
SUBDIR += dotproject-devel
SUBDIR += dpsearch
SUBDIR += drood
SUBDIR += drraw
SUBDIR += drupal5
SUBDIR += drupal5-adsense
SUBDIR += drupal5-bluebreeze
SUBDIR += drupal5-bookreview
SUBDIR += drupal5-cck
SUBDIR += drupal5-disknode
SUBDIR += drupal5-google_analytics
SUBDIR += drupal5-i18n
SUBDIR += drupal5-imagecache
SUBDIR += drupal5-imagefield
SUBDIR += drupal5-insert-view
SUBDIR += drupal5-nice_menus
SUBDIR += drupal5-nodewords
SUBDIR += drupal5-securepages
SUBDIR += drupal5-simplenews
SUBDIR += drupal5-tagadelic
SUBDIR += drupal5-tapir
SUBDIR += drupal5-taxonomy_access
SUBDIR += drupal5-taxonomy_ticker
SUBDIR += drupal5-thickbox
SUBDIR += drupal5-tinymce
SUBDIR += drupal5-token
SUBDIR += drupal5-ubercart
SUBDIR += drupal5-ubrowser
SUBDIR += drupal5-views
SUBDIR += drupal5-workflow_ng
SUBDIR += drupal5-xmlsitemap
SUBDIR += drupal6
SUBDIR += drupal6-advanced_help
SUBDIR += drupal6-cck
SUBDIR += drupal6-geshifilter
SUBDIR += drupal6-google_analytics
SUBDIR += drupal6-menu_block
SUBDIR += drupal6-mimedetect
SUBDIR += drupal6-nice_menus
SUBDIR += drupal6-nodewords
SUBDIR += drupal6-page_title
SUBDIR += drupal6-pathauto
SUBDIR += drupal6-print
SUBDIR += drupal6-seo_checklist
SUBDIR += drupal6-tagadelic
SUBDIR += drupal6-token
SUBDIR += drupal6-views
SUBDIR += drupal6-webform
SUBDIR += drupal6-wysiwyg
SUBDIR += dtse
SUBDIR += dummyflash
SUBDIR += e107
SUBDIR += eaccelerator
SUBDIR += efront
SUBDIR += eldav.el
SUBDIR += elgg
SUBDIR += elinks
SUBDIR += elog
SUBDIR += emacs-w3m
SUBDIR += emacs-w3m-emacs21
SUBDIR += emacs-w3m-xemacs21-mule
SUBDIR += entrans
SUBDIR += epiphany
SUBDIR += epiphany-extensions
SUBDIR += erwn
SUBDIR += etoile-bookmarkkit
SUBDIR += etoile-mollusk
SUBDIR += etoile-rsskit
SUBDIR += eventum
SUBDIR += evolution-webcal
SUBDIR += extsm
SUBDIR += eyeos
SUBDIR += eyeos-themes
SUBDIR += fcgi
SUBDIR += feedjack
SUBDIR += feedonfeeds
SUBDIR += ffproxy
SUBDIR += fhttpd
SUBDIR += firefox
SUBDIR += firefox-i18n
SUBDIR += firefox-remote
SUBDIR += firefox3
SUBDIR += firefox3-i18n
SUBDIR += firefox3-devel
SUBDIR += firefox35
SUBDIR += firefox35-i18n
SUBDIR += flashplugin-mozilla
SUBDIR += flat-frog
SUBDIR += flickcurl
SUBDIR += flock
SUBDIR += flood
SUBDIR += fluxbb
SUBDIR += fluxcms
SUBDIR += fnord
SUBDIR += formication
SUBDIR += foswiki
SUBDIR += fpc-httpd13
SUBDIR += fpc-httpd20
SUBDIR += fpc-httpd22
SUBDIR += free-sa
SUBDIR += free-sa-devel
SUBDIR += freeway
SUBDIR += fswiki
SUBDIR += ftasv
SUBDIR += g-cows
SUBDIR += g-gcl
SUBDIR += gaeo
SUBDIR += gaeutilities
SUBDIR += gallery
SUBDIR += gallery2
SUBDIR += gallery3
SUBDIR += gatling
SUBDIR += gecko-mediaplayer
SUBDIR += gecko-sharp20
SUBDIR += geeklog
SUBDIR += geneweb
SUBDIR += geolizer
SUBDIR += geronimo
SUBDIR += getleft
SUBDIR += gforge
SUBDIR += gir-repository-webkit
SUBDIR += gist
SUBDIR += glibwww
SUBDIR += glpi
SUBDIR += gnome-user-share
SUBDIR += gnome-web-photo
SUBDIR += gnustep-ticker
SUBDIR += google-appengine
SUBDIR += google-sitemapgen
SUBDIR += goose
SUBDIR += grails
SUBDIR += gregarius
SUBDIR += groupoffice
SUBDIR += gstreamer-plugins-neon
SUBDIR += gtkhtml
SUBDIR += gtkhtml3
SUBDIR += gtkhtml38
SUBDIR += guile-www
SUBDIR += gurlchecker
SUBDIR += habari
SUBDIR += harvest
SUBDIR += hastymail
SUBDIR += havp
SUBDIR += helixplugin
SUBDIR += helma
SUBDIR += hiawatha
SUBDIR += hinventory-client
SUBDIR += horde-ansel
SUBDIR += horde-base
SUBDIR += horde-meta
SUBDIR += horde-passwd
SUBDIR += horde-trean
SUBDIR += horde-wicked
SUBDIR += htdump
SUBDIR += html2hdml
SUBDIR += html2wml
SUBDIR += htmlobject
SUBDIR += htmlpp
SUBDIR += http-analyze
SUBDIR += http_get
SUBDIR += http_load
SUBDIR += httpclient
SUBDIR += httpcore
SUBDIR += httpgrabber
SUBDIR += httptunnel
SUBDIR += httrack
SUBDIR += hudson
SUBDIR += hydra
SUBDIR += hypermail
SUBDIR += igal
SUBDIR += igal2
SUBDIR += ikiwiki
SUBDIR += ilias
SUBDIR += ilias3
SUBDIR += imgsizer
SUBDIR += impresscms
SUBDIR += indexme
SUBDIR += instiki
SUBDIR += interchange
SUBDIR += ismail
SUBDIR += iwebcal
SUBDIR += jakarta-jmeter
SUBDIR += jakarta-tomcat4
SUBDIR += jakarta-tomcat5
SUBDIR += jawstats
SUBDIR += jdresolve
SUBDIR += jericho-html
SUBDIR += jesred
SUBDIR += jetspeed
SUBDIR += jetty
SUBDIR += joomla
SUBDIR += joomla15
SUBDIR += jspacker
SUBDIR += jspwiki
SUBDIR += jtoolkit
SUBDIR += junkbuster
SUBDIR += kannel
SUBDIR += kazehakase
SUBDIR += kdedict
SUBDIR += kdewebdev
SUBDIR += kdewebdev4
SUBDIR += khtml2png
SUBDIR += knowledgekit
SUBDIR += kompozer
SUBDIR += larbin
SUBDIR += libapreq2
SUBDIR += libecap
SUBDIR += libepc
SUBDIR += libghttp
SUBDIR += libgtkhtml
SUBDIR += libmicrohttpd
SUBDIR += libwww
SUBDIR += libxul
SUBDIR += lifetype
SUBDIR += lightsquid
SUBDIR += lighttpd
SUBDIR += lilurl
SUBDIR += limesurvey
SUBDIR += linkcheck
SUBDIR += linkchecker
SUBDIR += linklint
SUBDIR += links
SUBDIR += links1
SUBDIR += linux-f10-flashplugin10
SUBDIR += linux-f8-flashplugin10
SUBDIR += linux-firefox
SUBDIR += linux-firefox-devel
SUBDIR += linux-flashplugin7
SUBDIR += linux-flashplugin9
SUBDIR += linux-flock
SUBDIR += linux-mozilla
SUBDIR += linux-mplayer-plugin
SUBDIR += linux-nvu
SUBDIR += linux-opera
SUBDIR += linux-seamonkey
SUBDIR += linux-seamonkey-devel
SUBDIR += linuxpluginwrapper
SUBDIR += lionwiki
SUBDIR += ljdeps
SUBDIR += ljdump
SUBDIR += ljpms
SUBDIR += ljsm
SUBDIR += llgal
SUBDIR += logtools
SUBDIR += lusca-head
SUBDIR += lws
SUBDIR += lynx
SUBDIR += lynx-current
SUBDIR += mahara
SUBDIR += mambo
SUBDIR += man2web
SUBDIR += mathopd
SUBDIR += mediawiki
SUBDIR += mediawiki112
SUBDIR += mediawiki113
SUBDIR += mediawiki114
SUBDIR += mediawiki16
SUBDIR += mergelog
SUBDIR += metacafe_dl
SUBDIR += mgstat
SUBDIR += mhonarc
SUBDIR += micro_httpd
SUBDIR += middleman
SUBDIR += midori
SUBDIR += mimetex
SUBDIR += mini_httpd
SUBDIR += mkapachepw
SUBDIR += mknmz-wwwoffle
SUBDIR += mmosaic
SUBDIR += mnogosearch
SUBDIR += mod_access_identd
SUBDIR += mod_access_referer
SUBDIR += mod_accesscookie
SUBDIR += mod_accounting
SUBDIR += mod_antiloris
SUBDIR += mod_auth_any
SUBDIR += mod_auth_cookie_mysql
SUBDIR += mod_auth_cookie_mysql2
SUBDIR += mod_auth_external
SUBDIR += mod_auth_external2
SUBDIR += mod_auth_form
SUBDIR += mod_auth_imap
SUBDIR += mod_auth_imap2
SUBDIR += mod_auth_kerb
SUBDIR += mod_auth_kerb2
SUBDIR += mod_auth_ldap
SUBDIR += mod_auth_mysql
SUBDIR += mod_auth_mysql2
SUBDIR += mod_auth_mysql_another
SUBDIR += mod_auth_openid
SUBDIR += mod_auth_pam
SUBDIR += mod_auth_pam2
SUBDIR += mod_auth_pgsql
SUBDIR += mod_auth_pgsql2
SUBDIR += mod_auth_pubtkt
SUBDIR += mod_auth_remote
SUBDIR += mod_auth_useragent
SUBDIR += mod_auth_xradius
SUBDIR += mod_authenticache
SUBDIR += mod_authn_sasl
SUBDIR += mod_authnz_external
SUBDIR += mod_authz_unixgroup
SUBDIR += mod_backhand
SUBDIR += mod_bandwidth
SUBDIR += mod_bf
SUBDIR += mod_blosxom
SUBDIR += mod_blowchunks
SUBDIR += mod_bunzip2
SUBDIR += mod_bw
SUBDIR += mod_cband
SUBDIR += mod_cfg_ldap
SUBDIR += mod_cgi_debug
SUBDIR += mod_chroot
SUBDIR += mod_clamav
SUBDIR += mod_color
SUBDIR += mod_cplusplus
SUBDIR += mod_curb
SUBDIR += mod_cvs
SUBDIR += mod_cvs2
SUBDIR += mod_dav
SUBDIR += mod_dnssd
SUBDIR += mod_domaintree
SUBDIR += mod_dtcl
SUBDIR += mod_encoding
SUBDIR += mod_evasive
SUBDIR += mod_extract_forwarded
SUBDIR += mod_extract_forwarded2
SUBDIR += mod_extract_forwarded_ap13
SUBDIR += mod_fastcgi
SUBDIR += mod_fcgid
SUBDIR += mod_fileiri
SUBDIR += mod_filter
SUBDIR += mod_flickr
SUBDIR += mod_geoip
SUBDIR += mod_geoip2
SUBDIR += mod_gzip
SUBDIR += mod_gzip2
SUBDIR += mod_h264_streaming
SUBDIR += mod_hosts_access
SUBDIR += mod_index_rss
SUBDIR += mod_jail
SUBDIR += mod_jk
SUBDIR += mod_jk-apache2
SUBDIR += mod_layout
SUBDIR += mod_layout2
SUBDIR += mod_layout22
SUBDIR += mod_limitipconn
SUBDIR += mod_limitipconn2
SUBDIR += mod_line_edit
SUBDIR += mod_lisp2
SUBDIR += mod_log_config-st
SUBDIR += mod_log_data
SUBDIR += mod_log_dbd
SUBDIR += mod_log_firstbyte
SUBDIR += mod_log_mysql
SUBDIR += mod_log_spread
SUBDIR += mod_log_sql
SUBDIR += mod_log_sql2
SUBDIR += mod_log_sql2-dtc
SUBDIR += mod_macro
SUBDIR += mod_macro2
SUBDIR += mod_macro22
SUBDIR += mod_memcache
SUBDIR += mod_mono
SUBDIR += mod_mp3
SUBDIR += mod_musicindex
SUBDIR += mod_mylo
SUBDIR += mod_ntlm
SUBDIR += mod_ntlm2
SUBDIR += mod_perl
SUBDIR += mod_perl2
SUBDIR += mod_proctitle
SUBDIR += mod_proxy_add_forward
SUBDIR += mod_proxy_html
SUBDIR += mod_proxy_xml
SUBDIR += mod_pubcookie
SUBDIR += mod_put
SUBDIR += mod_python
SUBDIR += mod_python3
SUBDIR += mod_realip
SUBDIR += mod_roaming
SUBDIR += mod_roaming2
SUBDIR += mod_rpaf
SUBDIR += mod_rpaf2
SUBDIR += mod_ruby
SUBDIR += mod_scgi
SUBDIR += mod_security
SUBDIR += mod_security21
SUBDIR += mod_sed
SUBDIR += mod_sequester
SUBDIR += mod_shapvh
SUBDIR += mod_sqlinclude
SUBDIR += mod_ticket
SUBDIR += mod_tidy
SUBDIR += mod_traf_thief
SUBDIR += mod_transform
SUBDIR += mod_trigger
SUBDIR += mod_tsunami
SUBDIR += mod_uid
SUBDIR += mod_vdbh
SUBDIR += mod_vhost_ldap
SUBDIR += mod_vhs
SUBDIR += mod_webapp
SUBDIR += mod_webkit
SUBDIR += mod_webobjects
SUBDIR += mod_wsgi
SUBDIR += mod_wsgi3
SUBDIR += mod_xmlns
SUBDIR += mod_xsendfile
SUBDIR += moinmoin
SUBDIR += momspider
SUBDIR += monkey
SUBDIR += moodle
SUBDIR += moonshine
SUBDIR += mozex
SUBDIR += mozilla
SUBDIR += mozplugger
SUBDIR += mplayer-plugin
SUBDIR += multisort
SUBDIR += mybb
SUBDIR += myfaces
SUBDIR += myghty
SUBDIR += mysar
SUBDIR += mysqlphp2postgres
SUBDIR += nanoblogger
SUBDIR += nanoblogger-extra
SUBDIR += nd
SUBDIR += neon26
SUBDIR += neon28
SUBDIR += neonpp
SUBDIR += neowebscript
SUBDIR += netoffice
SUBDIR += netrik
SUBDIR += netstiff
SUBDIR += netsurf
SUBDIR += newsbeuter
SUBDIR += newsfeed
SUBDIR += nginx
SUBDIR += nginx-devel
SUBDIR += notftp
SUBDIR += npapi-xine
SUBDIR += npc
SUBDIR += nscache
SUBDIR += nspluginwrapper
SUBDIR += nspluginwrapper-devel
SUBDIR += ocaml-net
SUBDIR += ocsigen
SUBDIR += ojs2
SUBDIR += oops
SUBDIR += openacs
SUBDIR += openacs-dotlrn
SUBDIR += openbravoerp
SUBDIR += opencart
SUBDIR += openvrml
SUBDIR += openx
SUBDIR += openxmldir
SUBDIR += opera
SUBDIR += opera-devel
SUBDIR += opera-linuxplugins
SUBDIR += orangehrm
SUBDIR += osb-browser
SUBDIR += osb-nrcit
SUBDIR += osb-nrcore
SUBDIR += oscommerce
SUBDIR += p5-AMF-Perl
SUBDIR += p5-Acme-Monta
SUBDIR += p5-AnyEvent-HTTP
SUBDIR += p5-AnyEvent-HTTPD
SUBDIR += p5-AnyEvent-ReverseHTTP
SUBDIR += p5-Apache-ASP
SUBDIR += p5-Apache-AddHostPath
SUBDIR += p5-Apache-Admin-Config
SUBDIR += p5-Apache-AntiSpam
SUBDIR += p5-Apache-Archive
SUBDIR += p5-Apache-AuthCookie
SUBDIR += p5-Apache-AuthTicket
SUBDIR += p5-Apache-AuthenCache
SUBDIR += p5-Apache-AuthenURL
SUBDIR += p5-Apache-AutoIndex
SUBDIR += p5-Apache-AxKit-Plugin-AddXSLParams-Request
SUBDIR += p5-Apache-Clean
SUBDIR += p5-Apache-Clean2
SUBDIR += p5-Apache-Compress
SUBDIR += p5-Apache-CompressClientFixup
SUBDIR += p5-Apache-ConfigFile
SUBDIR += p5-Apache-ConfigParser
SUBDIR += p5-Apache-DB
SUBDIR += p5-Apache-DBI
SUBDIR += p5-Apache-DBI-mp1
SUBDIR += p5-Apache-DBI-mp2
SUBDIR += p5-Apache-DebugInfo
SUBDIR += p5-Apache-DumpHeaders
SUBDIR += p5-Apache-Filter
SUBDIR += p5-Apache-Gallery
SUBDIR += p5-Apache-GopherHandler
SUBDIR += p5-Apache-Icon
SUBDIR += p5-Apache-Language
SUBDIR += p5-Apache-MP3
SUBDIR += p5-Apache-NNTPGateway
SUBDIR += p5-Apache-PageKit
SUBDIR += p5-Apache-ParseFormData
SUBDIR += p5-Apache-Peek
SUBDIR += p5-Apache-Profiler
SUBDIR += p5-Apache-Radius
SUBDIR += p5-Apache-Reload
SUBDIR += p5-Apache-SSI
SUBDIR += p5-Apache-Scoreboard
SUBDIR += p5-Apache-Session
SUBDIR += p5-Apache-Session-PHP
SUBDIR += p5-Apache-Session-SQLite3
SUBDIR += p5-Apache-Session-SharedMem
SUBDIR += p5-Apache-Session-Wrapper
SUBDIR += p5-Apache-SessionX
SUBDIR += p5-Apache-Singleton
SUBDIR += p5-Apache-SubProcess
SUBDIR += p5-Apache-Template
SUBDIR += p5-Apache-Test
SUBDIR += p5-Apache2-Scoreboard
SUBDIR += p5-ApacheBench
SUBDIR += p5-App-Nopaste
SUBDIR += p5-Ark
SUBDIR += p5-AxKit
SUBDIR += p5-AxKit-XSP-Cookie
SUBDIR += p5-AxKit-XSP-ESQL
SUBDIR += p5-AxKit-XSP-Exception
SUBDIR += p5-AxKit-XSP-IfParam
SUBDIR += p5-AxKit-XSP-Param
SUBDIR += p5-AxKit-XSP-PerForm
SUBDIR += p5-AxKit-XSP-Sendmail
SUBDIR += p5-AxKit-XSP-Util
SUBDIR += p5-AxKit-XSP-WebUtils
SUBDIR += p5-B-LexInfo
SUBDIR += p5-Bigtop
SUBDIR += p5-Bundle-Slash
SUBDIR += p5-Bundle-Sledge
SUBDIR += p5-Business-PayPal
SUBDIR += p5-Catalyst-Plugin-AutoCRUD
SUBDIR += p5-CGI-Ajax
SUBDIR += p5-CGI-Application
SUBDIR += p5-CGI-Application-Dispatch
SUBDIR += p5-CGI-Application-Dispatch-Server
SUBDIR += p5-CGI-Application-Plugin-AnyTemplate
SUBDIR += p5-CGI-Application-Plugin-Authentication
SUBDIR += p5-CGI-Application-Plugin-Authorization
SUBDIR += p5-CGI-Application-Plugin-AutoRunmode
SUBDIR += p5-CGI-Application-Plugin-ConfigAuto
SUBDIR += p5-CGI-Application-Plugin-DBH
SUBDIR += p5-CGI-Application-Plugin-DebugScreen
SUBDIR += p5-CGI-Application-Plugin-DevPopup
SUBDIR += p5-CGI-Application-Plugin-Forward
SUBDIR += p5-CGI-Application-Plugin-HTDot
SUBDIR += p5-CGI-Application-Plugin-HTMLPrototype
SUBDIR += p5-CGI-Application-Plugin-HtmlTidy
SUBDIR += p5-CGI-Application-Plugin-LinkIntegrity
SUBDIR += p5-CGI-Application-Plugin-LogDispatch
SUBDIR += p5-CGI-Application-Plugin-MessageStack
SUBDIR += p5-CGI-Application-Plugin-Redirect
SUBDIR += p5-CGI-Application-Plugin-Session
SUBDIR += p5-CGI-Application-Plugin-Stream
SUBDIR += p5-CGI-Application-Plugin-TT
SUBDIR += p5-CGI-Application-Plugin-ValidateRM
SUBDIR += p5-CGI-Application-Plugin-ViewCode
SUBDIR += p5-CGI-Application-Server
SUBDIR += p5-CGI-ArgChecker
SUBDIR += p5-CGI-Builder
SUBDIR += p5-CGI-Builder-TT2
SUBDIR += p5-CGI-Cache
SUBDIR += p5-CGI-Compress-Gzip
SUBDIR += p5-CGI-Cookie-Splitter
SUBDIR += p5-CGI-Cookie-XS
SUBDIR += p5-CGI-Deurl-XS
SUBDIR += p5-CGI-Ex
SUBDIR += p5-CGI-Expand
SUBDIR += p5-CGI-FCKeditor
SUBDIR += p5-CGI-FastTemplate
SUBDIR += p5-CGI-FormBuilder
SUBDIR += p5-CGI-Framework
SUBDIR += p5-CGI-Kwiki
SUBDIR += p5-CGI-Minimal
SUBDIR += p5-CGI-PSGI
SUBDIR += p5-CGI-Pager
SUBDIR += p5-CGI-Prototype
SUBDIR += p5-CGI-Response
SUBDIR += p5-CGI-SSI
SUBDIR += p5-CGI-Session
SUBDIR += p5-CGI-Session-ExpireSessions
SUBDIR += p5-CGI-Simple
SUBDIR += p5-CGI-SpeedyCGI
SUBDIR += p5-CGI-Untaint
SUBDIR += p5-CGI-Untaint-date
SUBDIR += p5-CGI-Untaint-email
SUBDIR += p5-CGI-Upload
SUBDIR += p5-CGI-Utils
SUBDIR += p5-CGI-XMLApplication
SUBDIR += p5-CGI-modules
SUBDIR += p5-CGI.pm
SUBDIR += p5-CGI_Lite
SUBDIR += p5-CSS-DOM
SUBDIR += p5-CSS-Inliner
SUBDIR += p5-Catalyst-Action-REST
SUBDIR += p5-Catalyst-Action-RenderView
SUBDIR += p5-Catalyst-Authentication-Credential-HTTP
SUBDIR += p5-Catalyst-Authentication-Store-DBIx-Class
SUBDIR += p5-Catalyst-Authentication-Store-LDAP
SUBDIR += p5-Catalyst-Component-ACCEPT_CONTEXT
SUBDIR += p5-Catalyst-Component-InstancePerContext
SUBDIR += p5-Catalyst-Controller-BindLex
SUBDIR += p5-Catalyst-Controller-FormBuilder
SUBDIR += p5-Catalyst-Controller-HTML-FormFu
SUBDIR += p5-Catalyst-Controller-RequestToken
SUBDIR += p5-Catalyst-Devel
SUBDIR += p5-Catalyst-Engine-Apache
SUBDIR += p5-Catalyst-Engine-HTTP-POE
SUBDIR += p5-Catalyst-Engine-HTTP-Prefork
SUBDIR += p5-Catalyst-Engine-PSGI
SUBDIR += p5-Catalyst-Enzyme
SUBDIR += p5-Catalyst-Example-InstantCRUD
SUBDIR += p5-Catalyst-Helper-Controller-Scaffold
SUBDIR += p5-Catalyst-Log-Log4perl
SUBDIR += p5-Catalyst-Manual
SUBDIR += p5-Catalyst-Model-Adaptor
SUBDIR += p5-Catalyst-Model-CDBI
SUBDIR += p5-Catalyst-Model-CDBI-Plain
SUBDIR += p5-Catalyst-Model-CDBI-Sweet
SUBDIR += p5-Catalyst-Model-DBIC
SUBDIR += p5-Catalyst-Model-DBIC-Plain
SUBDIR += p5-Catalyst-Model-DBIC-Schema
SUBDIR += p5-Catalyst-Model-DynamicAdaptor
SUBDIR += p5-Catalyst-Model-LDAP
SUBDIR += p5-Catalyst-Model-Oryx
SUBDIR += p5-Catalyst-Model-XML-Feed
SUBDIR += p5-Catalyst-Model-Xapian
SUBDIR += p5-Catalyst-Plugin-AtomServer
SUBDIR += p5-Catalyst-Plugin-Authentication
SUBDIR += p5-Catalyst-Plugin-Authentication-CDBI
SUBDIR += p5-Catalyst-Plugin-Authentication-OpenID
SUBDIR += p5-Catalyst-Plugin-Authentication-Store-DBIC
SUBDIR += p5-Catalyst-Plugin-Authentication-Store-Htpasswd
SUBDIR += p5-Catalyst-Plugin-Authorization-ACL
SUBDIR += p5-Catalyst-Plugin-Authorization-Roles
SUBDIR += p5-Catalyst-Plugin-AutoRestart
SUBDIR += p5-Catalyst-Plugin-Browser
SUBDIR += p5-Catalyst-Plugin-C3
SUBDIR += p5-Catalyst-Plugin-Cache
SUBDIR += p5-Catalyst-Plugin-Cache-FastMmap
SUBDIR += p5-Catalyst-Plugin-Cache-FileCache
SUBDIR += p5-Catalyst-Plugin-Cache-Memcached
SUBDIR += p5-Catalyst-Plugin-Cache-Memcached-Fast
SUBDIR += p5-Catalyst-Plugin-Cache-Store-FastMmap
SUBDIR += p5-Catalyst-Plugin-Captcha
SUBDIR += p5-Catalyst-Plugin-CommandLine
SUBDIR += p5-Catalyst-Plugin-ConfigLoader
SUBDIR += p5-Catalyst-Plugin-ConfigLoader-Environment
SUBDIR += p5-Catalyst-Plugin-CookiedSession
SUBDIR += p5-Catalyst-Plugin-DefaultEnd
SUBDIR += p5-Catalyst-Plugin-Email
SUBDIR += p5-Catalyst-Plugin-FillInForm
SUBDIR += p5-Catalyst-Plugin-FormBuilder
SUBDIR += p5-Catalyst-Plugin-FormCanary
SUBDIR += p5-Catalyst-Plugin-FormValidator
SUBDIR += p5-Catalyst-Plugin-FormValidator-Simple
SUBDIR += p5-Catalyst-Plugin-HTML-Widget
SUBDIR += p5-Catalyst-Plugin-I18N
SUBDIR += p5-Catalyst-Plugin-Log-Dispatch
SUBDIR += p5-Catalyst-Plugin-LogWarnings
SUBDIR += p5-Catalyst-Plugin-PageCache
SUBDIR += p5-Catalyst-Plugin-Params-Nested
SUBDIR += p5-Catalyst-Plugin-Pluggable
SUBDIR += p5-Catalyst-Plugin-Prototype
SUBDIR += p5-Catalyst-Plugin-RunAfterRequest
SUBDIR += p5-Catalyst-Plugin-Scheduler
SUBDIR += p5-Catalyst-Plugin-Server
SUBDIR += p5-Catalyst-Plugin-Session
SUBDIR += p5-Catalyst-Plugin-Session-FastMmap
SUBDIR += p5-Catalyst-Plugin-Session-State-Cookie
SUBDIR += p5-Catalyst-Plugin-Session-State-URI
SUBDIR += p5-Catalyst-Plugin-Session-Store-Cache
SUBDIR += p5-Catalyst-Plugin-Session-Store-DBI
SUBDIR += p5-Catalyst-Plugin-Session-Store-DBIC
SUBDIR += p5-Catalyst-Plugin-Session-Store-Delegate
SUBDIR += p5-Catalyst-Plugin-Session-Store-FastMmap
SUBDIR += p5-Catalyst-Plugin-Session-Store-File
SUBDIR += p5-Catalyst-Plugin-Session-Store-Memcached
SUBDIR += p5-Catalyst-Plugin-Session-Store-Memcached-Fast
SUBDIR += p5-Catalyst-Plugin-Setenv
SUBDIR += p5-Catalyst-Plugin-Singleton
SUBDIR += p5-Catalyst-Plugin-SmartURI
SUBDIR += p5-Catalyst-Plugin-StackTrace
SUBDIR += p5-Catalyst-Plugin-Static
SUBDIR += p5-Catalyst-Plugin-Static-Simple
SUBDIR += p5-Catalyst-Plugin-SubRequest
SUBDIR += p5-Catalyst-Plugin-Textile
SUBDIR += p5-Catalyst-Plugin-Unicode
SUBDIR += p5-Catalyst-Plugin-XMLRPC
SUBDIR += p5-Catalyst-Runtime
SUBDIR += p5-Catalyst-View-ClearSilver
SUBDIR += p5-Catalyst-View-Email
SUBDIR += p5-Catalyst-View-GraphViz
SUBDIR += p5-Catalyst-View-HTML-Template
SUBDIR += p5-Catalyst-View-HTML-Template-Compiled
SUBDIR += p5-Catalyst-View-JSON
SUBDIR += p5-Catalyst-View-Jemplate
SUBDIR += p5-Catalyst-View-Mason
SUBDIR += p5-Catalyst-View-RRDGraph
SUBDIR += p5-Catalyst-View-TT
SUBDIR += p5-Catalyst-View-TT-ControllerLocal
SUBDIR += p5-Catalyst-View-Templated
SUBDIR += p5-Catalyst-View-XSLT
SUBDIR += p5-CatalystX-Component-Traits
SUBDIR += p5-Class-DBI-FromForm
SUBDIR += p5-ClearSilver
SUBDIR += p5-Compress-LeadingBlankSpaces
SUBDIR += p5-Continuity
SUBDIR += p5-DBIx-Class-HTMLWidget
SUBDIR += p5-Data-TreeDumper-Renderer-DHTML
SUBDIR += p5-Data-Validate-URI
SUBDIR += p5-FAQ-OMatic
SUBDIR += p5-FCGI-Async
SUBDIR += p5-FCGI-ProcManager
SUBDIR += p5-FCGI-Spawn
SUBDIR += p5-FEAR-API
SUBDIR += p5-FastCGI
SUBDIR += p5-Feed-Find
SUBDIR += p5-File-Mork
SUBDIR += p5-Flickr-API
SUBDIR += p5-Flickr-Upload
SUBDIR += p5-Gantry
SUBDIR += p5-Geo-Caching
SUBDIR += p5-Gtk2-WebKit
SUBDIR += p5-Gungho
SUBDIR += p5-HTML-Adsense
SUBDIR += p5-HTML-Breadcrumbs
SUBDIR += p5-HTML-CalendarMonthSimple
SUBDIR += p5-HTML-Chunks
SUBDIR += p5-HTML-Clean
SUBDIR += p5-HTML-ContentExtractor
SUBDIR += p5-HTML-Diff
SUBDIR += p5-HTML-Display
SUBDIR += p5-HTML-Element-Extended
SUBDIR += p5-HTML-Element-Library
SUBDIR += p5-HTML-Encoding
SUBDIR += p5-HTML-ExtractContent
SUBDIR += p5-HTML-FillInForm
SUBDIR += p5-HTML-FillInForm-ForceUTF8
SUBDIR += p5-HTML-FormFu
SUBDIR += p5-HTML-FormFu-Model-DBIC
SUBDIR += p5-HTML-FormHandler
SUBDIR += p5-HTML-FromANSI
SUBDIR += p5-HTML-FromText
SUBDIR += p5-HTML-GenToc
SUBDIR += p5-HTML-GoogleMaps
SUBDIR += p5-HTML-Highlight
SUBDIR += p5-HTML-LinkExtractor
SUBDIR += p5-HTML-LinkList
SUBDIR += p5-HTML-Lint
SUBDIR += p5-HTML-Location
SUBDIR += p5-HTML-Macro
SUBDIR += p5-HTML-Mason
SUBDIR += p5-HTML-Pager
SUBDIR += p5-HTML-Parser
SUBDIR += p5-HTML-Perlinfo
SUBDIR += p5-HTML-PrettyPrinter
SUBDIR += p5-HTML-Prototype
SUBDIR += p5-HTML-Query
SUBDIR += p5-HTML-QuickCheck
SUBDIR += p5-HTML-RSSAutodiscovery
SUBDIR += p5-HTML-ResolveLink
SUBDIR += p5-HTML-RobotsMETA
SUBDIR += p5-HTML-Sanitizer
SUBDIR += p5-HTML-Scrubber
SUBDIR += p5-HTML-Seamstress
SUBDIR += p5-HTML-Selector-XPath
SUBDIR += p5-HTML-Shakan
SUBDIR += p5-HTML-SimpleLinkExtor
SUBDIR += p5-HTML-SimpleParse
SUBDIR += p5-HTML-StickyQuery
SUBDIR += p5-HTML-StickyQuery-DoCoMoGUID
SUBDIR += p5-HTML-Stream
SUBDIR += p5-HTML-Strip
SUBDIR += p5-HTML-StripScripts
SUBDIR += p5-HTML-StripScripts-Parser
SUBDIR += p5-HTML-Summary
SUBDIR += p5-HTML-Table
SUBDIR += p5-HTML-TableExtract
SUBDIR += p5-HTML-TableLayout
SUBDIR += p5-HTML-TableParser
SUBDIR += p5-HTML-TableTiler
SUBDIR += p5-HTML-TagCloud
SUBDIR += p5-HTML-TagCloud-Extended
SUBDIR += p5-HTML-TagParser
SUBDIR += p5-HTML-Tagset
SUBDIR += p5-HTML-Template
SUBDIR += p5-HTML-Template-Associate
SUBDIR += p5-HTML-Template-Compiled
SUBDIR += p5-HTML-Template-Expr
SUBDIR += p5-HTML-Template-HashWrapper
SUBDIR += p5-HTML-Template-JIT
SUBDIR += p5-HTML-Template-Pluggable
SUBDIR += p5-HTML-TokeParser-Simple
SUBDIR += p5-HTML-Tree
SUBDIR += p5-HTML-TreeBuilder-LibXML
SUBDIR += p5-HTML-TreeBuilder-XPath
SUBDIR += p5-HTML-Webmake
SUBDIR += p5-HTML-Widget
SUBDIR += p5-HTML-Widget-DBIC
SUBDIR += p5-HTML-Widgets-SelectLayers
SUBDIR += p5-HTML-WikiConverter
SUBDIR += p5-HTML-WikiConverter-DokuWiki
SUBDIR += p5-HTML-WikiConverter-GoogleCode
SUBDIR += p5-HTML-WikiConverter-Kwiki
SUBDIR += p5-HTML-WikiConverter-Markdown
SUBDIR += p5-HTML-WikiConverter-MediaWiki
SUBDIR += p5-HTML-WikiConverter-MoinMoin
SUBDIR += p5-HTML-WikiConverter-Oddmuse
SUBDIR += p5-HTML-WikiConverter-PbWiki
SUBDIR += p5-HTML-WikiConverter-PhpWiki
SUBDIR += p5-HTML-WikiConverter-PmWiki
SUBDIR += p5-HTML-WikiConverter-SnipSnap
SUBDIR += p5-HTML-WikiConverter-Socialtext
SUBDIR += p5-HTML-WikiConverter-TikiWiki
SUBDIR += p5-HTML-WikiConverter-UseMod
SUBDIR += p5-HTML-WikiConverter-WakkaWiki
SUBDIR += p5-HTML-WikiConverter-WikkaWiki
SUBDIR += p5-HTTP-Async
SUBDIR += p5-HTTP-Body
SUBDIR += p5-HTTP-BrowserDetect
SUBDIR += p5-HTTP-Cache-Transparent
SUBDIR += p5-HTTP-Cookies-Mozilla
SUBDIR += p5-HTTP-Cookies-iCab
SUBDIR += p5-HTTP-Cookies-w3m
SUBDIR += p5-HTTP-DAV
SUBDIR += p5-HTTP-Daemon-SSL
SUBDIR += p5-HTTP-Engine
SUBDIR += p5-HTTP-Engine-Middleware
SUBDIR += p5-HTTP-GHTTP
SUBDIR += p5-HTTP-HeaderParser-XS
SUBDIR += p5-HTTP-Headers-Fast
SUBDIR += p5-HTTP-Lite
SUBDIR += p5-HTTP-MHTTP
SUBDIR += p5-HTTP-MobileAgent
SUBDIR += p5-HTTP-MobileAgent-Plugin-Charset
SUBDIR += p5-HTTP-MobileAttribute
SUBDIR += p5-HTTP-Parser
SUBDIR += p5-HTTP-Parser-XS
SUBDIR += p5-HTTP-Proxy
SUBDIR += p5-HTTP-Recorder
SUBDIR += p5-HTTP-Request-AsCGI
SUBDIR += p5-HTTP-Request-Params
SUBDIR += p5-HTTP-Response-Encoding
SUBDIR += p5-HTTP-Router
SUBDIR += p5-HTTP-Server-Simple
SUBDIR += p5-HTTP-Server-Simple-Mason
SUBDIR += p5-HTTP-Server-Simple-Recorder
SUBDIR += p5-HTTP-Server-Simple-Static
SUBDIR += p5-HTTP-Session
SUBDIR += p5-HTTP-SimpleLinkChecker
SUBDIR += p5-HTTP-Size
SUBDIR += p5-HTTP-WebTest
SUBDIR += p5-HTTPD-Log-Filter
SUBDIR += p5-HTTPD-User-Manage
SUBDIR += p5-Handel
SUBDIR += p5-IMDB-Film
SUBDIR += p5-IMDB-Movie
SUBDIR += p5-Image-Delivery
SUBDIR += p5-Jemplate
SUBDIR += p5-Jifty
SUBDIR += p5-Kwiki
SUBDIR += p5-LWP-Authen-Wsse
SUBDIR += p5-LWP-ConnCache-MaxKeepAliveRequests
SUBDIR += p5-LWP-UserAgent-Determined
SUBDIR += p5-LWP-UserAgent-POE
SUBDIR += p5-LWP-UserAgent-WithCache
SUBDIR += p5-LWPx-ParanoidAgent
SUBDIR += p5-Markup-Perl
SUBDIR += p5-MasonX-Interp-WithCallbacks
SUBDIR += p5-MasonX-Profiler
SUBDIR += p5-MasonX-Request-WithApacheSession
SUBDIR += p5-MasonX-WebApp
SUBDIR += p5-Maypole
SUBDIR += p5-Maypole-Authentication-UserSessionCookie
SUBDIR += p5-Maypole-Component
SUBDIR += p5-MediaWiki
SUBDIR += p5-MediaWiki-API
SUBDIR += p5-Mojo
SUBDIR += p5-MojoMojo
SUBDIR += p5-Net-Akismet
SUBDIR += p5-Net-Amazon-AWIS
SUBDIR += p5-Net-FireEagle
SUBDIR += p5-Net-Flickr-API
SUBDIR += p5-Net-Flickr-Backup
SUBDIR += p5-Net-Flickr-RDF
SUBDIR += p5-Net-GeoPlanet
SUBDIR += p5-Net-Trac
SUBDIR += p5-Net-eBay
SUBDIR += p5-Newsletter
SUBDIR += p5-PHP-Session
SUBDIR += p5-PLP
SUBDIR += p5-POE-Component-Client-HTTP
SUBDIR += p5-POE-Component-Client-UserAgent
SUBDIR += p5-POE-Component-Server-HTTP
SUBDIR += p5-POE-Component-Server-HTTPServer
SUBDIR += p5-POE-Component-Server-SOAP
SUBDIR += p5-POE-Component-Server-SimpleHTTP
SUBDIR += p5-POE-Filter-HTTP-Parser
SUBDIR += p5-PSGI
SUBDIR += p5-ParallelUA
SUBDIR += p5-Path-Class-URI
SUBDIR += p5-Plack
SUBDIR += p5-Plack-Middleware-Deflater
SUBDIR += p5-Plack-Request
SUBDIR += p5-Plack-Server-AnyEvent
SUBDIR += p5-Plack-Server-Coro
SUBDIR += p5-Plack-Server-ReverseHTTP
SUBDIR += p5-Plack-Server-ServerSimple
SUBDIR += p5-PodToHTML
SUBDIR += p5-REST-Google-Apps-Provisioning
SUBDIR += p5-RT-Authen-ExternalAuth
SUBDIR += p5-RT-Client-REST
SUBDIR += p5-RT-Extension-LDAPImport
SUBDIR += p5-RT-Extension-SLA
SUBDIR += p5-RTx-Calendar
SUBDIR += p5-RTx-RightsMatrix
SUBDIR += p5-RTx-Shredder
SUBDIR += p5-RTx-Statistics
SUBDIR += p5-Reaction
SUBDIR += p5-SCGI
SUBDIR += p5-SRU
SUBDIR += p5-SWF-Chart
SUBDIR += p5-Sledge
SUBDIR += p5-Sledge-Plugin-CacheContent
SUBDIR += p5-Sledge-Plugin-Download
SUBDIR += p5-Sledge-Plugin-Dumper
SUBDIR += p5-Sledge-Plugin-HTML2HDML
SUBDIR += p5-Sledge-Plugin-Log
SUBDIR += p5-Sledge-Plugin-NoCache
SUBDIR += p5-Sledge-Plugin-SaveUpload
SUBDIR += p5-Sledge-Plugin-ScratchPad
SUBDIR += p5-Sledge-Plugin-SessionAutoCleanup
SUBDIR += p5-Sledge-Plugin-XSLT
SUBDIR += p5-Sledge-SessionManager-CookieStore
SUBDIR += p5-Sledge-Template-Expr
SUBDIR += p5-Squatting
SUBDIR += p5-Syntax-Highlight-HTML
SUBDIR += p5-Syntax-Highlight-Shell
SUBDIR += p5-Task-Catalyst
SUBDIR += p5-Template-Alloy
SUBDIR += p5-Template-GD
SUBDIR += p5-Template-Iterator-AlzaboWrapperCursor
SUBDIR += p5-Template-Multilingual
SUBDIR += p5-Template-Plugin-Class
SUBDIR += p5-Template-Plugin-Clickable
SUBDIR += p5-Template-Plugin-Clickable-Email
SUBDIR += p5-Template-Plugin-Comma
SUBDIR += p5-Template-Plugin-FillInForm
SUBDIR += p5-Template-Plugin-JSON
SUBDIR += p5-Template-Plugin-JavaScript
SUBDIR += p5-Template-Plugin-MP3
SUBDIR += p5-Template-Plugin-Markdown
SUBDIR += p5-Template-Plugin-Monta
SUBDIR += p5-Template-Plugin-Number-Format
SUBDIR += p5-Template-Plugin-Subst
SUBDIR += p5-Template-Plugin-VMethods
SUBDIR += p5-Template-Provider-Encoding
SUBDIR += p5-Template-Provider-FromDATA
SUBDIR += p5-Template-Timer
SUBDIR += p5-Template-Toolkit
SUBDIR += p5-Tenjin
SUBDIR += p5-Test-HTTP
SUBDIR += p5-Test-HTTP-Server-Simple
SUBDIR += p5-TestGen4Web-Runner
SUBDIR += p5-Text-Markdown-ApacheHandler
SUBDIR += p5-Tie-TinyURL
SUBDIR += p5-URI-Escape-XS
SUBDIR += p5-URI-Fetch
SUBDIR += p5-URI-ParseSearchString
SUBDIR += p5-URI-Sequin
SUBDIR += p5-URI-Title
SUBDIR += p5-URI-ToDisk
SUBDIR += p5-W3C-LinkChecker
SUBDIR += p5-W3C-LogValidator
SUBDIR += p5-WWW-AtMovies-TV
SUBDIR += p5-WWW-Babelfish
SUBDIR += p5-WWW-Baseball-NPB
SUBDIR += p5-WWW-Comic
SUBDIR += p5-WWW-Curl
SUBDIR += p5-WWW-DHL
SUBDIR += p5-WWW-Dilbert
SUBDIR += p5-WWW-Facebook-API
SUBDIR += p5-WWW-FreeProxy
SUBDIR += p5-WWW-Google-Calculator
SUBDIR += p5-WWW-Google-News
SUBDIR += p5-WWW-Google-News-TW
SUBDIR += p5-WWW-Google-Notebook
SUBDIR += p5-WWW-Google-PageRank
SUBDIR += p5-WWW-Google-Video
SUBDIR += p5-WWW-HatenaDiary
SUBDIR += p5-WWW-HatenaLogin
SUBDIR += p5-WWW-HatenaStar
SUBDIR += p5-WWW-IMDb
SUBDIR += p5-WWW-Link
SUBDIR += p5-WWW-Mechanize
SUBDIR += p5-WWW-Mechanize-CGI
SUBDIR += p5-WWW-Mechanize-Cached
SUBDIR += p5-WWW-Mechanize-DecodedContent
SUBDIR += p5-WWW-Mechanize-FormFiller
SUBDIR += p5-WWW-Mechanize-GZip
SUBDIR += p5-WWW-Mechanize-Meta
SUBDIR += p5-WWW-Mechanize-Pluggable
SUBDIR += p5-WWW-Mechanize-Plugin-phpBB
SUBDIR += p5-WWW-Mechanize-Shell
SUBDIR += p5-WWW-Mediawiki-Client
SUBDIR += p5-WWW-Mixi
SUBDIR += p5-WWW-Mixi-Scraper
SUBDIR += p5-WWW-Myspace
SUBDIR += p5-WWW-NicoVideo-Download
SUBDIR += p5-WWW-NioTV
SUBDIR += p5-WWW-OpenSVN
SUBDIR += p5-WWW-OpenSearch
SUBDIR += p5-WWW-Pastebin-PastebinCom-Create
SUBDIR += p5-WWW-Pastebin-RafbNet-Create
SUBDIR += p5-WWW-Plurk
SUBDIR += p5-WWW-Robot
SUBDIR += p5-WWW-RobotRules-Parser
SUBDIR += p5-WWW-Scraper-ISBN
SUBDIR += p5-WWW-Scraper-ISBN-Amazon_Driver
SUBDIR += p5-WWW-Scraper-ISBN-Driver
SUBDIR += p5-WWW-Scraper-ISBN-ORA_Driver
SUBDIR += p5-WWW-Scraper-ISBN-Record
SUBDIR += p5-WWW-Search
SUBDIR += p5-WWW-Search-AltaVista
SUBDIR += p5-WWW-Search-Google
SUBDIR += p5-WWW-Search-MSN
SUBDIR += p5-WWW-Shorten
SUBDIR += p5-WWW-Shorten-0rz
SUBDIR += p5-WWW-Shorten-Bitly
SUBDIR += p5-WWW-Shorten-KUSO
SUBDIR += p5-WWW-Shorten-isgd
SUBDIR += p5-WWW-SourceForge
SUBDIR += p5-WWW-Spinn3r
SUBDIR += p5-WWW-TV
SUBDIR += p5-WWW-TWSMS
SUBDIR += p5-WWW-TinySong
SUBDIR += p5-WWW-VenusEnvy
SUBDIR += p5-WWW-WebArchive
SUBDIR += p5-WWW-Wikipedia
SUBDIR += p5-WWW-Yandex-TIC
SUBDIR += p5-Web-Scraper
SUBDIR += p5-Web-Scraper-Config
SUBDIR += p5-WebService-Basecamp
SUBDIR += p5-WebService-Bloglines
SUBDIR += p5-WebService-BuzzurlAPI
SUBDIR += p5-WebService-CIA
SUBDIR += p5-WebService-Google-Sets
SUBDIR += p5-WebService-ISBNDB
SUBDIR += p5-WebService-MusicBrainz
SUBDIR += p5-WebService-NoPaste
SUBDIR += p5-WebService-Rakuten
SUBDIR += p5-WebService-Simple
SUBDIR += p5-WebService-Technorati
SUBDIR += p5-WebService-YouTube
SUBDIR += p5-WordPress-XMLRPC
SUBDIR += p5-Xango
SUBDIR += p5-Yahoo-Lifestyle
SUBDIR += p5-Yahoo-Search
SUBDIR += p5-ZConf-RSS
SUBDIR += p5-ZConf-RSS-GUI-GTK
SUBDIR += p5-chklinks
SUBDIR += p5-libapreq
SUBDIR += p5-libapreq-static
SUBDIR += p5-libapreq2
SUBDIR += p5-libservlet
SUBDIR += p5-libwww
SUBDIR += p5-pQuery
SUBDIR += p5-webservice-validator-css-w3c
SUBDIR += p5-webservice-validator-html-w3c
SUBDIR += paros
SUBDIR += peacock
SUBDIR += pear-HTML_AJAX
SUBDIR += pear-HTML_TagCloud
SUBDIR += pear-HTTP
SUBDIR += pear-HTTP_Client
SUBDIR += pear-HTTP_Download
SUBDIR += pear-HTTP_FloodControl
SUBDIR += pear-HTTP_Header
SUBDIR += pear-HTTP_Request
SUBDIR += pear-HTTP_Request2
SUBDIR += pear-HTTP_Server
SUBDIR += pear-HTTP_Session2
SUBDIR += pear-HTTP_Upload
SUBDIR += pear-HTTP_WebDAV_Client
SUBDIR += pear-HTTP_WebDAV_Server
SUBDIR += pear-Services_Amazon
SUBDIR += pear-Services_Amazon_S3
SUBDIR += pear-Services_Blogging
SUBDIR += pear-Services_Compete
SUBDIR += pear-Services_Delicious
SUBDIR += pear-Services_Digg
SUBDIR += pear-Services_Facebook
SUBDIR += pear-Services_GeoNames
SUBDIR += pear-Services_Google
SUBDIR += pear-Services_OpenSearch
SUBDIR += pear-Services_SharedBook
SUBDIR += pear-Services_TinyURL
SUBDIR += pear-Services_TwitPic
SUBDIR += pear-Services_W3C_CSSValidator
SUBDIR += pear-Services_W3C_HTMLValidator
SUBDIR += pear-Services_Yadis
SUBDIR += pear-Services_Yahoo
SUBDIR += pear-Services_urlTea
SUBDIR += pear-Structures_DataGrid_Renderer_Flexy
SUBDIR += pear-Structures_DataGrid_Renderer_Pager
SUBDIR += pear-Structures_DataGrid_Renderer_Smarty
SUBDIR += pear-Text_Wiki
SUBDIR += pear-UDDI
SUBDIR += pear-XML_GRDDL
SUBDIR += pebble
SUBDIR += pecl-APC
SUBDIR += pecl-amfext
SUBDIR += pecl-http
SUBDIR += pecl-pecl_http
SUBDIR += pecl-swish
SUBDIR += pecl-tidy
SUBDIR += perlbal
SUBDIR += pglogd
SUBDIR += photo_gallery
SUBDIR += php-dyn
SUBDIR += php-screw
SUBDIR += php-templates
SUBDIR += php4-session
SUBDIR += php5-session
SUBDIR += php5-tidy
SUBDIR += phpbb
SUBDIR += phpbb-devel
SUBDIR += phpbb3
SUBDIR += phpgedview
SUBDIR += phpmp
SUBDIR += phpmyfaq
SUBDIR += phprecipebook
SUBDIR += phproxy
SUBDIR += phpsysinfo
SUBDIR += phpsysinfo-dev
SUBDIR += phpwebapp
SUBDIR += phpwebgallery
SUBDIR += phpwiki
SUBDIR += phpwiki13
SUBDIR += pivot-weblog
SUBDIR += piwik
SUBDIR += planet
SUBDIR += pligg
SUBDIR += plone
SUBDIR += plone3
SUBDIR += plugger
SUBDIR += plugger-plugins-hubbe
SUBDIR += pmwiki
SUBDIR += pnews
SUBDIR += podcastamatic
SUBDIR += polipo
SUBDIR += pound
SUBDIR += prado
SUBDIR += preferential
SUBDIR += privoxy
SUBDIR += privoxy+ipv6
SUBDIR += pserv
SUBDIR += pubcookie-login-server
SUBDIR += publicfile
SUBDIR += pumperweb
SUBDIR += punbb
SUBDIR += pwebstats
SUBDIR += py-GinGin
SUBDIR += py-HTMLgen
SUBDIR += py-Lightbox
SUBDIR += py-WebError
SUBDIR += py-WebFlash
SUBDIR += py-WebTest
SUBDIR += py-albatross
SUBDIR += py-amf
SUBDIR += py-apachelog
SUBDIR += py-beaker
SUBDIR += py-beautifulsoup
SUBDIR += py-bottle
SUBDIR += py-cherrypy
SUBDIR += py-cherrypy-old
SUBDIR += py-clientform
SUBDIR += py-cssutils
SUBDIR += py-django
SUBDIR += py-django-devel
SUBDIR += py-django-registration
SUBDIR += py-django-tagging
SUBDIR += py-dtflickr
SUBDIR += py-ez_web
SUBDIR += py-fcgi
SUBDIR += py-feedfinder
SUBDIR += py-flup
SUBDIR += py-forgethtml
SUBDIR += py-formencode
SUBDIR += py-funkload
SUBDIR += py-html5lib
SUBDIR += py-httplib2
SUBDIR += py-imdbpy
SUBDIR += py-jonpy
SUBDIR += py-mechanize
SUBDIR += py-meld
SUBDIR += py-meld3
SUBDIR += py-mt
SUBDIR += py-nevow
SUBDIR += py-openssl-proxy
SUBDIR += py-paste
SUBDIR += py-pastedeploy
SUBDIR += py-pastescript
SUBDIR += py-postmarkup
SUBDIR += py-prewikka
SUBDIR += py-pullparser
SUBDIR += py-py-restclient
SUBDIR += py-pylons
SUBDIR += py-pyquery
SUBDIR += py-pysearch
SUBDIR += py-pywebdav
SUBDIR += py-qp
SUBDIR += py-qpy
SUBDIR += py-qt4-webkit
SUBDIR += py-recaptcha
SUBDIR += py-restclient
SUBDIR += py-routes
SUBDIR += py-scgi
SUBDIR += py-scriptaculous
SUBDIR += py-slimmer
SUBDIR += py-textile
SUBDIR += py-tgwebservices
SUBDIR += py-tornado
SUBDIR += py-turbodjango
SUBDIR += py-turbogears
SUBDIR += py-turbogears2
SUBDIR += py-turbosetup
SUBDIR += py-twistedWeb
SUBDIR += py-twistedWeb2
SUBDIR += py-urlgrabber
SUBDIR += py-urljr
SUBDIR += py-utidy
SUBDIR += py-webhelpers
SUBDIR += py-webob
SUBDIR += py-webunit
SUBDIR += py-webware
SUBDIR += py-webware-component
SUBDIR += py-wikitools
SUBDIR += py-wsgiauth
SUBDIR += py-wsgiref
SUBDIR += pyblosxom
SUBDIR += pyjamas
SUBDIR += pylot
SUBDIR += pyweblib
SUBDIR += qdecoder
SUBDIR += qt4-webkit
SUBDIR += quickie
SUBDIR += quixote
SUBDIR += red5
SUBDIR += redmine
SUBDIR += rejik
SUBDIR += rekonq
SUBDIR += reportmagic
SUBDIR += repos-style
SUBDIR += resin2
SUBDIR += resin3
SUBDIR += retawq
SUBDIR += rnews
SUBDIR += roundup
SUBDIR += rssowl
SUBDIR += rsstail
SUBDIR += rsstool
SUBDIR += rt36
SUBDIR += rt38
SUBDIR += ruboard
SUBDIR += ruby-amazon
SUBDIR += ruby-asp
SUBDIR += ruby-aws
SUBDIR += ruby-borges
SUBDIR += ruby-cruisecontrolrb
SUBDIR += ruby-div
SUBDIR += ruby-fcgi
SUBDIR += ruby-fcgiwrap
SUBDIR += ruby-google
SUBDIR += ruby-gtkhtml2
SUBDIR += ruby-gtkmozembed
SUBDIR += ruby-http-access
SUBDIR += ruby-nora
SUBDIR += ruby-tmpl
SUBDIR += ruby-wgettsv
SUBDIR += rubygem-actionpack
SUBDIR += rubygem-activeresource
SUBDIR += rubygem-addressable
SUBDIR += rubygem-amazon-ecs
SUBDIR += rubygem-bluecloth
SUBDIR += rubygem-erubis
SUBDIR += rubygem-feed-normalizer
SUBDIR += rubygem-haml
SUBDIR += rubygem-hpricot
SUBDIR += rubygem-htauth
SUBDIR += rubygem-httparty
SUBDIR += rubygem-httpclient
SUBDIR += rubygem-layout-yullio
SUBDIR += rubygem-maruku
SUBDIR += rubygem-mechanize
SUBDIR += rubygem-merb
SUBDIR += rubygem-mongrel
SUBDIR += rubygem-mongrel_cluster
SUBDIR += rubygem-nicovideo
SUBDIR += rubygem-passenger
SUBDIR += rubygem-rack
SUBDIR += rubygem-rails
SUBDIR += rubygem-rails-app-installer
SUBDIR += rubygem-redcloth
SUBDIR += rubygem-rfacebook
SUBDIR += rubygem-rfeedfinder
SUBDIR += rubygem-rubyfulsoup
SUBDIR += rubygem-scrapi
SUBDIR += rubygem-scrubyt
SUBDIR += rubygem-simple-rss
SUBDIR += rubygem-sinatra
SUBDIR += rubygem-staticmatic
SUBDIR += rubygem-taggable
SUBDIR += rubygem-thin
SUBDIR += rubygem-yapra
SUBDIR += runsomebrowser
SUBDIR += sakai
SUBDIR += samidare
SUBDIR += sams
SUBDIR += sarg
SUBDIR += sbox-dtc
SUBDIR += scloader
SUBDIR += screem
SUBDIR += script4rss
SUBDIR += seamonkey
SUBDIR += selenium
SUBDIR += serendipity
SUBDIR += serendipity-devel
SUBDIR += serf
SUBDIR += servlet-api
SUBDIR += session2
SUBDIR += shttpd
SUBDIR += sidplug
SUBDIR += simplog
SUBDIR += siteatschool
SUBDIR += sitebar
SUBDIR += sitecopy
SUBDIR += siteframe
SUBDIR += skytemplate
SUBDIR += slash
SUBDIR += smarty
SUBDIR += smb2www
SUBDIR += smb_auth
SUBDIR += snarf
SUBDIR += snownews
SUBDIR += spawn-fcgi
SUBDIR += spip
SUBDIR += spreadlogd
SUBDIR += sqstat
SUBDIR += squid
SUBDIR += squid30
SUBDIR += squid31
SUBDIR += squid_radius_auth
SUBDIR += squidguard
SUBDIR += squidpurge
SUBDIR += squidstats
SUBDIR += squidview
SUBDIR += squirm
SUBDIR += squishdot
SUBDIR += srg
SUBDIR += ssserver
SUBDIR += suphp
SUBDIR += surfraw
SUBDIR += swfdec-plugin
SUBDIR += swiggle
SUBDIR += swish++
SUBDIR += swish-e
SUBDIR += syndigator
SUBDIR += tclhttpd
SUBDIR += tclwebtest
SUBDIR += tdiary
SUBDIR += tdiary-devel
SUBDIR += tdom
SUBDIR += template_
SUBDIR += templatelite
SUBDIR += textpattern
SUBDIR += thttpd
SUBDIR += thumbnail_index
SUBDIR += tidy
SUBDIR += tidy-devel
SUBDIR += tidy-lib
SUBDIR += tikiwiki
SUBDIR += tinymce
SUBDIR += tinymce3
SUBDIR += tinyproxy
SUBDIR += tinytinyhttpd
SUBDIR += tomcat-native
SUBDIR += tomcat41
SUBDIR += tomcat55
SUBDIR += tomcat6
SUBDIR += trac
SUBDIR += trac-accountmanager
SUBDIR += trac-addcomment
SUBDIR += trac-advancedticketworkflow
SUBDIR += trac-batchmodify
SUBDIR += trac-bzr
SUBDIR += trac-calendar
SUBDIR += trac-ccselector
SUBDIR += trac-codetags
SUBDIR += trac-ctxtnavadd
SUBDIR += trac-customfieldadmin
SUBDIR += trac-customroadmap
SUBDIR += trac-down
SUBDIR += trac-email2trac
SUBDIR += trac-fullblog
SUBDIR += trac-gantt
SUBDIR += trac-gitplugin
SUBDIR += trac-graphviz
SUBDIR += trac-hierwiki
SUBDIR += trac-iniadmin
SUBDIR += trac-ldap
SUBDIR += trac-macropost
SUBDIR += trac-mastertickets
SUBDIR += trac-mercurial
SUBDIR += trac-multirepos
SUBDIR += trac-nav
SUBDIR += trac-navadd
SUBDIR += trac-pagelist
SUBDIR += trac-pagetopdf
SUBDIR += trac-pendingticket
SUBDIR += trac-privatetickets
SUBDIR += trac-pydotorgtheme
SUBDIR += trac-remind
SUBDIR += trac-revtree
SUBDIR += trac-robotstxt
SUBDIR += trac-simpleticket
SUBDIR += trac-spam-filter
SUBDIR += trac-tags
SUBDIR += trac-themeengine
SUBDIR += trac-ticketdelete
SUBDIR += trac-tocmacro
SUBDIR += trac-tweakui
SUBDIR += trac-wantedpages
SUBDIR += trac-webadmin
SUBDIR += trac-wikigoodies
SUBDIR += trac-wikinegotiator
SUBDIR += trac-wikinotification
SUBDIR += trac-wikirename
SUBDIR += trac-wikitemplates
SUBDIR += trac-wikitopdf
SUBDIR += trac-wysiwyg
SUBDIR += trac-xmlrpc
SUBDIR += transmission-web
SUBDIR += transproxy
SUBDIR += ttf2eot
SUBDIR += twhttpd
SUBDIR += twig
SUBDIR += twiki
SUBDIR += twiki-BehaviourContrib
SUBDIR += twiki-BlogAddOn
SUBDIR += twiki-BugzillaLinkPlugin
SUBDIR += twiki-ClassicSkin
SUBDIR += twiki-CommentPlugin
SUBDIR += twiki-EditTablePlugin
SUBDIR += twiki-EmptyPlugin
SUBDIR += twiki-GluePlugin
SUBDIR += twiki-InterwikiPlugin
SUBDIR += twiki-JSCalendarContrib
SUBDIR += twiki-LDAPPasswordChangerPlugin
SUBDIR += twiki-LdapContrib
SUBDIR += twiki-LdapNgPlugin
SUBDIR += twiki-MailerContrib
SUBDIR += twiki-MathModePlugin
SUBDIR += twiki-NewUserPlugin
SUBDIR += twiki-PatternSkin
SUBDIR += twiki-PreferencesPlugin
SUBDIR += twiki-RenderListPlugin
SUBDIR += twiki-SlideShowPlugin
SUBDIR += twiki-SmiliesPlugin
SUBDIR += twiki-SpreadSheetPlugin
SUBDIR += twiki-SubscribePlugin
SUBDIR += twiki-TWikiUserMappingContrib
SUBDIR += twiki-TablePlugin
SUBDIR += twiki-TagMePlugin
SUBDIR += twiki-TinyMCEPlugin
SUBDIR += twiki-TipsContrib
SUBDIR += twiki-TopicVarsPlugin
SUBDIR += twiki-TwistyContrib
SUBDIR += twiki-TwistyPlugin
SUBDIR += twiki-WysiwygPlugin
SUBDIR += twill
SUBDIR += typo
SUBDIR += typo3
SUBDIR += typolight
SUBDIR += udmsearch
SUBDIR += ump
SUBDIR += usermanager
SUBDIR += validator
SUBDIR += varnish
SUBDIR += vee
SUBDIR += videocache
SUBDIR += visitors
SUBDIR += vtiger
SUBDIR += vtiger-customerportal
SUBDIR += w3-4
SUBDIR += w3m
SUBDIR += w3m-img
SUBDIR += w3m-m17n
SUBDIR += w3m-m17n-img
SUBDIR += w3mir
SUBDIR += waccess
SUBDIR += wacko
SUBDIR += wadcomblog
SUBDIR += wb0
SUBDIR += wcol
SUBDIR += weave
SUBDIR += web-traceroute
SUBDIR += web2ldap
SUBDIR += webalizer
SUBDIR += webcalendar
SUBDIR += webcalendar-devel
SUBDIR += webcheck
SUBDIR += webcopy
SUBDIR += webcrawl
SUBDIR += webfs
SUBDIR += webglimpse
SUBDIR += webinject
SUBDIR += webkit-gtk2
SUBDIR += webkit-sharp
SUBDIR += weblint
SUBDIR += weblint++
SUBDIR += webobjects
SUBDIR += webpy
SUBDIR += webredirect
SUBDIR += webreport
SUBDIR += webresolve
SUBDIR += webserver
SUBDIR += webservices
SUBDIR += websh
SUBDIR += webstats
SUBDIR += webstone
SUBDIR += webstone-ssl
SUBDIR += wget4web
SUBDIR += wgetpaste
SUBDIR += wikicalc
SUBDIR += wikindx
SUBDIR += wiliki
SUBDIR += wml
SUBDIR += wnews
SUBDIR += woadaptor
SUBDIR += woadaptor-cgi
SUBDIR += woof
SUBDIR += wordpress
SUBDIR += wordpress-mu
SUBDIR += wsdlpull
SUBDIR += wsmake
SUBDIR += www6to4
SUBDIR += wwwcount
SUBDIR += wwwoffle
SUBDIR += wwwstat
SUBDIR += wyvern
SUBDIR += xapian-omega
SUBDIR += xaraya
SUBDIR += xcache
SUBDIR += xfce4-smartbookmark-plugin
SUBDIR += xist
SUBDIR += xitami
SUBDIR += xoops
SUBDIR += xpath2rss
SUBDIR += xpi-adblock
SUBDIR += xpi-adblock_plus
SUBDIR += xpi-autobrowse
SUBDIR += xpi-bookmarkdd
SUBDIR += xpi-clearfields
SUBDIR += xpi-close-all-tabs
SUBDIR += xpi-colorfultabs
SUBDIR += xpi-conkeror
SUBDIR += xpi-cookiesafe
SUBDIR += xpi-cssviewer
SUBDIR += xpi-customizegoogle
SUBDIR += xpi-cutemenus-crystalsvg
SUBDIR += xpi-dailymotiononwooztalk
SUBDIR += xpi-deepestsender
SUBDIR += xpi-deezeronwooztalk
SUBDIR += xpi-default_full_zoom_level
SUBDIR += xpi-delicious
SUBDIR += xpi-downthemall
SUBDIR += xpi-errorzilla
SUBDIR += xpi-fasterfox
SUBDIR += xpi-firebug
SUBDIR += xpi-firefox-showcase
SUBDIR += xpi-firefoxonwooztalk
SUBDIR += xpi-firemobilesimulator
SUBDIR += xpi-fission
SUBDIR += xpi-flashblock
SUBDIR += xpi-flashgot
SUBDIR += xpi-flatbmark
SUBDIR += xpi-forecastfox
SUBDIR += xpi-formfox
SUBDIR += xpi-foxmarks
SUBDIR += xpi-foxyproxy
SUBDIR += xpi-gbrain
SUBDIR += xpi-gbutts
SUBDIR += xpi-gmail-manager
SUBDIR += xpi-google-notebook
SUBDIR += xpi-googlevideoonwooztalk
SUBDIR += xpi-grab_and_drag
SUBDIR += xpi-greasemonkey
SUBDIR += xpi-hit-a-hint
SUBDIR += xpi-httpfox
SUBDIR += xpi-imagezoom
SUBDIR += xpi-imdbpreview
SUBDIR += xpi-imeemonwooztalk
SUBDIR += xpi-imglikeopera
SUBDIR += xpi-infolister
SUBDIR += xpi-informenter
SUBDIR += xpi-inline-google-definitions
SUBDIR += xpi-it_s_all_text
SUBDIR += xpi-jiwaonwooztalk
SUBDIR += xpi-joga
SUBDIR += xpi-jsview
SUBDIR += xpi-jv
SUBDIR += xpi-lastfmonwooztalk
SUBDIR += xpi-leechblock
SUBDIR += xpi-linkification
SUBDIR += xpi-live_http_headers
SUBDIR += xpi-live_pagerank
SUBDIR += xpi-locale-switcher
SUBDIR += xpi-menueditor
SUBDIR += xpi-mldonkey
SUBDIR += xpi-modify_headers
SUBDIR += xpi-mousegestures
SUBDIR += xpi-mozex
SUBDIR += xpi-mrtech-local-install
SUBDIR += xpi-neo-diggler
SUBDIR += xpi-no-referrer
SUBDIR += xpi-noscript
SUBDIR += xpi-num2web
SUBDIR += xpi-passwordmaker
SUBDIR += xpi-pdf_download
SUBDIR += xpi-pencil
SUBDIR += xpi-permatabs
SUBDIR += xpi-preferential
SUBDIR += xpi-prism
SUBDIR += xpi-quick-locale-switcher
SUBDIR += xpi-quickproxy
SUBDIR += xpi-resurrectpages
SUBDIR += xpi-sameplace
SUBDIR += xpi-savegenpage
SUBDIR += xpi-scrapbook
SUBDIR += xpi-searchstatus
SUBDIR += xpi-server_switcher
SUBDIR += xpi-sessionmanager
SUBDIR += xpi-speed-dial
SUBDIR += xpi-splash
SUBDIR += xpi-statusbarclock
SUBDIR += xpi-stumbleupon
SUBDIR += xpi-stylish
SUBDIR += xpi-table2clipboard
SUBDIR += xpi-tabletools
SUBDIR += xpi-tabmixplus
SUBDIR += xpi-togglewordwrap
SUBDIR += xpi-torbutton
SUBDIR += xpi-twitterfox
SUBDIR += xpi-unplug
SUBDIR += xpi-urllink
SUBDIR += xpi-user_agent_switcher
SUBDIR += xpi-videodownloader
SUBDIR += xpi-vimeoonwooztalk
SUBDIR += xpi-vimperator
SUBDIR += xpi-web_developer
SUBDIR += xpi-wmlbrowser
SUBDIR += xpi-xhtml-ruby-support
SUBDIR += xpi-xmpp4moz
SUBDIR += xpi-xpcom-component-viewer
SUBDIR += xpi-youtubeonwooztalk
SUBDIR += xpi-yslow
SUBDIR += xshttpd
SUBDIR += xshttpd-devel
SUBDIR += xsp
SUBDIR += yabb
SUBDIR += yahoo-ui
SUBDIR += yanopaste
SUBDIR += yaws
SUBDIR += yii
SUBDIR += youtube_dl
SUBDIR += yuicompressor
SUBDIR += zend-framework
SUBDIR += zenphoto
SUBDIR += zerowait-httpd
SUBDIR += ziproxy
SUBDIR += znavigator
SUBDIR += zope
SUBDIR += zope-FileSystemSite
SUBDIR += zope-annotations
SUBDIR += zope-archetypes
SUBDIR += zope-btreefolder2
SUBDIR += zope-calendaring
SUBDIR += zope-cmf
SUBDIR += zope-cmfactionicons
SUBDIR += zope-cmfformcontroller
SUBDIR += zope-cmfforum
SUBDIR += zope-cmfphoto
SUBDIR += zope-cmfphotoalbum
SUBDIR += zope-cmfquickinstaller
SUBDIR += zope-coreblog
SUBDIR += zope-coreblog2
SUBDIR += zope-epoz
SUBDIR += zope-exuserfolder
SUBDIR += zope-formulator
SUBDIR += zope-generator
SUBDIR += zope-groupuserfolder
SUBDIR += zope-i18nlayer
SUBDIR += zope-kupu
SUBDIR += zope-mimetypesregistry
SUBDIR += zope-mindmapbbs
SUBDIR += zope-mysqluserfolder
SUBDIR += zope-parsedxml
SUBDIR += zope-placelesstranslationservice
SUBDIR += zope-plonelanguagetool
SUBDIR += zope-portaltransforms
SUBDIR += zope-proxyindex
SUBDIR += zope-silva
SUBDIR += zope-silvaviews
SUBDIR += zope-simpleblog
SUBDIR += zope-ttwtype
SUBDIR += zope-validation
SUBDIR += zope-xmlmethods
SUBDIR += zope-xmlwidgets
SUBDIR += zope-zmysqlda
SUBDIR += zope-zsyncer
SUBDIR += zope-zwiki
SUBDIR += zope210
SUBDIR += zope211
SUBDIR += zope28
SUBDIR += zope29
SUBDIR += zope3
.include <bsd.port.subdir.mk>
|