blob: 37f1006a1e0de929c5a2251a455689f501b08630 (
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
|
# $FreeBSD$
#
COMMENT = Ports related to the World Wide Web
SUBDIR += MT
SUBDIR += WebMagick
SUBDIR += abcache
SUBDIR += adblock
SUBDIR += admuser
SUBDIR += adzap
SUBDIR += amaya
SUBDIR += amphetadesk
SUBDIR += analog
SUBDIR += aolserver
SUBDIR += aolserver-openacs-pg
SUBDIR += apache-contrib
SUBDIR += apache-forrest
SUBDIR += apache-jserv
SUBDIR += apache13
SUBDIR += apache13+ipv6
SUBDIR += apache13-modperl
SUBDIR += apache13-modssl
SUBDIR += apache13-modssl+ipv6
SUBDIR += apache13-ssl
SUBDIR += apache20
SUBDIR += apache21
SUBDIR += apache22
SUBDIR += aria
SUBDIR += aria2
SUBDIR += ashe
SUBDIR += asp2php
SUBDIR += aswedit
SUBDIR += aswiki
SUBDIR += august
SUBDIR += auth_ldap
SUBDIR += autoindex
SUBDIR += autoindex2
SUBDIR += awstats
SUBDIR += awstats-devel
SUBDIR += axis
SUBDIR += b2evolution
SUBDIR += bacula-web
SUBDIR += bannerfilter
SUBDIR += bblog
SUBDIR += bins
SUBDIR += bk2site
SUBDIR += bk_edit
SUBDIR += bkmrkconv
SUBDIR += bluefish
SUBDIR += boa
SUBDIR += bookmarkbridge
SUBDIR += bozohttpd
SUBDIR += bricolage
SUBDIR += bugmenot
SUBDIR += bugmenot-firefox
SUBDIR += c-icap
SUBDIR += cadaver
SUBDIR += calamaris
SUBDIR += campsite
SUBDIR += caudium10
SUBDIR += caudium12
SUBDIR += cgi-lib
SUBDIR += cgi-lib.pl
SUBDIR += cgic
SUBDIR += cgicc
SUBDIR += cgichk
SUBDIR += cgihtml
SUBDIR += cgiparse
SUBDIR += cgiwrap
SUBDIR += checkbot
SUBDIR += cheetah
SUBDIR += cherokee
SUBDIR += chimera
SUBDIR += chpasswd
SUBDIR += chtml
SUBDIR += cl-lml
SUBDIR += cl-lml-clisp
SUBDIR += cl-lml-cmucl
SUBDIR += cl-lml-sbcl
SUBDIR += clearsilver
SUBDIR += clearsilver-python
SUBDIR += cocoon
SUBDIR += comclear
SUBDIR += conkeror
SUBDIR += coppermine
SUBDIR += crawl
SUBDIR += crp
SUBDIR += css-mode.el
SUBDIR += cssed
SUBDIR += csstidy
SUBDIR += cybercalendar
SUBDIR += dalbum
SUBDIR += dansguardian
SUBDIR += dansguardian-devel
SUBDIR += decss
SUBDIR += demoroniser
SUBDIR += dfileserver
SUBDIR += dhttpd
SUBDIR += dillo
SUBDIR += dillo-i18n
SUBDIR += dokeos
SUBDIR += dokuwiki
SUBDIR += dokuwiki-devel
SUBDIR += dotproject
SUBDIR += dpsearch
SUBDIR += drupal
SUBDIR += drupal-pubcookie
SUBDIR += drupal-textile
SUBDIR += dtse
SUBDIR += dummyflash
SUBDIR += eaccelerator
SUBDIR += eldav.el
SUBDIR += elinks
SUBDIR += elog
SUBDIR += emacs-w3m
SUBDIR += emacs-w3m-emacs20
SUBDIR += emacs-w3m-xemacs21-mule
SUBDIR += emp
SUBDIR += epiphany
SUBDIR += epiphany-extensions
SUBDIR += erwn
SUBDIR += eventum
SUBDIR += evolution-webcal
SUBDIR += eyeos
SUBDIR += eyeos-themes
SUBDIR += fcgi
SUBDIR += feedjack
SUBDIR += feedonfeeds
SUBDIR += ffproxy
SUBDIR += fhttpd
SUBDIR += firefox
SUBDIR += firefox-devel
SUBDIR += firefox-i18n
SUBDIR += firefox-remote
SUBDIR += flashplugin
SUBDIR += flashplugin-mozilla
SUBDIR += flock
SUBDIR += flood
SUBDIR += fluxcms
SUBDIR += fnord
SUBDIR += formication
SUBDIR += frontpage
SUBDIR += frontpage-ar
SUBDIR += frontpage-de
SUBDIR += frontpage-es
SUBDIR += frontpage-fr
SUBDIR += frontpage-he
SUBDIR += frontpage-it
SUBDIR += frontpage-ja
SUBDIR += frontpage-ko
SUBDIR += frontpage-nl
SUBDIR += frontpage-sv
SUBDIR += frontpage-th
SUBDIR += frontpage-zh
SUBDIR += fswiki
SUBDIR += fxhtml
SUBDIR += g-cows
SUBDIR += g-gcl
SUBDIR += galeon
SUBDIR += gallery
SUBDIR += gallery2
SUBDIR += gatling
SUBDIR += gecko-sharp10
SUBDIR += gecko-sharp20
SUBDIR += geeklog
SUBDIR += gekko
SUBDIR += gekko-modules
SUBDIR += geneweb
SUBDIR += geolizer
SUBDIR += gforge
SUBDIR += glibwww
SUBDIR += gnome-user-share
SUBDIR += gnome-web-photo
SUBDIR += google-sitemapgen
SUBDIR += goose
SUBDIR += gtkhtml
SUBDIR += gtkhtml3
SUBDIR += guile-www
SUBDIR += gurlchecker
SUBDIR += harvest
SUBDIR += havp
SUBDIR += horde
SUBDIR += horde-passwd
SUBDIR += hotjava
SUBDIR += htdump
SUBDIR += html2hdml
SUBDIR += html2wml
SUBDIR += htmlobject
SUBDIR += htmlpp
SUBDIR += http-analyze
SUBDIR += http_get
SUBDIR += http_load
SUBDIR += httpgrabber
SUBDIR += httptunnel
SUBDIR += httrack
SUBDIR += hydra
SUBDIR += hypermail
SUBDIR += igal
SUBDIR += imgsizer
SUBDIR += indexme
SUBDIR += instiki
SUBDIR += interchange
SUBDIR += ismail
SUBDIR += iwebcal
SUBDIR += jakarta-jmeter
SUBDIR += jakarta-tomcat3
SUBDIR += jakarta-tomcat4
SUBDIR += jakarta-tomcat41
SUBDIR += jakarta-tomcat5
SUBDIR += tomcat55
SUBDIR += jdresolve
SUBDIR += jesred
SUBDIR += jetspeed
SUBDIR += jetty
SUBDIR += joomla
SUBDIR += junkbuster
SUBDIR += kannel
SUBDIR += kazehakase
SUBDIR += kdedict
SUBDIR += kdewebdev
SUBDIR += knowledgekit
SUBDIR += larbin
SUBDIR += libapreq2
SUBDIR += libghttp
SUBDIR += libgtkhtml
SUBDIR += libhttpd-persistent
SUBDIR += libwww
SUBDIR += lightsquid
SUBDIR += lighttpd
SUBDIR += lifetype
SUBDIR += linkcheck
SUBDIR += linkchecker
SUBDIR += linklint
SUBDIR += links
SUBDIR += links1
SUBDIR += linux-beonex
SUBDIR += linux-firefox
SUBDIR += linux-firefox-devel
SUBDIR += linux-flashplugin7
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 += ljdeps
SUBDIR += ljpms
SUBDIR += ljsm
SUBDIR += logtools
SUBDIR += lws
SUBDIR += lynx
SUBDIR += lynx-current
SUBDIR += lynx-ssl
SUBDIR += mambo
SUBDIR += man2web
SUBDIR += mapedit
SUBDIR += mathopd
SUBDIR += mediawiki
SUBDIR += mediawiki13
SUBDIR += mediawiki14
SUBDIR += mediawiki15
SUBDIR += mediawiki16
SUBDIR += mergelog
SUBDIR += mgstat
SUBDIR += mhonarc
SUBDIR += micro_httpd
SUBDIR += middleman
SUBDIR += mimetex
SUBDIR += mini_httpd
SUBDIR += mkapachepw
SUBDIR += mknmz-wwwoffle
SUBDIR += mmosaic
SUBDIR += mnogosearch
SUBDIR += mnogosearch31
SUBDIR += mod_access_identd
SUBDIR += mod_access_referer
SUBDIR += mod_accesscookie
SUBDIR += mod_accounting
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_imap
SUBDIR += mod_auth_imap2
SUBDIR += mod_auth_kerb
SUBDIR += mod_auth_mysql
SUBDIR += mod_auth_mysql2
SUBDIR += mod_auth_mysql41_ap2
SUBDIR += mod_auth_mysql_another
SUBDIR += mod_auth_pam
SUBDIR += mod_auth_pam2
SUBDIR += mod_auth_pgsql
SUBDIR += mod_auth_pgsql2
SUBDIR += mod_auth_pwcheck
SUBDIR += mod_auth_remote
SUBDIR += mod_auth_useragent
SUBDIR += mod_authenticache
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_curb
SUBDIR += mod_cfg_ldap
SUBDIR += mod_cgi_debug
SUBDIR += mod_chroot
SUBDIR += mod_clamav
SUBDIR += mod_color
SUBDIR += mod_cvs
SUBDIR += mod_cvs2
SUBDIR += mod_dav
SUBDIR += mod_domaintree
SUBDIR += mod_dosevasive20
SUBDIR += mod_dtcl
SUBDIR += mod_encoding
SUBDIR += mod_extract_forwarded
SUBDIR += mod_extract_forwarded2
SUBDIR += mod_fastcgi
SUBDIR += mod_fcgid
SUBDIR += mod_filter
SUBDIR += mod_frontpage
SUBDIR += mod_frontpage2-rtr
SUBDIR += mod_frontpage-rtr
SUBDIR += mod_geoip
SUBDIR += mod_geoip2
SUBDIR += mod_gzip
SUBDIR += mod_hosts_access
SUBDIR += mod_index_rss
SUBDIR += mod_injection
SUBDIR += mod_jk
SUBDIR += mod_jk-apache2
SUBDIR += mod_jk2
SUBDIR += mod_jk2-apache2
SUBDIR += mod_layout
SUBDIR += mod_layout2
SUBDIR += mod_limitipconn
SUBDIR += mod_limitipconn2
SUBDIR += mod_log_config-st
SUBDIR += mod_log_data
SUBDIR += mod_log_mysql
SUBDIR += mod_log_spread
SUBDIR += mod_log_sql
SUBDIR += mod_log_sql2
SUBDIR += mod_macro
SUBDIR += mod_macro2
SUBDIR += mod_mp3
SUBDIR += mod_musicindex
SUBDIR += mod_mya
SUBDIR += mod_mylo
SUBDIR += mod_mysqluserdir
SUBDIR += mod_ntlm
SUBDIR += mod_perl
SUBDIR += mod_perl2
SUBDIR += mod_proxy_add_forward
SUBDIR += mod_proxy_html
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_sed
SUBDIR += mod_sequester
SUBDIR += mod_shapvh
SUBDIR += mod_snake
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_v2h
SUBDIR += mod_vdbh
SUBDIR += mod_vhost_ldap
SUBDIR += mod_vhs
SUBDIR += mod_webapp
SUBDIR += mod_webkit
SUBDIR += mod_zap
SUBDIR += moinmoin
SUBDIR += momspider
SUBDIR += monkey
SUBDIR += moodle
SUBDIR += mozex
SUBDIR += mozilla
SUBDIR += mozilla-bonobo
SUBDIR += mozilla-devel
SUBDIR += mozplugger
SUBDIR += mplayer-plugin
SUBDIR += myfaces
SUBDIR += myghty
SUBDIR += mysar
SUBDIR += mysqlphp2postgres
SUBDIR += nanoblogger
SUBDIR += nd
SUBDIR += neon
SUBDIR += neowebscript
SUBDIR += netrik
SUBDIR += nginx
SUBDIR += notftp
SUBDIR += npc
SUBDIR += nscache
SUBDIR += nspostgres
SUBDIR += nvu
SUBDIR += ocaml-net
SUBDIR += ocaml-wdialog
SUBDIR += ojs2
SUBDIR += oops
SUBDIR += openacs
SUBDIR += openacs-dotlrn
SUBDIR += openvrml
SUBDIR += openxmldir
SUBDIR += opera
SUBDIR += osb-browser
SUBDIR += osb-nrcit
SUBDIR += osb-nrcore
SUBDIR += oscommerce
SUBDIR += p5-AMF-Perl
SUBDIR += p5-Acme-Monta
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-Compress
SUBDIR += p5-Apache-CompressClientFixup
SUBDIR += p5-Apache-ConfigFile
SUBDIR += p5-Apache-ConfigParser
SUBDIR += p5-Apache-DB
SUBDIR += p5-Apache-DBI
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-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-Bundle-Slash
SUBDIR += p5-Bundle-Sledge
SUBDIR += p5-CGI-Ajax
SUBDIR += p5-CGI-Application
SUBDIR += p5-CGI-Application-Plugin-DBH
SUBDIR += p5-CGI-Application-Plugin-HTDot
SUBDIR += p5-CGI-Application-Plugin-ValidateRM
SUBDIR += p5-CGI-Application-ValidateRM
SUBDIR += p5-CGI-ArgChecker
SUBDIR += p5-CGI-Builder
SUBDIR += p5-CGI-Builder-TT2
SUBDIR += p5-CGI-Cache
SUBDIR += p5-CGI-Ex
SUBDIR += p5-CGI-FastTemplate
SUBDIR += p5-CGI-Framework
SUBDIR += p5-CGI-Kwiki
SUBDIR += p5-CGI-Minimal
SUBDIR += p5-CGI-Prototype
SUBDIR += p5-CGI-Response
SUBDIR += p5-CGI-SSI
SUBDIR += p5-CGI-Session
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-XMLApplication
SUBDIR += p5-CGI-modules
SUBDIR += p5-CGI.pm
SUBDIR += p5-CGI_Lite
SUBDIR += p5-Catalyst-Action-RenderView
SUBDIR += p5-Catalyst-Devel
SUBDIR += p5-Catalyst-Engine-Apache
SUBDIR += p5-Catalyst-Enzyme
SUBDIR += p5-Catalyst-Example-InstantCRUD
SUBDIR += p5-Catalyst-Helper-Controller-Scaffold
SUBDIR += p5-Catalyst-Log-Log4perl
SUBDIR += p5-Catalyst-Model-CDBI
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-Oryx
SUBDIR += p5-Catalyst-Model-Xapian
SUBDIR += p5-Catalyst-Plugin-Authentication
SUBDIR += p5-Catalyst-Plugin-Authentication-CDBI
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-Cache-FastMmap
SUBDIR += p5-Catalyst-Plugin-Cache-FileCache
SUBDIR += p5-Catalyst-Plugin-Cache-Memcached
SUBDIR += p5-Catalyst-Plugin-ConfigLoader
SUBDIR += p5-Catalyst-Plugin-DefaultEnd
SUBDIR += p5-Catalyst-Plugin-FillInForm
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-PageCache
SUBDIR += p5-Catalyst-Plugin-Pluggable
SUBDIR += p5-Catalyst-Plugin-Prototype
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-DBI
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-Singleton
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-GraphViz
SUBDIR += p5-Catalyst-View-HTML-Template
SUBDIR += p5-Catalyst-View-HTML-Template-Compiled
SUBDIR += p5-Catalyst-View-JSON
SUBDIR += p5-Catalyst-View-Mason
SUBDIR += p5-Catalyst-View-TT
SUBDIR += p5-Catalyst-View-TT-ControllerLocal
SUBDIR += p5-Class-DBI-FromForm
SUBDIR += p5-ClearSilver
SUBDIR += p5-Compress-LeadingBlankSpaces
SUBDIR += p5-DBIx-Class-HTMLWidget
SUBDIR += p5-Data-TreeDumper-Renderer-DHTML
SUBDIR += p5-FAQ-OMatic
SUBDIR += p5-FEAR-API
SUBDIR += p5-FastCGI
SUBDIR += p5-FastCGI-ProcManager
SUBDIR += p5-Feed-Find
SUBDIR += p5-Flickr-API
SUBDIR += p5-Flickr-Upload
SUBDIR += p5-Geo-Caching
SUBDIR += p5-HTML
SUBDIR += p5-HTML-Breadcrumbs
SUBDIR += p5-HTML-CalendarMonthSimple
SUBDIR += p5-HTML-Chunks
SUBDIR += p5-HTML-Clean
SUBDIR += p5-HTML-Diff
SUBDIR += p5-HTML-Element-Extended
SUBDIR += p5-HTML-Embperl
SUBDIR += p5-HTML-Encoding
SUBDIR += p5-HTML-FillInForm
SUBDIR += p5-HTML-FromText
SUBDIR += p5-HTML-LinkExtractor
SUBDIR += p5-HTML-Lint
SUBDIR += p5-HTML-Mason
SUBDIR += p5-HTML-Pager
SUBDIR += p5-HTML-Parser
SUBDIR += p5-HTML-PrettyPrinter
SUBDIR += p5-HTML-Prototype
SUBDIR += p5-HTML-QuickCheck
SUBDIR += p5-HTML-ResolveLink
SUBDIR += p5-HTML-Scrubber
SUBDIR += p5-HTML-SimpleLinkExtor
SUBDIR += p5-HTML-SimpleParse
SUBDIR += p5-HTML-StickyQuery
SUBDIR += p5-HTML-Stream
SUBDIR += p5-HTML-Strip
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-XPath
SUBDIR += p5-HTML-Webmake
SUBDIR += p5-HTML-Widget
SUBDIR += p5-HTML-Widgets-SelectLayers
SUBDIR += p5-HTML-WikiConverter
SUBDIR += p5-HTML-WikiConverter-DokuWiki
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-TikiWiki
SUBDIR += p5-HTML-WikiConverter-UseMod
SUBDIR += p5-HTML-WikiConverter-WakkaWiki
SUBDIR += p5-HTML-WikiConverter-WikkaWiki
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-GHTTP
SUBDIR += p5-HTTP-Lite
SUBDIR += p5-HTTP-MHTTP
SUBDIR += p5-HTTP-MobileAgent
SUBDIR += p5-HTTP-Proxy
SUBDIR += p5-HTTP-Recorder
SUBDIR += p5-HTTP-Request-AsCGI
SUBDIR += p5-HTTP-Request-Params
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-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-Jifty
SUBDIR += p5-Kwiki
SUBDIR += p5-Kwiki-Archive-Rcs
SUBDIR += p5-Kwiki-Archive-SVK
SUBDIR += p5-Kwiki-Atom
SUBDIR += p5-Kwiki-Cache
SUBDIR += p5-Kwiki-Diff
SUBDIR += p5-Kwiki-Edit-RequireUserName
SUBDIR += p5-Kwiki-GDGraphGenerator
SUBDIR += p5-Kwiki-Icons-Gnome
SUBDIR += p5-Kwiki-Infobox
SUBDIR += p5-Kwiki-ModPerl
SUBDIR += p5-Kwiki-NavigationToolbar
SUBDIR += p5-Kwiki-NewPage
SUBDIR += p5-Kwiki-Notify-Mail
SUBDIR += p5-Kwiki-PagePrivacy
SUBDIR += p5-Kwiki-RecentChanges
SUBDIR += p5-Kwiki-RecentChangesRSS
SUBDIR += p5-Kwiki-Revisions
SUBDIR += p5-Kwiki-Search
SUBDIR += p5-Kwiki-Theme-ColumnLayout
SUBDIR += p5-Kwiki-UserName
SUBDIR += p5-Kwiki-UserPreferences
SUBDIR += p5-Kwiki-VimMode
SUBDIR += p5-Kwiki-plugins
SUBDIR += p5-LWP-Authen-Wsse
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-Net-Akismet
SUBDIR += p5-Net-Flickr-API
SUBDIR += p5-Net-Flickr-Backup
SUBDIR += p5-Net-Flickr-RDF
SUBDIR += p5-Net-eBay
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-ParallelUA
SUBDIR += p5-PodToHTML
SUBDIR += p5-RTx-Statistics
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-Syntax-Highlight-HTML
SUBDIR += p5-Syntax-Highlight-Shell
SUBDIR += p5-Task-Catalyst
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-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-Provider-Encoding
SUBDIR += p5-Template-Timer
SUBDIR += p5-Template-Toolkit
SUBDIR += p5-Test-HTTP-Server-Simple
SUBDIR += p5-TestGen4Web-Runner
SUBDIR += p5-Text-Markdown-ApacheHandler
SUBDIR += p5-URI-Fetch
SUBDIR += p5-URI-Sequin
SUBDIR += p5-W3C-LinkChecker
SUBDIR += p5-W3C-LogValidator
SUBDIR += p5-WWW-Babelfish
SUBDIR += p5-WWW-Baseball-NPB
SUBDIR += p5-WWW-Comic
SUBDIR += p5-WWW-Curl
SUBDIR += p5-WWW-Dilbert
SUBDIR += p5-WWW-Google-Calculator
SUBDIR += p5-WWW-Google-News
SUBDIR += p5-WWW-Google-News-TW
SUBDIR += p5-WWW-Google-PageRank
SUBDIR += p5-WWW-Google-Video
SUBDIR += p5-WWW-IMDb
SUBDIR += p5-WWW-Link
SUBDIR += p5-WWW-Mechanize
SUBDIR += p5-WWW-Mechanize-FormFiller
SUBDIR += p5-WWW-Mechanize-Pluggable
SUBDIR += p5-WWW-Mechanize-Plugin-phpBB
SUBDIR += p5-WWW-Mechanize-Shell
SUBDIR += p5-WWW-Mixi
SUBDIR += p5-WWW-Myspace
SUBDIR += p5-WWW-OpenSVN
SUBDIR += p5-WWW-OpenSearch
SUBDIR += p5-WWW-Robot
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-KUSO
SUBDIR += p5-WWW-SourceForge
SUBDIR += p5-WWW-TWSMS
SUBDIR += p5-WWW-VenusEnvy
SUBDIR += p5-WWW-Wikipedia
SUBDIR += p5-WebService-Basecamp
SUBDIR += p5-WebService-Bloglines
SUBDIR += p5-WebService-NoPaste
SUBDIR += p5-WebService-Technorati
SUBDIR += p5-Xango
SUBDIR += p5-ldap-abook
SUBDIR += p5-libapreq
SUBDIR += p5-libapreq-static
SUBDIR += p5-libapreq2
SUBDIR += p5-libservlet
SUBDIR += p5-libwww
SUBDIR += p5-webservice-validator-css-w3c
SUBDIR += p5-webservice-validator-html-w3c
SUBDIR += peacock
SUBDIR += pear-HTTP
SUBDIR += pear-HTTP_Client
SUBDIR += pear-HTTP_Download
SUBDIR += pear-HTTP_Header
SUBDIR += pear-HTTP_Request
SUBDIR += pear-HTTP_Server
SUBDIR += pear-HTTP_Session
SUBDIR += pear-HTTP_Upload
SUBDIR += pear-Services_Delicious
SUBDIR += pear-Text_Wiki
SUBDIR += pear-UDDI
SUBDIR += pecl-APC
SUBDIR += pecl-pecl_http
SUBDIR += pecl-tidy
SUBDIR += perlbal
SUBDIR += pglogd
SUBDIR += photo_gallery
SUBDIR += php-dyn
SUBDIR += php-screw
SUBDIR += php-templates
SUBDIR += php4-mnogosearch
SUBDIR += php4-session
SUBDIR += php5-session
SUBDIR += php5-tidy
SUBDIR += phpSysInfo
SUBDIR += phpadsnew
SUBDIR += phpbb
SUBDIR += phpgedview
SUBDIR += phpmyfaq
SUBDIR += phproxy
SUBDIR += phpsurveyor
SUBDIR += phpwebapp
SUBDIR += phpwiki
SUBDIR += phpwiki13
SUBDIR += pivot-weblog
SUBDIR += planet
SUBDIR += plone
SUBDIR += plugger
SUBDIR += plugger-plugins-hubbe
SUBDIR += pmwiki
SUBDIR += pnews
SUBDIR += podcastamatic
SUBDIR += polipo
SUBDIR += postnuke
SUBDIR += pound
SUBDIR += preferential
SUBDIR += privoxy
SUBDIR += privoxy+ipv6
SUBDIR += pserv
SUBDIR += pubcookie-login-server
SUBDIR += publicfile
SUBDIR += punbb
SUBDIR += pwebstats
SUBDIR += py-HTMLgen
SUBDIR += py-albatross
SUBDIR += py-beautifulsoup
SUBDIR += py-cherrypy
SUBDIR += py-clientform
SUBDIR += py-cssutils
SUBDIR += py-django
SUBDIR += py-django-devel
SUBDIR += py-fcgi
SUBDIR += py-forgethtml
SUBDIR += py-formencode
SUBDIR += py-htmltestcase
SUBDIR += py-imdbpy
SUBDIR += py-jonpy
SUBDIR += py-mechanize
SUBDIR += py-meld
SUBDIR += py-mt
SUBDIR += py-nevow
SUBDIR += py-openssl-proxy
SUBDIR += py-prewikka
SUBDIR += py-pullparser
SUBDIR += py-scgi
SUBDIR += py-slimmer
SUBDIR += py-turbogears
SUBDIR += py-twistedWeb
SUBDIR += py-twistedWeb2
SUBDIR += py-webware
SUBDIR += py-webware-component
SUBDIR += pyblosxom
SUBDIR += pyweblib
SUBDIR += qdecoder
SUBDIR += quickie
SUBDIR += quixote
SUBDIR += raqdevil
SUBDIR += rejik
SUBDIR += reportmagic
SUBDIR += resin2
SUBDIR += resin3
SUBDIR += retawq
SUBDIR += rnews
SUBDIR += roundup
SUBDIR += roxen
SUBDIR += rssowl
SUBDIR += rt2
SUBDIR += rt3
SUBDIR += rt3-elixus
SUBDIR += rt32
SUBDIR += rt34
SUBDIR += rt36
SUBDIR += ruboard
SUBDIR += ruby-amazon
SUBDIR += ruby-asp
SUBDIR += ruby-borges
SUBDIR += ruby-div
SUBDIR += ruby-fcgi
SUBDIR += ruby-google
SUBDIR += ruby-gtkhtml2
SUBDIR += ruby-gtkmozembed
SUBDIR += ruby-http-access
SUBDIR += ruby-mnogosearch
SUBDIR += ruby-nora
SUBDIR += ruby-tmpl
SUBDIR += ruby-webunit
SUBDIR += rubygem-actionpack
SUBDIR += rubygem-actionwebservice
SUBDIR += rubygem-bluecloth
SUBDIR += rubygem-mongrel
SUBDIR += rubygem-mongrel_cluster
SUBDIR += rubygem-rails
SUBDIR += rubygem-redcloth
SUBDIR += sarg
SUBDIR += sbox-dtc
SUBDIR += scout
SUBDIR += screem
SUBDIR += script4rss
SUBDIR += seamonkey
SUBDIR += selenium
SUBDIR += serendipity
SUBDIR += serendipity-devel
SUBDIR += servlet-api
SUBDIR += session2
SUBDIR += shttpd
SUBDIR += sidplug
SUBDIR += simplog
SUBDIR += sitebar
SUBDIR += sitecopy
SUBDIR += siteframe
SUBDIR += skytemplate
SUBDIR += slash
SUBDIR += smarty
SUBDIR += smb2www
SUBDIR += smb_auth
SUBDIR += snarf
SUBDIR += snownews
SUBDIR += spip
SUBDIR += spreadlogd
SUBDIR += sqstat
SUBDIR += squid
SUBDIR += squid26
SUBDIR += squid_radius_auth
SUBDIR += squidclients
SUBDIR += squidguard
SUBDIR += squidpurge
SUBDIR += squidtimes
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 += textpattern
SUBDIR += thttpd
SUBDIR += thttpd-st
SUBDIR += thumbnail_index
SUBDIR += tidy
SUBDIR += tidy-devel
SUBDIR += tidy-lib
SUBDIR += tikiwiki
SUBDIR += tinyproxy
SUBDIR += trac
SUBDIR += trac-accountmanager
SUBDIR += trac-gantt
SUBDIR += trac-webadmin
SUBDIR += transproxy
SUBDIR += twhttpd
SUBDIR += twig
SUBDIR += twiki
SUBDIR += typo
SUBDIR += typo3
SUBDIR += udmsearch
SUBDIR += ump
SUBDIR += urchin5
SUBDIR += usermanager
SUBDIR += validator
SUBDIR += varnish
SUBDIR += visitors
SUBDIR += vtiger
SUBDIR += w3
SUBDIR += w3-4
SUBDIR += w3c-httpd
SUBDIR += w3m
SUBDIR += w3m-img
SUBDIR += w3m-m17n
SUBDIR += w3m-m17n-img
SUBDIR += w3mir
SUBDIR += waccess
SUBDIR += wacko
SUBDIR += wb0
SUBDIR += wcol
SUBDIR += web-traceroute
SUBDIR += web2ldap
SUBDIR += webalizer
SUBDIR += webcalendar
SUBDIR += webcheck
SUBDIR += webcopy
SUBDIR += webcrawl
SUBDIR += webfs
SUBDIR += webglimpse
SUBDIR += weblint
SUBDIR += weblint++
SUBDIR += webredirect
SUBDIR += webreport
SUBDIR += webresolve
SUBDIR += webstats
SUBDIR += webstone
SUBDIR += webstone-ssl
SUBDIR += wget4web
SUBDIR += wikindx
SUBDIR += wiliki
SUBDIR += winhelpcgi
SUBDIR += wml
SUBDIR += wnews
SUBDIR += wordpress
SUBDIR += wordpress-mu
SUBDIR += wsdlpull
SUBDIR += wsmake
SUBDIR += www6to4
SUBDIR += wwwcount
SUBDIR += wwwoffle
SUBDIR += wwwstat
SUBDIR += wyvern
SUBDIR += xaraya
SUBDIR += xcache
SUBDIR += xist
SUBDIR += xitami
SUBDIR += xpath2rss
SUBDIR += xpi-adblock
SUBDIR += xpi-adblock_plus
SUBDIR += xpi-autobrowse
SUBDIR += xpi-clearfields
SUBDIR += xpi-colorfultabs
SUBDIR += xpi-cssviewer
SUBDIR += xpi-cutemenus-crystalsvg
SUBDIR += xpi-delicious
SUBDIR += xpi-downthemall
SUBDIR += xpi-fasterfox
SUBDIR += xpi-firefox-showcase
SUBDIR += xpi-fission
SUBDIR += xpi-flashblock
SUBDIR += xpi-flashgot
SUBDIR += xpi-forecastfox
SUBDIR += xpi-formfox
SUBDIR += xpi-foxmarks
SUBDIR += xpi-gbrain
SUBDIR += xpi-gmail-manager
SUBDIR += xpi-google-notebook
SUBDIR += xpi-greasemonkey
SUBDIR += xpi-hit-a-hint
SUBDIR += xpi-imagezoom
SUBDIR += xpi-imdbpreview
SUBDIR += xpi-imglikeopera
SUBDIR += xpi-infolister
SUBDIR += xpi-inline-google-definitions
SUBDIR += xpi-joga
SUBDIR += xpi-jsview
SUBDIR += xpi-linkification
SUBDIR += xpi-locale-switcher
SUBDIR += xpi-mldonkey
SUBDIR += xpi-mousegestures
SUBDIR += xpi-mozex
SUBDIR += xpi-mrtech-local-install
SUBDIR += xpi-no-referrer
SUBDIR += xpi-noscript
SUBDIR += xpi-num2web
SUBDIR += xpi-pdf_download
SUBDIR += xpi-preferential
SUBDIR += xpi-quickproxy
SUBDIR += xpi-resurrectpages
SUBDIR += xpi-savegenpage
SUBDIR += xpi-searchstatus
SUBDIR += xpi-server_switcher
SUBDIR += xpi-sessionmanager
SUBDIR += xpi-statusbarclock
SUBDIR += xpi-stumbleupon
SUBDIR += xpi-surfkeys
SUBDIR += xpi-tabletools
SUBDIR += xpi-tabmixplus
SUBDIR += xpi-togglewordwrap
SUBDIR += xpi-unplug
SUBDIR += xpi-urllink
SUBDIR += xpi-videodownloader
SUBDIR += xpi-web_developer
SUBDIR += xpi-wmlbrowser
SUBDIR += xpi-xpcom-component-viewer
SUBDIR += xshttpd
SUBDIR += xshttpd-devel
SUBDIR += xulrunner
SUBDIR += yabb
SUBDIR += yaws
SUBDIR += youtube_dl
SUBDIR += zerowait-httpd
SUBDIR += ziproxy
SUBDIR += znavigator
SUBDIR += zope
SUBDIR += zope28
SUBDIR += zope29
SUBDIR += zope3
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-guf
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
.include <bsd.port.subdir.mk>
|