blob: 88ff3e26d013712ca4d36a6dd86cce9188936eb4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
|
# $FreeBSD$
#
COMMENT = Ports related to the World Wide Web
SUBDIR += MT
SUBDIR += R-cran-RgoogleMaps
SUBDIR += R-cran-Rpad
SUBDIR += R-cran-httpuv
SUBDIR += R-cran-scrapeR
SUBDIR += R-cran-shiny
SUBDIR += WebMagick
SUBDIR += abyssws
SUBDIR += ach
SUBDIR += admuser
SUBDIR += adzap
SUBDIR += ajaxplorer
SUBDIR += amphetadesk
SUBDIR += analog
SUBDIR += anyremote2html
SUBDIR += anyterm
SUBDIR += aolserver
SUBDIR += aolserver-xotcl
SUBDIR += apache-forrest
SUBDIR += apache-mode.el
SUBDIR += apache22
SUBDIR += apache22-event-mpm
SUBDIR += apache22-itk-mpm
SUBDIR += apache22-peruser-mpm
SUBDIR += apache22-worker-mpm
SUBDIR += apache24
SUBDIR += apercu
SUBDIR += aria
SUBDIR += aria2
SUBDIR += aria2fe
SUBDIR += arora
SUBDIR += asp2php
SUBDIR += asql
SUBDIR += asterisk-stat
SUBDIR += aswedit
SUBDIR += atutor
SUBDIR += august
SUBDIR += autoindex2
SUBDIR += awffull
SUBDIR += aws
SUBDIR += aws-demos
SUBDIR += awstats
SUBDIR += axis
SUBDIR += axis2
SUBDIR += b2evolution
SUBDIR += bacula-web
SUBDIR += baikal
SUBDIR += bannerfilter
SUBDIR += bblog
SUBDIR += bigbluebutton
SUBDIR += bins
SUBDIR += bk2site
SUBDIR += bkmrkconv
SUBDIR += blastbeat
SUBDIR += blogsum
SUBDIR += bluefish
SUBDIR += bluefish-devel
SUBDIR += boa
SUBDIR += bookmarkbridge
SUBDIR += bozohttpd
SUBDIR += bugmenot-firefox
SUBDIR += c-icap
SUBDIR += c-icap-modules
SUBDIR += cacheboy16
SUBDIR += cadaver
SUBDIR += cakephp11
SUBDIR += cakephp12
SUBDIR += cakephp13
SUBDIR += cakephp21
SUBDIR += cakephp22
SUBDIR += cakephp23
SUBDIR += calamaris
SUBDIR += cas
SUBDIR += castget
SUBDIR += caudium14
SUBDIR += cblog
SUBDIR += cgi-lib
SUBDIR += cgi-lib.pl
SUBDIR += cgic
SUBDIR += cgicc
SUBDIR += cgichk
SUBDIR += cgihtml
SUBDIR += cgiparse
SUBDIR += cgiwrap
SUBDIR += checkbot
SUBDIR += chems
SUBDIR += cherokee
SUBDIR += chimera
SUBDIR += choqok
SUBDIR += chpasswd
SUBDIR += chromium
SUBDIR += chtml
SUBDIR += ckeditor
SUBDIR += cl-lml
SUBDIR += cl-lml-clisp
SUBDIR += cl-lml-sbcl
SUBDIR += claroline
SUBDIR += clearsilver
SUBDIR += clearsilver-python
SUBDIR += closure-compiler
SUBDIR += closure-linter
SUBDIR += cmsmadesimple
SUBDIR += cntlm
SUBDIR += cocoon
SUBDIR += codeigniter
SUBDIR += coppermine
SUBDIR += cowboy
SUBDIR += cplanet
SUBDIR += crawl
SUBDIR += crp
SUBDIR += css-mode.el
SUBDIR += cssed
SUBDIR += csso
SUBDIR += csstidy
SUBDIR += ctemplate
SUBDIR += cutycapt
SUBDIR += dalbum
SUBDIR += dansguardian
SUBDIR += dansguardian-devel
SUBDIR += davical
SUBDIR += decss
SUBDIR += deforaos-surfer
SUBDIR += demoroniser
SUBDIR += dfileserver
SUBDIR += dhttpd
SUBDIR += diamanda
SUBDIR += dillo2
SUBDIR += docebo
SUBDIR += dojo
SUBDIR += dojo-shrinksafe
SUBDIR += dokeos
SUBDIR += dokuwiki
SUBDIR += dotclear
SUBDIR += dotproject
SUBDIR += download-gemist
SUBDIR += dpsearch
SUBDIR += drood
SUBDIR += drraw
SUBDIR += drupal6
SUBDIR += drupal6-advanced_help
SUBDIR += drupal6-cck
SUBDIR += drupal6-chaos
SUBDIR += drupal6-ckeditor
SUBDIR += drupal6-content_access
SUBDIR += drupal6-geshifilter
SUBDIR += drupal6-google_analytics
SUBDIR += drupal6-image
SUBDIR += drupal6-imce
SUBDIR += drupal6-menu_block
SUBDIR += drupal6-mimedetect
SUBDIR += drupal6-nice_menus
SUBDIR += drupal6-nodewords
SUBDIR += drupal6-page_title
SUBDIR += drupal6-panels
SUBDIR += drupal6-path_redirect
SUBDIR += drupal6-pathauto
SUBDIR += drupal6-print
SUBDIR += drupal6-seo_checklist
SUBDIR += drupal6-services
SUBDIR += drupal6-tagadelic
SUBDIR += drupal6-token
SUBDIR += drupal6-views
SUBDIR += drupal6-webform
SUBDIR += drupal6-wysiwyg
SUBDIR += drupal6-zeropoint
SUBDIR += drupal7
SUBDIR += drupal7-jailadmin
SUBDIR += drupal7-vulnscan
SUBDIR += drupal7-wysiwyg
SUBDIR += drush
SUBDIR += dtse
SUBDIR += dummyflash
SUBDIR += dwoo
SUBDIR += e107
SUBDIR += eaccelerator
SUBDIR += edbrowse
SUBDIR += efront
SUBDIR += egueb
SUBDIR += eldav.el
SUBDIR += elgg
SUBDIR += elinks
SUBDIR += elog
SUBDIR += emacs-w3m
SUBDIR += emacs-w3m-emacs21
SUBDIR += emacs-w3m-emacs22
SUBDIR += emacs-w3m-xemacs21-mule
SUBDIR += encode-explorer
SUBDIR += entrans
SUBDIR += ephemera
SUBDIR += epiphany
SUBDIR += epiphany-extensions
SUBDIR += erwn
SUBDIR += eventum
SUBDIR += evolution-webcal
SUBDIR += extjs
SUBDIR += extsm
SUBDIR += eyeos
SUBDIR += eyeos-themes
SUBDIR += fancybox
SUBDIR += faup
SUBDIR += fcgi
SUBDIR += fcgiwrap
SUBDIR += feedjack
SUBDIR += feedonfeeds
SUBDIR += ffproxy
SUBDIR += fhttpd
SUBDIR += fira-webfont
SUBDIR += firefox
SUBDIR += firefox-esr
SUBDIR += firefox-esr-i18n
SUBDIR += firefox-i18n
SUBDIR += firefox-remote
SUBDIR += flat-frog
SUBDIR += flickcurl
SUBDIR += flood
SUBDIR += flot
SUBDIR += fluxbb
SUBDIR += fluxcms
SUBDIR += fnord
SUBDIR += formication
SUBDIR += foswiki
SUBDIR += foswiki-ModPerlEngineContrib
SUBDIR += fpc-fastcgi
SUBDIR += fpc-httpd22
SUBDIR += free-sa
SUBDIR += free-sa-devel
SUBDIR += freeway
SUBDIR += fswiki
SUBDIR += ftasv
SUBDIR += fusionpbx
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 += get_flash_videos
SUBDIR += getleft
SUBDIR += gist
SUBDIR += glassfish
SUBDIR += glpi
SUBDIR += gnome-user-share
SUBDIR += gnome-web-photo
SUBDIR += google-appengine
SUBDIR += google-sitemapgen
SUBDIR += googlebook_dl
SUBDIR += goose
SUBDIR += grails
SUBDIR += gregarius
SUBDIR += groupoffice
SUBDIR += grr
SUBDIR += gstreamer-plugins-neon
SUBDIR += gstreamer1-plugins-neon
SUBDIR += gtkhtml3
SUBDIR += guile-www
SUBDIR += gurlchecker
SUBDIR += habari
SUBDIR += harvest
SUBDIR += hastymail
SUBDIR += hastymail2
SUBDIR += hastymail2-devel
SUBDIR += havp
SUBDIR += helma
SUBDIR += hiawatha
SUBDIR += hinventory-client
SUBDIR += horde-ansel
SUBDIR += horde-base
SUBDIR += horde-passwd
SUBDIR += horde-trean
SUBDIR += horde-wicked
SUBDIR += horde3-ansel
SUBDIR += horde3-base
SUBDIR += horde3-meta
SUBDIR += horde3-passwd
SUBDIR += horde3-trean
SUBDIR += horde3-wicked
SUBDIR += hotcrp
SUBDIR += hs-HTTP
SUBDIR += hs-activehs
SUBDIR += hs-authenticate
SUBDIR += hs-cgi
SUBDIR += hs-cookie
SUBDIR += hs-css-text
SUBDIR += hs-fastcgi
SUBDIR += hs-gitit
SUBDIR += hs-hS3
SUBDIR += hs-hamlet
SUBDIR += hs-happstack
SUBDIR += hs-happstack-server
SUBDIR += hs-heist
SUBDIR += hs-hjsmin
SUBDIR += hs-http-conduit
SUBDIR += hs-http-date
SUBDIR += hs-http-reverse-proxy
SUBDIR += hs-http-server
SUBDIR += hs-http-types
SUBDIR += hs-oeis
SUBDIR += hs-path-pieces
SUBDIR += hs-recaptcha
SUBDIR += hs-scgi
SUBDIR += hs-shakespeare
SUBDIR += hs-shakespeare-css
SUBDIR += hs-shakespeare-i18n
SUBDIR += hs-shakespeare-js
SUBDIR += hs-shakespeare-text
SUBDIR += hs-snap
SUBDIR += hs-snap-core
SUBDIR += hs-snap-server
SUBDIR += hs-url
SUBDIR += hs-wai
SUBDIR += hs-wai-app-static
SUBDIR += hs-wai-extra
SUBDIR += hs-wai-logger
SUBDIR += hs-wai-test
SUBDIR += hs-warp
SUBDIR += hs-webkit
SUBDIR += hs-xss-sanitize
SUBDIR += hs-yesod
SUBDIR += hs-yesod-auth
SUBDIR += hs-yesod-core
SUBDIR += hs-yesod-form
SUBDIR += hs-yesod-persistent
SUBDIR += hs-yesod-platform
SUBDIR += hs-yesod-routes
SUBDIR += hs-yesod-static
SUBDIR += hs-yesod-test
SUBDIR += htdigest
SUBDIR += htdump
SUBDIR += html2hdml
SUBDIR += html2wml
SUBDIR += htmlcompressor
SUBDIR += htmlcxx
SUBDIR += htmlobject
SUBDIR += htmlpp
SUBDIR += httest
SUBDIR += http-analyze
SUBDIR += http_get
SUBDIR += http_load
SUBDIR += http_post
SUBDIR += httpasyncclient
SUBDIR += httpclient
SUBDIR += httpcore
SUBDIR += httpsqs
SUBDIR += httptunnel
SUBDIR += httrack
SUBDIR += hudson
SUBDIR += hydra
SUBDIR += hypermail
SUBDIR += igal2
SUBDIR += ikiwiki
SUBDIR += ilias
SUBDIR += imgsizer
SUBDIR += impresscms
SUBDIR += interchange
SUBDIR += ismail
SUBDIR += iwebcal
SUBDIR += jawstats
SUBDIR += jdresolve
SUBDIR += jericho-html
SUBDIR += jesred
SUBDIR += jetty
SUBDIR += jinzora
SUBDIR += jmeter
SUBDIR += joomla15
SUBDIR += joomla25
SUBDIR += joomla31
SUBDIR += jspacker
SUBDIR += jspwiki
SUBDIR += jtoolkit
SUBDIR += junkbuster
SUBDIR += kannel
SUBDIR += kdewebdev4
SUBDIR += kpartsplugin
SUBDIR += kplaylist
SUBDIR += kwebkitpart
SUBDIR += larbin
SUBDIR += libapreq2
SUBDIR += libecap
SUBDIR += libepc
SUBDIR += libgtkhtml
SUBDIR += libhpack
SUBDIR += libhtp-suricata
SUBDIR += libmicrohttpd
SUBDIR += libwww
SUBDIR += libxul
SUBDIR += lifetype
SUBDIR += lightsquid
SUBDIR += lighttpd
SUBDIR += lighttpd-mod_geoip
SUBDIR += lighttpd-mod_h264_streaming
SUBDIR += lilurl
SUBDIR += limesurvey
SUBDIR += linkcheck
SUBDIR += linkchecker
SUBDIR += linklint
SUBDIR += links
SUBDIR += links-hacked
SUBDIR += links1
SUBDIR += linux-f10-flashplugin11
SUBDIR += linux-firefox
SUBDIR += linux-libgtkembedmoz
SUBDIR += linux-mplayer-plugin
SUBDIR += linux-opera
SUBDIR += linux-opera-devel
SUBDIR += linux-seamonkey
SUBDIR += lionwiki
SUBDIR += ljdeps
SUBDIR += ljdump
SUBDIR += llgal
SUBDIR += logtools
SUBDIR += luakit
SUBDIR += lusca-head
SUBDIR += lynx
SUBDIR += lynx-current
SUBDIR += magento
SUBDIR += mahara
SUBDIR += mambo
SUBDIR += man2web
SUBDIR += mathjax
SUBDIR += mathopd
SUBDIR += mediawiki119
SUBDIR += mediawiki120
SUBDIR += mediawiki121
SUBDIR += mergelog
SUBDIR += metacafe_dl
SUBDIR += mgstat
SUBDIR += mhonarc
SUBDIR += micro_httpd
SUBDIR += middleman
SUBDIR += midori
SUBDIR += mimetex
SUBDIR += mini_httpd
SUBDIR += mitmproxy
SUBDIR += mkapachepw
SUBDIR += mknmz-wwwoffle
SUBDIR += mnogosearch
SUBDIR += mochiweb
SUBDIR += mochiweb-basho
SUBDIR += mod_amazon_proxy
SUBDIR += mod_antiloris
SUBDIR += mod_asn
SUBDIR += mod_auth_cas
SUBDIR += mod_auth_cookie_mysql2
SUBDIR += mod_auth_external2
SUBDIR += mod_auth_form
SUBDIR += mod_auth_imap2
SUBDIR += mod_auth_kerb2
SUBDIR += mod_auth_mellon
SUBDIR += mod_auth_mysql2
SUBDIR += mod_auth_mysql_another
SUBDIR += mod_auth_openid
SUBDIR += mod_auth_pam2
SUBDIR += mod_auth_pgsql2
SUBDIR += mod_auth_pubtkt
SUBDIR += mod_auth_tkt
SUBDIR += mod_auth_xradius
SUBDIR += mod_authn_otp
SUBDIR += mod_authn_sasl
SUBDIR += mod_authnz_crowd
SUBDIR += mod_authnz_external22
SUBDIR += mod_authnz_external24
SUBDIR += mod_authz_unixgroup
SUBDIR += mod_backtrace
SUBDIR += mod_bw
SUBDIR += mod_cband
SUBDIR += mod_cfg_ldap
SUBDIR += mod_chroot
SUBDIR += mod_clamav
SUBDIR += mod_cplusplus
SUBDIR += mod_cvs2
SUBDIR += mod_dnssd
SUBDIR += mod_domaintree
SUBDIR += mod_encoding
SUBDIR += mod_evasive
SUBDIR += mod_extract_forwarded
SUBDIR += mod_fastcgi
SUBDIR += mod_fcgid
SUBDIR += mod_fileiri
SUBDIR += mod_flickr
SUBDIR += mod_ftp
SUBDIR += mod_geoip2
SUBDIR += mod_gnutls
SUBDIR += mod_gzip2
SUBDIR += mod_h264_streaming
SUBDIR += mod_hosts_access
SUBDIR += mod_jail
SUBDIR += mod_jk
SUBDIR += mod_layout22
SUBDIR += mod_limitipconn2
SUBDIR += mod_line_edit
SUBDIR += mod_log_config-st
SUBDIR += mod_log_dbd
SUBDIR += mod_log_firstbyte
SUBDIR += mod_log_mysql
SUBDIR += mod_log_sql2
SUBDIR += mod_log_sql2-dtc
SUBDIR += mod_macro22
SUBDIR += mod_memcache
SUBDIR += mod_memcache_block
SUBDIR += mod_mono
SUBDIR += mod_musicindex
SUBDIR += mod_myvhost
SUBDIR += mod_ntlm2
SUBDIR += mod_pagespeed
SUBDIR += mod_perl2
SUBDIR += mod_proctitle
SUBDIR += mod_proxy_html
SUBDIR += mod_proxy_xml
SUBDIR += mod_python3
SUBDIR += mod_qos
SUBDIR += mod_remoteip
SUBDIR += mod_reproxy
SUBDIR += mod_rivet
SUBDIR += mod_rpaf2
SUBDIR += mod_ruby
SUBDIR += mod_scgi
SUBDIR += mod_security
SUBDIR += mod_setenvifplus
SUBDIR += mod_spdy
SUBDIR += mod_tidy
SUBDIR += mod_tsa
SUBDIR += mod_uid
SUBDIR += mod_umask
SUBDIR += mod_vhost_ldap
SUBDIR += mod_vhs
SUBDIR += mod_webkit
SUBDIR += mod_whatkilledus
SUBDIR += mod_wsgi2
SUBDIR += mod_wsgi3
SUBDIR += mod_xml2enc
SUBDIR += mod_xmlns
SUBDIR += mod_xsendfile
SUBDIR += mohawk
SUBDIR += moinmoin
SUBDIR += monast
SUBDIR += mongrel2
SUBDIR += moodle
SUBDIR += moodle24
SUBDIR += moodle25
SUBDIR += mozplugger
SUBDIR += multisort
SUBDIR += multiwatch
SUBDIR += mybb
SUBDIR += myfaces
SUBDIR += mysar
SUBDIR += mysqlphp2postgres
SUBDIR += mythplugin-mythweb
SUBDIR += nanoblogger
SUBDIR += nanoblogger-extra
SUBDIR += nd
SUBDIR += neon29
SUBDIR += netoffice
SUBDIR += netrik
SUBDIR += netstiff
SUBDIR += netsurf
SUBDIR += newsbeuter
SUBDIR += nghttp2
SUBDIR += nginx
SUBDIR += nginx-devel
SUBDIR += nibbleblog
SUBDIR += node
SUBDIR += node-devel
SUBDIR += nostromo
SUBDIR += npapi-vlc
SUBDIR += npapi-xine
SUBDIR += npc
SUBDIR += npm
SUBDIR += nspluginwrapper
SUBDIR += ocaml-net
SUBDIR += ocsigen
SUBDIR += ojs2
SUBDIR += ompload
SUBDIR += oops
SUBDIR += openacs
SUBDIR += openacs-dotlrn
SUBDIR += opencart
SUBDIR += openx
SUBDIR += openxmldir
SUBDIR += opera
SUBDIR += opera-devel
SUBDIR += opera-linuxplugins
SUBDIR += orangehrm
SUBDIR += oscommerce
SUBDIR += otter-browser
SUBDIR += owncloud
SUBDIR += p5-AMF-Perl
SUBDIR += p5-Acme-Monta
SUBDIR += p5-Amon2
SUBDIR += p5-Amon2-Lite
SUBDIR += p5-Amon2-Plugin-LogDispatch
SUBDIR += p5-Amon2-Plugin-Web-MobileAgent
SUBDIR += p5-Any-Template
SUBDIR += p5-Any-URI-Escape
SUBDIR += p5-AnyEvent-HTTP
SUBDIR += p5-AnyEvent-HTTP-LWP-UserAgent
SUBDIR += p5-AnyEvent-HTTPD
SUBDIR += p5-AnyEvent-Mojo
SUBDIR += p5-AnyEvent-ReverseHTTP
SUBDIR += p5-AnyEvent-SCGI
SUBDIR += p5-Apache-ASP
SUBDIR += p5-Apache-Admin-Config
SUBDIR += p5-Apache-AuthCookie
SUBDIR += p5-Apache-AuthTicket
SUBDIR += p5-Apache-Clean2
SUBDIR += p5-Apache-ConfigFile
SUBDIR += p5-Apache-ConfigParser
SUBDIR += p5-Apache-DB
SUBDIR += p5-Apache-DBI
SUBDIR += p5-Apache-Gallery
SUBDIR += p5-Apache-Htgroup
SUBDIR += p5-Apache-LogFormat-Compiler
SUBDIR += p5-Apache-MP3
SUBDIR += p5-Apache-ParseFormData
SUBDIR += p5-Apache-Profiler
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-Apache2-SiteControl
SUBDIR += p5-ApacheBench
SUBDIR += p5-App-Nopaste
SUBDIR += p5-App-gist
SUBDIR += p5-Ark
SUBDIR += p5-Bigtop
SUBDIR += p5-Blog-Spam
SUBDIR += p5-Browser-Open
SUBDIR += p5-Business-PayPal
SUBDIR += p5-CGI-Ajax
SUBDIR += p5-CGI-Application
SUBDIR += p5-CGI-Application-Dispatch
SUBDIR += p5-CGI-Application-Dispatch-Server
SUBDIR += p5-CGI-Application-PSGI
SUBDIR += p5-CGI-Application-Plugin-AnyTemplate
SUBDIR += p5-CGI-Application-Plugin-Apache
SUBDIR += p5-CGI-Application-Plugin-Authentication
SUBDIR += p5-CGI-Application-Plugin-Authorization
SUBDIR += p5-CGI-Application-Plugin-AutoRunmode
SUBDIR += p5-CGI-Application-Plugin-Config-YAML
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-JSON
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-Compile
SUBDIR += p5-CGI-Compress-Gzip
SUBDIR += p5-CGI-Cookie-Splitter
SUBDIR += p5-CGI-Cookie-XS
SUBDIR += p5-CGI-Deurl-XS
SUBDIR += p5-CGI-Emulate-PSGI
SUBDIR += p5-CGI-EncryptForm
SUBDIR += p5-CGI-Enurl
SUBDIR += p5-CGI-Ex
SUBDIR += p5-CGI-Expand
SUBDIR += p5-CGI-ExtDirect
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-Struct
SUBDIR += p5-CGI-Thin
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-CIF-Client
SUBDIR += p5-CSS-DOM
SUBDIR += p5-CSS-Inliner
SUBDIR += p5-Catalyst-Action-REST
SUBDIR += p5-Catalyst-Action-RenderView
SUBDIR += p5-Catalyst-Action-Serialize-XML-Hash-LX
SUBDIR += p5-Catalyst-ActionRole-ACL
SUBDIR += p5-Catalyst-Authentication-Credential-HTTP
SUBDIR += p5-Catalyst-Authentication-Credential-OpenID
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-ActionRole
SUBDIR += p5-Catalyst-Controller-BindLex
SUBDIR += p5-Catalyst-Controller-FormBuilder
SUBDIR += p5-Catalyst-Controller-HTML-FormFu
SUBDIR += p5-Catalyst-Controller-RateLimit
SUBDIR += p5-Catalyst-Controller-RequestToken
SUBDIR += p5-Catalyst-Devel
SUBDIR += p5-Catalyst-DispatchType-Regex
SUBDIR += p5-Catalyst-Engine-Apache
SUBDIR += p5-Catalyst-Engine-HTTP-Prefork
SUBDIR += p5-Catalyst-Engine-PSGI
SUBDIR += p5-Catalyst-Enzyme
SUBDIR += p5-Catalyst-Helper-Controller-Scaffold
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-Plain
SUBDIR += p5-Catalyst-Model-DBIC-Schema
SUBDIR += p5-Catalyst-Model-DynamicAdaptor
SUBDIR += p5-Catalyst-Model-LDAP
SUBDIR += p5-Catalyst-Model-Memcached
SUBDIR += p5-Catalyst-Model-Oryx
SUBDIR += p5-Catalyst-Model-Tarantool
SUBDIR += p5-Catalyst-Model-XML-Feed
SUBDIR += p5-Catalyst-Model-Xapian
SUBDIR += p5-Catalyst-Model-Xapian10
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-Htpasswd
SUBDIR += p5-Catalyst-Plugin-Authorization-ACL
SUBDIR += p5-Catalyst-Plugin-Authorization-Roles
SUBDIR += p5-Catalyst-Plugin-AutoCRUD
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-Memcached
SUBDIR += p5-Catalyst-Plugin-Cache-Memcached-Fast
SUBDIR += p5-Catalyst-Plugin-Captcha
SUBDIR += p5-Catalyst-Plugin-ConfigLoader
SUBDIR += p5-Catalyst-Plugin-ConfigLoader-Environment
SUBDIR += p5-Catalyst-Plugin-CookiedSession
SUBDIR += p5-Catalyst-Plugin-DateTime
SUBDIR += p5-Catalyst-Plugin-DefaultEnd
SUBDIR += p5-Catalyst-Plugin-Email
SUBDIR += p5-Catalyst-Plugin-ErrorCatcher
SUBDIR += p5-Catalyst-Plugin-FillInForm
SUBDIR += p5-Catalyst-Plugin-FormBuilder
SUBDIR += p5-Catalyst-Plugin-FormValidator
SUBDIR += p5-Catalyst-Plugin-I18N
SUBDIR += p5-Catalyst-Plugin-Log-Dispatch
SUBDIR += p5-Catalyst-Plugin-Log-Handler
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-PerUser
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-StatusMessage
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-TraitFor-Controller-DBIC-DoesPaging
SUBDIR += p5-Catalyst-TraitFor-Request-BrowserDetect
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-REST-XML
SUBDIR += p5-Catalyst-View-RRDGraph
SUBDIR += p5-Catalyst-View-TT
SUBDIR += p5-Catalyst-View-TT-ControllerLocal
SUBDIR += p5-Catalyst-View-Template-Declare
SUBDIR += p5-Catalyst-View-Templated
SUBDIR += p5-Catalyst-View-XML-Feed
SUBDIR += p5-Catalyst-View-XML-Simple
SUBDIR += p5-Catalyst-View-XSLT
SUBDIR += p5-CatalystX-Component-Traits
SUBDIR += p5-CatalystX-InjectComponent
SUBDIR += p5-CatalystX-LeakChecker
SUBDIR += p5-CatalystX-Profile
SUBDIR += p5-CatalystX-REPL
SUBDIR += p5-CatalystX-RoleApplicator
SUBDIR += p5-CatalystX-SimpleLogin
SUBDIR += p5-Class-DBI-FromForm
SUBDIR += p5-ClearSilver
SUBDIR += p5-Compress-LeadingBlankSpaces
SUBDIR += p5-Continuity
SUBDIR += p5-Cookie-Baker
SUBDIR += p5-Corona
SUBDIR += p5-Dancer
SUBDIR += p5-Dancer-Logger-Log4perl
SUBDIR += p5-Dancer-Plugin-ExtDirect
SUBDIR += p5-Dancer-Plugin-Feed
SUBDIR += p5-Dancer-Plugin-SiteMap
SUBDIR += p5-Dancer-Plugin-ValidationClass
SUBDIR += p5-Dancer-Session-Cookie
SUBDIR += p5-Dancer-Template-Xslate
SUBDIR += p5-Dancer2
SUBDIR += p5-Data-TreeDumper-Renderer-DHTML
SUBDIR += p5-Data-Validate-URI
SUBDIR += p5-Emplacken
SUBDIR += p5-FAQ-OMatic
SUBDIR += p5-FCGI
SUBDIR += p5-FCGI-Async
SUBDIR += p5-FCGI-Client
SUBDIR += p5-FCGI-Engine
SUBDIR += p5-FCGI-ProcManager
SUBDIR += p5-FCGI-Spawn
SUBDIR += p5-FEAR-API
SUBDIR += p5-Facebook-Graph
SUBDIR += p5-Feed-Find
SUBDIR += p5-Feersum
SUBDIR += p5-File-Mork
SUBDIR += p5-Flea
SUBDIR += p5-Flickr-API
SUBDIR += p5-Flickr-Upload
SUBDIR += p5-Fliggy
SUBDIR += p5-Furl
SUBDIR += p5-FurlX-Coro
SUBDIR += p5-Gantry
SUBDIR += p5-Geo-Caching
SUBDIR += p5-Google-Code-Upload
SUBDIR += p5-Google-Search
SUBDIR += p5-Gtk2-WebKit
SUBDIR += p5-Gungho
SUBDIR += p5-GunghoX-FollowLinks
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-DOM
SUBDIR += p5-HTML-Declare
SUBDIR += p5-HTML-Defaultify
SUBDIR += p5-HTML-Diff
SUBDIR += p5-HTML-Display
SUBDIR += p5-HTML-Element-Extended
SUBDIR += p5-HTML-Element-Library
SUBDIR += p5-HTML-Element-Replacer
SUBDIR += p5-HTML-Encoding
SUBDIR += p5-HTML-ExtractContent
SUBDIR += p5-HTML-ExtractMain
SUBDIR += p5-HTML-Field
SUBDIR += p5-HTML-FillInForm
SUBDIR += p5-HTML-FillInForm-ForceUTF8
SUBDIR += p5-HTML-FillInForm-Lite
SUBDIR += p5-HTML-Form
SUBDIR += p5-HTML-FormFu
SUBDIR += p5-HTML-FormFu-Imager
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-GenerateUtil
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-Mason-PSGIHandler
SUBDIR += p5-HTML-MobileConverter
SUBDIR += p5-HTML-Pager
SUBDIR += p5-HTML-Parser
SUBDIR += p5-HTML-Parser-Simple
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-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-TableContentParser
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-Template-Pro
SUBDIR += p5-HTML-Toc
SUBDIR += p5-HTML-TokeParser-Simple
SUBDIR += p5-HTML-Tree
SUBDIR += p5-HTML-TreeBuilder-LibXML
SUBDIR += p5-HTML-TreeBuilder-XPath
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-CookieJar
SUBDIR += p5-HTTP-Cookies
SUBDIR += p5-HTTP-Cookies-Mozilla
SUBDIR += p5-HTTP-Cookies-iCab
SUBDIR += p5-HTTP-Cookies-w3m
SUBDIR += p5-HTTP-DAV
SUBDIR += p5-HTTP-Daemon
SUBDIR += p5-HTTP-Daemon-SSL
SUBDIR += p5-HTTP-Date
SUBDIR += p5-HTTP-Engine
SUBDIR += p5-HTTP-Engine-Middleware
SUBDIR += p5-HTTP-Exception
SUBDIR += p5-HTTP-HeaderParser-XS
SUBDIR += p5-HTTP-Headers-Fast
SUBDIR += p5-HTTP-Lite
SUBDIR += p5-HTTP-MHTTP
SUBDIR += p5-HTTP-Message
SUBDIR += p5-HTTP-MobileAgent
SUBDIR += p5-HTTP-MobileAgent-Plugin-Charset
SUBDIR += p5-HTTP-MobileAgent-Plugin-Locator
SUBDIR += p5-HTTP-Negotiate
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-Authen
SUBDIR += p5-HTTP-Server-Simple-Mason
SUBDIR += p5-HTTP-Server-Simple-PSGI
SUBDIR += p5-HTTP-Server-Simple-Recorder
SUBDIR += p5-HTTP-Server-Simple-Static
SUBDIR += p5-HTTP-Session
SUBDIR += p5-HTTP-Session-State-MobileAgentID
SUBDIR += p5-HTTP-Session-Store-DBI
SUBDIR += p5-HTTP-Session2
SUBDIR += p5-HTTP-SimpleLinkChecker
SUBDIR += p5-HTTP-Size
SUBDIR += p5-HTTP-Tiny
SUBDIR += p5-HTTP-WebTest
SUBDIR += p5-HTTPD-Log-Filter
SUBDIR += p5-HTTPD-User-Manage
SUBDIR += p5-I18N-AcceptLanguage
SUBDIR += p5-IMDB-Film
SUBDIR += p5-Image-Delivery
SUBDIR += p5-JE
SUBDIR += p5-Jemplate
SUBDIR += p5-Jifty
SUBDIR += p5-Kwiki
SUBDIR += p5-LWP-Authen-Negotiate
SUBDIR += p5-LWP-Authen-OAuth
SUBDIR += p5-LWP-Authen-Wsse
SUBDIR += p5-LWP-ConnCache-MaxKeepAliveRequests
SUBDIR += p5-LWP-MediaTypes
SUBDIR += p5-LWP-Online
SUBDIR += p5-LWP-Protocol-PSGI
SUBDIR += p5-LWP-Protocol-http10
SUBDIR += p5-LWP-Protocol-https
SUBDIR += p5-LWP-UserAgent-Determined
SUBDIR += p5-LWP-UserAgent-POE
SUBDIR += p5-LWP-UserAgent-WithCache
SUBDIR += p5-LWPx-ParanoidAgent
SUBDIR += p5-LWPx-TimedHTTP
SUBDIR += p5-Markup-Perl
SUBDIR += p5-Mason
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-Mobile-UserAgent
SUBDIR += p5-ModPerl-VersionUtil
SUBDIR += p5-Mojo-Server-FastCGI
SUBDIR += p5-MojoMojo
SUBDIR += p5-Mojolicious
SUBDIR += p5-Mojolicious-Plugin-Authentication
SUBDIR += p5-Mojolicious-Plugin-Database
SUBDIR += p5-Mojolicious-Plugin-Mongodb
SUBDIR += p5-Mojolicious-Plugin-YamlConfig
SUBDIR += p5-Monoceros
SUBDIR += p5-Mozilla-CA
SUBDIR += p5-Net-Akismet
SUBDIR += p5-Net-Amazon-AWIS
SUBDIR += p5-Net-Async-FastCGI
SUBDIR += p5-Net-FastCGI
SUBDIR += p5-Net-FireEagle
SUBDIR += p5-Net-Flickr-API
SUBDIR += p5-Net-Flickr-Backup
SUBDIR += p5-Net-Flickr-RDF
SUBDIR += p5-Net-FreshBooks-API
SUBDIR += p5-Net-GeoPlanet
SUBDIR += p5-Net-Plurk
SUBDIR += p5-Net-STF-Client
SUBDIR += p5-Net-Trac
SUBDIR += p5-Net-YAP
SUBDIR += p5-Net-eBay
SUBDIR += p5-Newsletter
SUBDIR += p5-Nginx-ReadBody
SUBDIR += p5-Nginx-Simple
SUBDIR += p5-PHP-Session
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-PSGI
SUBDIR += p5-POE-Component-Server-SOAP
SUBDIR += p5-POE-Component-Server-SimpleHTTP
SUBDIR += p5-POE-Filter-HTTP-Parser
SUBDIR += p5-POEx-Role-PSGIServer
SUBDIR += p5-PSGI
SUBDIR += p5-ParallelUA
SUBDIR += p5-Parse-HTTP-UserAgent
SUBDIR += p5-Path-Class-URI
SUBDIR += p5-Perlanet
SUBDIR += p5-Perlbal-Plugin-PSGI
SUBDIR += p5-Plack
SUBDIR += p5-Plack-App-Proxy
SUBDIR += p5-Plack-Builder-Conditionals
SUBDIR += p5-Plack-Handler-AnyEvent-HTTPD
SUBDIR += p5-Plack-Handler-AnyEvent-ReverseHTTP
SUBDIR += p5-Plack-Handler-AnyEvent-SCGI
SUBDIR += p5-Plack-Handler-CLI
SUBDIR += p5-Plack-Handler-SCGI
SUBDIR += p5-Plack-Middleware-AMF
SUBDIR += p5-Plack-Middleware-AddDefaultCharset
SUBDIR += p5-Plack-Middleware-Auth-Digest
SUBDIR += p5-Plack-Middleware-AutoRefresh
SUBDIR += p5-Plack-Middleware-ConsoleLogger
SUBDIR += p5-Plack-Middleware-Debug
SUBDIR += p5-Plack-Middleware-Deflater
SUBDIR += p5-Plack-Middleware-Expires
SUBDIR += p5-Plack-Middleware-File-Sass
SUBDIR += p5-Plack-Middleware-ForceEnv
SUBDIR += p5-Plack-Middleware-Header
SUBDIR += p5-Plack-Middleware-IEnosniff
SUBDIR += p5-Plack-Middleware-InteractiveDebugger
SUBDIR += p5-Plack-Middleware-JSConcat
SUBDIR += p5-Plack-Middleware-MemoryUsage
SUBDIR += p5-Plack-Middleware-Precompressed
SUBDIR += p5-Plack-Middleware-Reproxy
SUBDIR += p5-Plack-Middleware-ReverseProxy
SUBDIR += p5-Plack-Middleware-ServerStatus-Lite
SUBDIR += p5-Plack-Middleware-Session
SUBDIR += p5-Plack-Middleware-SocketIO
SUBDIR += p5-Plack-Middleware-Status
SUBDIR += p5-Plack-Middleware-Test-StashWarnings
SUBDIR += p5-Plack-Middleware-Throttle
SUBDIR += p5-Plack-Middleware-XForwardedFor
SUBDIR += p5-Plack-Server-Coro
SUBDIR += p5-Plack-Server-POE
SUBDIR += p5-Plack-Server-ReverseHTTP
SUBDIR += p5-Plack-Test-ExternalServer
SUBDIR += p5-PocketIO
SUBDIR += p5-Pod-Site
SUBDIR += p5-PodToHTML
SUBDIR += p5-Protocol-SocketIO
SUBDIR += p5-Protocol-WebSocket
SUBDIR += p5-Protocol-XMLRPC
SUBDIR += p5-REST-Client
SUBDIR += p5-REST-Google-Apps-Provisioning
SUBDIR += p5-RPC-ExtDirect
SUBDIR += p5-RT-Authen-ExternalAuth
SUBDIR += p5-RT-Client-REST
SUBDIR += p5-RT-Extension-LDAPImport
SUBDIR += p5-RT-Extension-MandatoryOnTransition
SUBDIR += p5-RT-Extension-SLA
SUBDIR += p5-RTx-Calendar
SUBDIR += p5-Reaction
SUBDIR += p5-Reddit
SUBDIR += p5-Rose-HTML-Objects
SUBDIR += p5-Router-Boom
SUBDIR += p5-Router-Simple
SUBDIR += p5-Router-Simple-Sinatraish
SUBDIR += p5-SCGI
SUBDIR += p5-SOAP-Transport-HTTP-Plack
SUBDIR += p5-SRU
SUBDIR += p5-STF-Dispatcher-PSGI
SUBDIR += p5-SWF-Chart
SUBDIR += p5-Scrappy
SUBDIR += p5-Session-Storage-Secure
SUBDIR += p5-Squatting
SUBDIR += p5-Squatting-On-PSGI
SUBDIR += p5-Starlet
SUBDIR += p5-Starman
SUBDIR += p5-Syntax-Highlight-HTML
SUBDIR += p5-Syntax-Highlight-Shell
SUBDIR += p5-Task-Catalyst
SUBDIR += p5-Task-Plack
SUBDIR += p5-Tatsumaki
SUBDIR += p5-Template-Alloy
SUBDIR += p5-Template-GD
SUBDIR += p5-Template-Iterator-AlzaboWrapperCursor
SUBDIR += p5-Template-Multilingual
SUBDIR += p5-Template-Mustache
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-StripScripts
SUBDIR += p5-Template-Plugin-Subst
SUBDIR += p5-Template-Plugin-VMethods
SUBDIR += p5-Template-Provider-Encoding
SUBDIR += p5-Template-Provider-FromDATA
SUBDIR += p5-Template-Simple
SUBDIR += p5-Template-Stash-AutoEscape
SUBDIR += p5-Template-Timer
SUBDIR += p5-Template-Toolkit
SUBDIR += p5-Template-Toolkit-Simple
SUBDIR += p5-Tenjin
SUBDIR += p5-Test-HTTP
SUBDIR += p5-Test-HTTP-Server-Simple
SUBDIR += p5-Test-Nginx
SUBDIR += p5-TestGen4Web-Runner
SUBDIR += p5-Text-MultiMarkdown-ApacheHandler
SUBDIR += p5-Tie-TinyURL
SUBDIR += p5-Toader
SUBDIR += p5-Twiggy
SUBDIR += p5-Twiggy-TLS
SUBDIR += p5-URI-Encode
SUBDIR += p5-URI-Escape-JavaScript
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-VUser-Google-ProvisioningAPI
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-Contact
SUBDIR += p5-WWW-Curl
SUBDIR += p5-WWW-DHL
SUBDIR += p5-WWW-Dilbert
SUBDIR += p5-WWW-Facebook-API
SUBDIR += p5-WWW-FreeProxy
SUBDIR += p5-WWW-GitHub-Gist
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-Instapaper-Client
SUBDIR += p5-WWW-Link
SUBDIR += p5-WWW-LongURL
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-Mechanize-SpamCop
SUBDIR += p5-WWW-Mechanize-TreeBuilder
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-Plurk
SUBDIR += p5-WWW-Robot
SUBDIR += p5-WWW-RobotRules
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-Scripter
SUBDIR += p5-WWW-Scripter-Plugin-Ajax
SUBDIR += p5-WWW-Scripter-Plugin-JavaScript
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-Googl
SUBDIR += p5-WWW-Shorten-KUSO
SUBDIR += p5-WWW-Shorten-NotLong
SUBDIR += p5-WWW-Shorten-Yourls
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-Tumblr
SUBDIR += p5-WWW-VenusEnvy
SUBDIR += p5-WWW-WebArchive
SUBDIR += p5-WWW-Wikipedia
SUBDIR += p5-WWW-Yandex-TIC
SUBDIR += p5-WWW-iTunesConnect
SUBDIR += p5-Web-Query
SUBDIR += p5-Web-Scraper
SUBDIR += p5-Web-Scraper-Config
SUBDIR += p5-Web-oEmbed
SUBDIR += p5-WebDAO
SUBDIR += p5-WebService-Basecamp
SUBDIR += p5-WebService-Bloglines
SUBDIR += p5-WebService-BuzzurlAPI
SUBDIR += p5-WebService-CIA
SUBDIR += p5-WebService-GData
SUBDIR += p5-WebService-Google-Reader
SUBDIR += p5-WebService-Google-Sets
SUBDIR += p5-WebService-IMDB
SUBDIR += p5-WebService-ISBNDB
SUBDIR += p5-WebService-Linode
SUBDIR += p5-WebService-MoviePosterDB
SUBDIR += p5-WebService-MusicBrainz
SUBDIR += p5-WebService-NoPaste
SUBDIR += p5-WebService-Pushover
SUBDIR += p5-WebService-Rakuten
SUBDIR += p5-WebService-Simple
SUBDIR += p5-WebService-Technorati
SUBDIR += p5-WebService-YouTube
SUBDIR += p5-WordPress-XMLRPC
SUBDIR += p5-Yahoo-Lifestyle
SUBDIR += p5-Yahoo-Search
SUBDIR += p5-ZConf-RSS
SUBDIR += p5-ZConf-RSS-GUI-GTK
SUBDIR += p5-chklinks
SUBDIR += p5-jQuery-File-Upload
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 += 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-Horde_Browser
SUBDIR += pear-Horde_Css_Parser
SUBDIR += pear-Horde_Dav
SUBDIR += pear-Horde_Editor
SUBDIR += pear-Horde_Feed
SUBDIR += pear-Horde_Form
SUBDIR += pear-Horde_Http
SUBDIR += pear-Horde_Routes
SUBDIR += pear-Horde_Service_Facebook
SUBDIR += pear-Horde_Service_Twitter
SUBDIR += pear-Horde_Service_UrlShortener
SUBDIR += pear-Horde_Service_Weather
SUBDIR += pear-Horde_SessionHandler
SUBDIR += pear-Horde_Template
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_ShortURL
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 += pear-twig
SUBDIR += pebble
SUBDIR += pecl-APC
SUBDIR += pecl-amfext
SUBDIR += pecl-http
SUBDIR += pecl-solr
SUBDIR += pecl-sphinx
SUBDIR += pecl-swish
SUBDIR += pecl-twig
SUBDIR += pecl-varnish
SUBDIR += pecl-yaf
SUBDIR += pecl-yar
SUBDIR += pecl-zendopcache
SUBDIR += pelican
SUBDIR += perlbal
SUBDIR += pglogd
SUBDIR += phalcon
SUBDIR += photo_gallery
SUBDIR += php-plurk-api
SUBDIR += php-screw
SUBDIR += php-templates
SUBDIR += php5-session
SUBDIR += php5-tidy
SUBDIR += php53-session
SUBDIR += php53-tidy
SUBDIR += php55-opcache
SUBDIR += php55-session
SUBDIR += php55-tidy
SUBDIR += phpbb
SUBDIR += phpbb-devel
SUBDIR += phpbb3
SUBDIR += phpgedview
SUBDIR += phpgroupware
SUBDIR += phpmp
SUBDIR += phpmustache
SUBDIR += phpmyfaq
SUBDIR += phprecipebook
SUBDIR += phproxy
SUBDIR += phpscheduleit
SUBDIR += phpsysinfo
SUBDIR += phpsysinfo-dev
SUBDIR += phpvirtualbox
SUBDIR += phpwebapp
SUBDIR += pivotx
SUBDIR += piwigo
SUBDIR += piwik
SUBDIR += planet
SUBDIR += pligg
SUBDIR += plone
SUBDIR += plugger
SUBDIR += plugger-plugins-hubbe
SUBDIR += pmwiki
SUBDIR += pnews
SUBDIR += podcastamatic
SUBDIR += polipo
SUBDIR += pound
SUBDIR += prado
SUBDIR += privoxy
SUBDIR += privoxy+ipv6
SUBDIR += protovis
SUBDIR += pserv
SUBDIR += publicfile
SUBDIR += punbb
SUBDIR += pwebstats
SUBDIR += py-GinGin
SUBDIR += py-HTMLgen
SUBDIR += py-Lightbox
SUBDIR += py-Products.CMFPlone
SUBDIR += py-Products.PloneLDAP
SUBDIR += py-Products.TinyMCE
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-beautifulsoup32
SUBDIR += py-bjoern
SUBDIR += py-bleach
SUBDIR += py-blogofile
SUBDIR += py-bottle
SUBDIR += py-cherrypy
SUBDIR += py-cherrypy-old
SUBDIR += py-clientform
SUBDIR += py-cssmin
SUBDIR += py-cssselect
SUBDIR += py-cssutils
SUBDIR += py-django
SUBDIR += py-django-annoying
SUBDIR += py-django-app-plugins
SUBDIR += py-django-appconf
SUBDIR += py-django-appmedia
SUBDIR += py-django-auth-ldap
SUBDIR += py-django-caching-app-plugins
SUBDIR += py-django-classy-tags
SUBDIR += py-django-cms
SUBDIR += py-django-crispy-forms
SUBDIR += py-django-debug-toolbar
SUBDIR += py-django-devel
SUBDIR += py-django-dpaste
SUBDIR += py-django-evolution
SUBDIR += py-django-extensions
SUBDIR += py-django-filer
SUBDIR += py-django-haystack
SUBDIR += py-django-json-rpc
SUBDIR += py-django-keyedcache
SUBDIR += py-django-livesettings
SUBDIR += py-django-mezzanine
SUBDIR += py-django-mezzanine-filebrowser
SUBDIR += py-django-mezzanine-grappelli
SUBDIR += py-django-mptt
SUBDIR += py-django-openid-auth
SUBDIR += py-django-photologue
SUBDIR += py-django-picklefield
SUBDIR += py-django-pipeline
SUBDIR += py-django-piston
SUBDIR += py-django-profiles
SUBDIR += py-django-registration
SUBDIR += py-django-registration-defaults
SUBDIR += py-django-reversion
SUBDIR += py-django-sekizai
SUBDIR += py-django-signals-ahoy
SUBDIR += py-django-simple-captcha
SUBDIR += py-django-storages
SUBDIR += py-django-tables2
SUBDIR += py-django-tagging
SUBDIR += py-django-tastypie
SUBDIR += py-django-threaded-multihost
SUBDIR += py-django-tinymce
SUBDIR += py-django14
SUBDIR += py-django15
SUBDIR += py-django_compressor
SUBDIR += py-djangotoolbox
SUBDIR += py-djblets
SUBDIR += py-dojango
SUBDIR += py-dotcloud.cli
SUBDIR += py-dtflickr
SUBDIR += py-falcon
SUBDIR += py-fcgi
SUBDIR += py-fedex
SUBDIR += py-feedfinder
SUBDIR += py-feedgenerator
SUBDIR += py-flask
SUBDIR += py-flask-cache
SUBDIR += py-flask-flatpages
SUBDIR += py-flask-uploads
SUBDIR += py-flexget
SUBDIR += py-flup
SUBDIR += py-formalchemy
SUBDIR += py-formencode
SUBDIR += py-frozen-flask
SUBDIR += py-funkload
SUBDIR += py-google-api-python-client
SUBDIR += py-graphite-web
SUBDIR += py-grequests
SUBDIR += py-gunicorn
SUBDIR += py-html5lib
SUBDIR += py-httplib2
SUBDIR += py-imdbpy
SUBDIR += py-jonpy
SUBDIR += py-jswebkit
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-plone.alterego
SUBDIR += py-plone.app.blob
SUBDIR += py-plone.app.caching
SUBDIR += py-plone.app.collection
SUBDIR += py-plone.app.content
SUBDIR += py-plone.app.contentlisting
SUBDIR += py-plone.app.contentmenu
SUBDIR += py-plone.app.contentrules
SUBDIR += py-plone.app.controlpanel
SUBDIR += py-plone.app.customerize
SUBDIR += py-plone.app.dexterity
SUBDIR += py-plone.app.discussion
SUBDIR += py-plone.app.folder
SUBDIR += py-plone.app.form
SUBDIR += py-plone.app.i18n
SUBDIR += py-plone.app.imaging
SUBDIR += py-plone.app.iterate
SUBDIR += py-plone.app.jquery
SUBDIR += py-plone.app.jquerytools
SUBDIR += py-plone.app.layout
SUBDIR += py-plone.app.ldap
SUBDIR += py-plone.app.linkintegrity
SUBDIR += py-plone.app.locales
SUBDIR += py-plone.app.portlets
SUBDIR += py-plone.app.querystring
SUBDIR += py-plone.app.redirector
SUBDIR += py-plone.app.registry
SUBDIR += py-plone.app.search
SUBDIR += py-plone.app.testing
SUBDIR += py-plone.app.textfield
SUBDIR += py-plone.app.theming
SUBDIR += py-plone.app.upgrade
SUBDIR += py-plone.app.users
SUBDIR += py-plone.app.uuid
SUBDIR += py-plone.app.viewletmanager
SUBDIR += py-plone.app.vocabularies
SUBDIR += py-plone.app.workflow
SUBDIR += py-plone.app.z3cform
SUBDIR += py-plone.autoform
SUBDIR += py-plone.batching
SUBDIR += py-plone.behavior
SUBDIR += py-plone.browserlayer
SUBDIR += py-plone.cachepurging
SUBDIR += py-plone.caching
SUBDIR += py-plone.contentrules
SUBDIR += py-plone.dexterity
SUBDIR += py-plone.fieldsets
SUBDIR += py-plone.folder
SUBDIR += py-plone.formwidget.namedfile
SUBDIR += py-plone.i18n
SUBDIR += py-plone.indexer
SUBDIR += py-plone.intelligenttext
SUBDIR += py-plone.locking
SUBDIR += py-plone.memoize
SUBDIR += py-plone.namedfile
SUBDIR += py-plone.outputfilters
SUBDIR += py-plone.portlet.collection
SUBDIR += py-plone.portlet.static
SUBDIR += py-plone.portlets
SUBDIR += py-plone.registry
SUBDIR += py-plone.resource
SUBDIR += py-plone.resourceeditor
SUBDIR += py-plone.rfc822
SUBDIR += py-plone.scale
SUBDIR += py-plone.schemaeditor
SUBDIR += py-plone.stringinterp
SUBDIR += py-plone.subrequest
SUBDIR += py-plone.supermodel
SUBDIR += py-plone.synchronize
SUBDIR += py-plone.testing
SUBDIR += py-plone.theme
SUBDIR += py-plone.transformchain
SUBDIR += py-plone.uuid
SUBDIR += py-plone.z3cform
SUBDIR += py-plonetheme.classic
SUBDIR += py-plonetheme.sunburst
SUBDIR += py-poster
SUBDIR += py-postmarkup
SUBDIR += py-praw
SUBDIR += py-prewikka
SUBDIR += py-py-restclient
SUBDIR += py-pylons
SUBDIR += py-pyquery
SUBDIR += py-pyramid
SUBDIR += py-pyramid_rpc
SUBDIR += py-pysearch
SUBDIR += py-pywebdav
SUBDIR += py-qp
SUBDIR += py-qpy
SUBDIR += py-qt4-webkit
SUBDIR += py-rackspace-monitoring
SUBDIR += py-recaptcha
SUBDIR += py-requests
SUBDIR += py-requests-oauth-hook
SUBDIR += py-requests-oauthlib
SUBDIR += py-requests1
SUBDIR += py-restclient
SUBDIR += py-rhodecode
SUBDIR += py-routes
SUBDIR += py-satchmo
SUBDIR += py-scgi
SUBDIR += py-scrapy
SUBDIR += py-scriptaculous
SUBDIR += py-selector
SUBDIR += py-selenium
SUBDIR += py-slimmer
SUBDIR += py-slumber
SUBDIR += py-splinter
SUBDIR += py-surl
SUBDIR += py-textile
SUBDIR += py-tgwebservices
SUBDIR += py-tmdb3
SUBDIR += py-tornado
SUBDIR += py-turbogears
SUBDIR += py-turbogears2
SUBDIR += py-tvdb_api
SUBDIR += py-twistedWeb
SUBDIR += py-twistedWeb2
SUBDIR += py-uliweb
SUBDIR += py-urlgrabber
SUBDIR += py-urljr
SUBDIR += py-utidy
SUBDIR += py-w3lib
SUBDIR += py-waitress
SUBDIR += py-webhelpers
SUBDIR += py-webkitgtk
SUBDIR += py-webob
SUBDIR += py-webunit
SUBDIR += py-webware
SUBDIR += py-webware-component
SUBDIR += py-werkzeug
SUBDIR += py-wikitools
SUBDIR += py-ws4py
SUBDIR += py-wsgiauth
SUBDIR += py-zope.app.wsgi
SUBDIR += pyblosxom
SUBDIR += pyjamas
SUBDIR += pylot
SUBDIR += pyweblib
SUBDIR += qdecoder
SUBDIR += qooxdoo
SUBDIR += quickie
SUBDIR += quixote
SUBDIR += qupzilla
SUBDIR += radicale
SUBDIR += red5
SUBDIR += redaxo
SUBDIR += redmine
SUBDIR += redmine-backlogs
SUBDIR += redmine-basecamp
SUBDIR += redmine-http-auth
SUBDIR += redmine-sidebar_hide
SUBDIR += rejik
SUBDIR += rekonq
SUBDIR += reportmagic
SUBDIR += repos-style
SUBDIR += resin3
SUBDIR += retawq
SUBDIR += reviewboard
SUBDIR += rnews
SUBDIR += roundup
SUBDIR += rsskit
SUBDIR += rssowl
SUBDIR += rssroll
SUBDIR += rsstail
SUBDIR += rsstool
SUBDIR += rt38
SUBDIR += rt40
SUBDIR += rt42
SUBDIR += ruboard
SUBDIR += ruby-amazon
SUBDIR += ruby-aws
SUBDIR += ruby-borges
SUBDIR += ruby-div
SUBDIR += ruby-fcgi
SUBDIR += ruby-fcgiwrap
SUBDIR += ruby-google
SUBDIR += ruby-wgettsv
SUBDIR += rubygem-actionpack
SUBDIR += rubygem-actionpack4
SUBDIR += rubygem-activeresource
SUBDIR += rubygem-acts-as-taggable-on
SUBDIR += rubygem-addressable
SUBDIR += rubygem-amazon-ecs
SUBDIR += rubygem-anemone
SUBDIR += rubygem-async_sinatra
SUBDIR += rubygem-bluecloth
SUBDIR += rubygem-bootstrap-sass
SUBDIR += rubygem-carrierwave
SUBDIR += rubygem-cgi_multipart_eof_fix
SUBDIR += rubygem-chef-server-api
SUBDIR += rubygem-chef-server-webui
SUBDIR += rubygem-chosen-rails
SUBDIR += rubygem-cookiejar
SUBDIR += rubygem-cuba
SUBDIR += rubygem-d3_rails
SUBDIR += rubygem-davclient
SUBDIR += rubygem-domainatrix
SUBDIR += rubygem-em-http-request
SUBDIR += rubygem-em-socksify
SUBDIR += rubygem-em-twitter
SUBDIR += rubygem-em-websocket
SUBDIR += rubygem-emk-sinatra-url-for
SUBDIR += rubygem-erubis
SUBDIR += rubygem-ethon
SUBDIR += rubygem-eventmachine_httpserver
SUBDIR += rubygem-faraday
SUBDIR += rubygem-faraday_middleware
SUBDIR += rubygem-feed-normalizer
SUBDIR += rubygem-feedzirra
SUBDIR += rubygem-geminabox
SUBDIR += rubygem-gitlab-gollum-lib
SUBDIR += rubygem-gitlab-grack
SUBDIR += rubygem-gon
SUBDIR += rubygem-haml
SUBDIR += rubygem-haml-coderay
SUBDIR += rubygem-haml-contrib
SUBDIR += rubygem-haml-rails
SUBDIR += rubygem-hpricot
SUBDIR += rubygem-html2haml
SUBDIR += rubygem-http-cookie
SUBDIR += rubygem-httparty
SUBDIR += rubygem-httpclient
SUBDIR += rubygem-innate
SUBDIR += rubygem-jekyll
SUBDIR += rubygem-journey
SUBDIR += rubygem-jquery-atwho-rails
SUBDIR += rubygem-jquery-rails
SUBDIR += rubygem-jquery-turbolinks
SUBDIR += rubygem-jquery-ui-rails
SUBDIR += rubygem-jruby-rack
SUBDIR += rubygem-jwt
SUBDIR += rubygem-kaminari
SUBDIR += rubygem-layout-yullio
SUBDIR += rubygem-less
SUBDIR += rubygem-lighthouse-api
SUBDIR += rubygem-maruku
SUBDIR += rubygem-mechanize
SUBDIR += rubygem-merb-assets
SUBDIR += rubygem-merb-core
SUBDIR += rubygem-merb-haml
SUBDIR += rubygem-merb-helpers
SUBDIR += rubygem-merb-param-protection
SUBDIR += rubygem-modernizr
SUBDIR += rubygem-multipart-post
SUBDIR += rubygem-nanoc
SUBDIR += rubygem-net-http-digest_auth
SUBDIR += rubygem-net-http-persistent
SUBDIR += rubygem-nicovideo
SUBDIR += rubygem-ntlm-http
SUBDIR += rubygem-passenger
SUBDIR += rubygem-rabbirack
SUBDIR += rubygem-rack
SUBDIR += rubygem-rack-accept
SUBDIR += rubygem-rack-attack
SUBDIR += rubygem-rack-cache
SUBDIR += rubygem-rack-contrib
SUBDIR += rubygem-rack-mount
SUBDIR += rubygem-rack-openid
SUBDIR += rubygem-rack-protection
SUBDIR += rubygem-rack-ssl
SUBDIR += rubygem-rack-test
SUBDIR += rubygem-rack15
SUBDIR += rubygem-rails
SUBDIR += rubygem-railties
SUBDIR += rubygem-raindrops
SUBDIR += rubygem-ramaze
SUBDIR += rubygem-raphael-rails
SUBDIR += rubygem-redcloth
SUBDIR += rubygem-redis-rack
SUBDIR += rubygem-redis-rails
SUBDIR += rubygem-redmine_acts_as_taggable_on
SUBDIR += rubygem-rest-client
SUBDIR += rubygem-rfacebook
SUBDIR += rubygem-rfeedfinder
SUBDIR += rubygem-robotex
SUBDIR += rubygem-robots
SUBDIR += rubygem-scrapi
SUBDIR += rubygem-scrubyt
SUBDIR += rubygem-select2-rails
SUBDIR += rubygem-selenium-webdriver
SUBDIR += rubygem-simple-rss
SUBDIR += rubygem-sinatra
SUBDIR += rubygem-sinatra-r18n
SUBDIR += rubygem-sinatra-respond_to
SUBDIR += rubygem-taggable
SUBDIR += rubygem-thin
SUBDIR += rubygem-tinyatom
SUBDIR += rubygem-tinymce-rails
SUBDIR += rubygem-turbolinks
SUBDIR += rubygem-typhoeus
SUBDIR += rubygem-uglifier
SUBDIR += rubygem-underscore-rails
SUBDIR += rubygem-unicorn
SUBDIR += rubygem-url-mount
SUBDIR += rubygem-url_escape
SUBDIR += rubygem-webkit-gtk
SUBDIR += rubygem-webkit-gtk2
SUBDIR += rubygem-webmock
SUBDIR += rubygem-webrobots
SUBDIR += rubygem-websocket
SUBDIR += rubygem-yapra
SUBDIR += sahi
SUBDIR += sakai
SUBDIR += samidare
SUBDIR += sams
SUBDIR += sarg
SUBDIR += sbox-dtc
SUBDIR += scloader
SUBDIR += screem
SUBDIR += script4rss
SUBDIR += seamonkey
SUBDIR += seamonkey-i18n
SUBDIR += selenium
SUBDIR += serendipity
SUBDIR += serf
SUBDIR += servlet-api
SUBDIR += session2
SUBDIR += sfnt2woff
SUBDIR += shellinabox
SUBDIR += shttpd
SUBDIR += simplog
SUBDIR += sit
SUBDIR += sitebar
SUBDIR += sitecopy
SUBDIR += siteframe
SUBDIR += skytemplate
SUBDIR += smarty2
SUBDIR += smarty3
SUBDIR += smb_auth
SUBDIR += snarf
SUBDIR += snownews
SUBDIR += spawn-fcgi
SUBDIR += spdylay
SUBDIR += speedtest-mini
SUBDIR += spreadlogd
SUBDIR += sqstat
SUBDIR += squid
SUBDIR += squid32
SUBDIR += squid33
SUBDIR += squid_radius_auth
SUBDIR += squidclamav
SUBDIR += squidguard
SUBDIR += squidpurge
SUBDIR += squidstats
SUBDIR += squidview
SUBDIR += squirm
SUBDIR += srg
SUBDIR += subsonic
SUBDIR += surf
SUBDIR += surfraw
SUBDIR += sventon
SUBDIR += swfdec-plugin
SUBDIR += swiggle
SUBDIR += swish++
SUBDIR += swish-e
SUBDIR += syndigator
SUBDIR += tclhttpd
SUBDIR += tclwebtest
SUBDIR += tdiary
SUBDIR += tdom
SUBDIR += template_
SUBDIR += templatelite
SUBDIR += testlink
SUBDIR += textpattern
SUBDIR += thttpd
SUBDIR += thumbnail_index
SUBDIR += thundercache
SUBDIR += thundersnarf
SUBDIR += tickr
SUBDIR += tidy
SUBDIR += tidy-devel
SUBDIR += tidy-lib
SUBDIR += tikiwiki
SUBDIR += tinymce
SUBDIR += tinymce3
SUBDIR += tinyproxy
SUBDIR += tinytinyhttpd
SUBDIR += tivoka
SUBDIR += tntnet
SUBDIR += tokyopromenade
SUBDIR += tomcat-native
SUBDIR += tomcat6
SUBDIR += tomcat7
SUBDIR += trac
SUBDIR += trac-OhlohWidgetsMacro
SUBDIR += trac-TracDuplicates
SUBDIR += trac-TracGoogleAnalytics
SUBDIR += trac-accountmanager
SUBDIR += trac-addcomment
SUBDIR += trac-advancedticketworkflow
SUBDIR += trac-attachmentpolicy
SUBDIR += trac-autocomplete
SUBDIR += trac-batchmodify
SUBDIR += trac-bzr
SUBDIR += trac-calendar
SUBDIR += trac-ccselector
SUBDIR += trac-childtickets
SUBDIR += trac-codetags
SUBDIR += trac-customfieldadmin
SUBDIR += trac-datefield
SUBDIR += trac-defaultcc
SUBDIR += trac-discussion
SUBDIR += trac-down
SUBDIR += trac-downloads
SUBDIR += trac-email2trac
SUBDIR += trac-email2trac-postfix
SUBDIR += trac-estimator
SUBDIR += trac-fivestarvote
SUBDIR += trac-fullblog
SUBDIR += trac-fullblognotification
SUBDIR += trac-gantt
SUBDIR += trac-graphviz
SUBDIR += trac-iniadmin
SUBDIR += trac-keywords
SUBDIR += trac-keywordsecretticket
SUBDIR += trac-ldap
SUBDIR += trac-macropost
SUBDIR += trac-mastertickets
SUBDIR += trac-math
SUBDIR += trac-mercurial
SUBDIR += trac-nav
SUBDIR += trac-navadd
SUBDIR += trac-pagelist
SUBDIR += trac-pagetopdf
SUBDIR += trac-pendingticket
SUBDIR += trac-permredirect
SUBDIR += trac-privatetickets
SUBDIR += trac-pydotorgtheme
SUBDIR += trac-remind
SUBDIR += trac-robotstxt
SUBDIR += trac-scrumburndown
SUBDIR += trac-simpleticket
SUBDIR += trac-spam-filter
SUBDIR += trac-subtickets
SUBDIR += trac-tags
SUBDIR += trac-themeengine
SUBDIR += trac-ticketimport
SUBDIR += trac-tickettemplate
SUBDIR += trac-timingandestimation
SUBDIR += trac-tocmacro
SUBDIR += trac-tracdragdrop
SUBDIR += trac-tweakui
SUBDIR += trac-vote
SUBDIR += trac-wantedpages
SUBDIR += trac-watchlist
SUBDIR += trac-wikigoodies
SUBDIR += trac-wikinegotiator
SUBDIR += trac-wikinotification
SUBDIR += trac-wikitemplates
SUBDIR += trac-wikitopdf
SUBDIR += trac-wysiwyg
SUBDIR += trac-xmlrpc
SUBDIR += trafficserver
SUBDIR += transmission-web
SUBDIR += transproxy
SUBDIR += trytond28_google_maps
SUBDIR += trytond_google_maps
SUBDIR += tt-rss
SUBDIR += ttf2eot
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 += twms
SUBDIR += typo3
SUBDIR += typo345
SUBDIR += typo347
SUBDIR += typolight
SUBDIR += udmsearch
SUBDIR += ump
SUBDIR += usermanager
SUBDIR += uwsgi
SUBDIR += uwsgitop
SUBDIR += uzbl
SUBDIR += validator
SUBDIR += varnish
SUBDIR += varnish-libvmod-header
SUBDIR += varnish-nagios
SUBDIR += vdr-plugin-live
SUBDIR += vdradmin-am
SUBDIR += vee
SUBDIR += vertx
SUBDIR += videocache
SUBDIR += visitors
SUBDIR += volta
SUBDIR += vtiger
SUBDIR += vtiger-customerportal
SUBDIR += w3m
SUBDIR += w3m-img
SUBDIR += w3mir
SUBDIR += waccess
SUBDIR += wadcomblog
SUBDIR += web2ldap
SUBDIR += webalizer
SUBDIR += webbrowser
SUBDIR += webcalendar
SUBDIR += webcalendar-devel
SUBDIR += webcheck
SUBDIR += webcopy
SUBDIR += webcrawl
SUBDIR += webfs
SUBDIR += webgo
SUBDIR += webgrind
SUBDIR += webinject
SUBDIR += webkit-gtk2
SUBDIR += webkit-gtk3
SUBDIR += webkit-qt4
SUBDIR += webkit-qt5
SUBDIR += webkit-sharp
SUBDIR += weblint
SUBDIR += weblint++
SUBDIR += webmachine
SUBDIR += webobjects
SUBDIR += webpy
SUBDIR += webreport
SUBDIR += webresolve
SUBDIR += websh
SUBDIR += webstats
SUBDIR += webstone
SUBDIR += webstone-ssl
SUBDIR += webtrees
SUBDIR += wgetpaste
SUBDIR += wikicalc
SUBDIR += wikindx
SUBDIR += wml
SUBDIR += woof
SUBDIR += wordpress
SUBDIR += wsdlpull
SUBDIR += wsmake
SUBDIR += www6to4
SUBDIR += wwwcount
SUBDIR += wwwoffle
SUBDIR += wwwstat
SUBDIR += xapian-omega
SUBDIR += xapian-omega10
SUBDIR += xaraya
SUBDIR += xcache
SUBDIR += xfce4-smartbookmark-plugin
SUBDIR += xist
SUBDIR += xombrero
SUBDIR += xoops
SUBDIR += xpi-adblock
SUBDIR += xpi-adblock_plus
SUBDIR += xpi-bookmarkdd
SUBDIR += xpi-clear_cache_button
SUBDIR += xpi-clearfields
SUBDIR += xpi-close-all-tabs
SUBDIR += xpi-colorfultabs
SUBDIR += xpi-conkeror
SUBDIR += xpi-cookiesafe
SUBDIR += xpi-cssviewer
SUBDIR += xpi-cutemenus-crystalsvg
SUBDIR += xpi-deepestsender
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-firemobilesimulator
SUBDIR += xpi-fission
SUBDIR += xpi-flagfox
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-gdata_provider
SUBDIR += xpi-ghostery
SUBDIR += xpi-gmail-manager
SUBDIR += xpi-google-notebook
SUBDIR += xpi-google_shortcuts
SUBDIR += xpi-grab_and_drag
SUBDIR += xpi-greasemonkey
SUBDIR += xpi-httpfox
SUBDIR += xpi-imagezoom
SUBDIR += xpi-imdbpreview
SUBDIR += xpi-imglikeopera
SUBDIR += xpi-infolister
SUBDIR += xpi-informenter
SUBDIR += xpi-inline-google-definitions
SUBDIR += xpi-it_s_all_text
SUBDIR += xpi-jslib
SUBDIR += xpi-jsview
SUBDIR += xpi-jv
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-mrtech-local-install
SUBDIR += xpi-neo-diggler
SUBDIR += xpi-no-referrer
SUBDIR += xpi-noscript
SUBDIR += xpi-passwordmaker
SUBDIR += xpi-pdf_download
SUBDIR += xpi-pencil
SUBDIR += xpi-pentadactyl
SUBDIR += xpi-permatabs
SUBDIR += xpi-prism
SUBDIR += xpi-quick-locale-switcher
SUBDIR += xpi-quickproxy
SUBDIR += xpi-resurrectpages
SUBDIR += xpi-sameplace
SUBDIR += xpi-scrapbook
SUBDIR += xpi-searchstatus
SUBDIR += xpi-server_spy
SUBDIR += xpi-server_switcher
SUBDIR += xpi-sessionmanager
SUBDIR += xpi-showip
SUBDIR += xpi-speed-dial
SUBDIR += xpi-splash
SUBDIR += xpi-stumbleupon
SUBDIR += xpi-stylish
SUBDIR += xpi-table2clipboard
SUBDIR += xpi-tabletools
SUBDIR += xpi-tabmixplus
SUBDIR += xpi-tagzilla
SUBDIR += xpi-togglewordwrap
SUBDIR += xpi-torbutton
SUBDIR += xpi-twitterfox
SUBDIR += xpi-unplug
SUBDIR += xpi-urllink
SUBDIR += xpi-user_agent_switcher
SUBDIR += xpi-vimperator
SUBDIR += xpi-web_developer
SUBDIR += xpi-wmlbrowser
SUBDIR += xpi-xhtml-ruby-support
SUBDIR += xpi-xmpp4moz
SUBDIR += xpi-yslow
SUBDIR += xshttpd
SUBDIR += xshttpd-devel
SUBDIR += xsp
SUBDIR += yabb
SUBDIR += yahoo-ui
SUBDIR += yanopaste
SUBDIR += yaws
SUBDIR += yii
SUBDIR += yourls
SUBDIR += youtube_dl
SUBDIR += yuicompressor
SUBDIR += zen-cart
SUBDIR += zend-framework
SUBDIR += zend-framework1
SUBDIR += zenphoto
SUBDIR += zerowait-httpd
SUBDIR += zikula
SUBDIR += zope213
.include <bsd.port.subdir.mk>
|