-
Notifications
You must be signed in to change notification settings - Fork 753
/
Makefile
2461 lines (2459 loc) · 76 KB
/
Makefile
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
COMMENT = Ports related to the World Wide Web
SUBDIR += R-cran-RgoogleMaps
SUBDIR += R-cran-Rook
SUBDIR += R-cran-bslib
SUBDIR += R-cran-crosstalk
SUBDIR += R-cran-downloader
SUBDIR += R-cran-gh
SUBDIR += R-cran-htmlwidgets
SUBDIR += R-cran-httpuv
SUBDIR += R-cran-httr
SUBDIR += R-cran-jquerylib
SUBDIR += R-cran-rvest
SUBDIR += R-cran-scrapeR
SUBDIR += R-cran-selectr
SUBDIR += R-cran-servr
SUBDIR += R-cran-shiny
SUBDIR += R-cran-shinyjs
SUBDIR += R-cran-webshot
SUBDIR += Stikked
SUBDIR += UniversalFeedCreator
SUBDIR += adguardhome
SUBDIR += adjuster
SUBDIR += adzap
SUBDIR += alef-webfont
SUBDIR += amfora
SUBDIR += amphetadesk
SUBDIR += analog
SUBDIR += angie
SUBDIR += anyremote2html
SUBDIR += apache-mode.el
SUBDIR += apache24
SUBDIR += apt-cacher-ng
SUBDIR += aquatone
SUBDIR += archiva
SUBDIR += aria2
SUBDIR += asql
SUBDIR += authelia
SUBDIR += awffull
SUBDIR += awstats
SUBDIR += axis2
SUBDIR += bacula-web
SUBDIR += baculum-api
SUBDIR += baculum-common
SUBDIR += baculum-web
SUBDIR += badwolf
SUBDIR += baikal
SUBDIR += bareos-webui
SUBDIR += bareos18-webui
SUBDIR += bareos19-webui
SUBDIR += bareos20-webui
SUBDIR += bareos21-webui
SUBDIR += beehive
SUBDIR += bkmrkconv
SUBDIR += bluefish
SUBDIR += bolt
SUBDIR += bozohttpd
SUBDIR += browsh
SUBDIR += bugzilla2atom
SUBDIR += buku
SUBDIR += butterfly
SUBDIR += c-icap
SUBDIR += c-icap-modules
SUBDIR += cadaver
SUBDIR += caddy
SUBDIR += caddy-custom
SUBDIR += calamaris
SUBDIR += calamaris-devel
SUBDIR += caldavzap
SUBDIR += carbonapi
SUBDIR += castget
SUBDIR += castor
SUBDIR += cgi-lib
SUBDIR += cgi-lib.pl
SUBDIR += cgicc
SUBDIR += cgichk
SUBDIR += cgiwrap
SUBDIR += checkbot
SUBDIR += chems
SUBDIR += chisel
SUBDIR += choqok
SUBDIR += chpasswd
SUBDIR += chrome-gnome-shell
SUBDIR += chromium
SUBDIR += cinny
SUBDIR += civetweb
SUBDIR += ckeditor
SUBDIR += cl-lml
SUBDIR += cl-lml-sbcl
SUBDIR += clearsilver
SUBDIR += closure-compiler
SUBDIR += cntlm
SUBDIR += cobalt
SUBDIR += codeigniter
SUBDIR += colly
SUBDIR += coppermine
SUBDIR += cplanet
SUBDIR += cpp-httplib
SUBDIR += cpr
SUBDIR += crawl
SUBDIR += css-mode.el
SUBDIR += cssed
SUBDIR += csso
SUBDIR += csstidy
SUBDIR += ctemplate
SUBDIR += cutelyst
SUBDIR += darkhttpd
SUBDIR += davical
SUBDIR += davix
SUBDIR += dddbl
SUBDIR += ddgr
SUBDIR += deno
SUBDIR += devd
SUBDIR += dfileserver
SUBDIR += dhttpd
SUBDIR += dillo2
SUBDIR += dojo
SUBDIR += dokuwiki
SUBDIR += dolibarr
SUBDIR += dolibarr16
SUBDIR += domoticz
SUBDIR += dooble
SUBDIR += dot-http
SUBDIR += drill
SUBDIR += drupal10
SUBDIR += drupal7
SUBDIR += drupal7-wysiwyg
SUBDIR += drupal8
SUBDIR += drupal9
SUBDIR += drush
SUBDIR += dtse
SUBDIR += dufs
SUBDIR += e107
SUBDIR += e2guardian
SUBDIR += edbrowse
SUBDIR += eden
SUBDIR += element-web
SUBDIR += elgg
SUBDIR += elinks
SUBDIR += emacs-w3m
SUBDIR += encode-explorer
SUBDIR += envoy
SUBDIR += eolie
SUBDIR += ephemera
SUBDIR += epiphany
SUBDIR += fabio
SUBDIR += falkon
SUBDIR += fancybox
SUBDIR += faup
SUBDIR += fcgi
SUBDIR += fcgiwrap
SUBDIR += ffproxy
SUBDIR += ffsend
SUBDIR += fgallery
SUBDIR += filtron
SUBDIR += firedm
SUBDIR += firefox
SUBDIR += firefox-esr
SUBDIR += flat-frog
SUBDIR += flexget
SUBDIR += flickcurl
SUBDIR += fnord
SUBDIR += formication
SUBDIR += foswiki
SUBDIR += fpc-fastcgi
SUBDIR += fpc-googleapi
SUBDIR += fpc-httpd22
SUBDIR += fpc-httpd24
SUBDIR += fpc-libmicrohttpd
SUBDIR += fpc-webidl
SUBDIR += free-sa-devel
SUBDIR += fswiki
SUBDIR += fusionpbx
SUBDIR += g-cows
SUBDIR += g-gcl
SUBDIR += gallery-dl
SUBDIR += gallery2
SUBDIR += garage
SUBDIR += gatling
SUBDIR += gauche-makiki
SUBDIR += geckodriver
SUBDIR += geneweb
SUBDIR += geolizer
SUBDIR += get_flash_videos
SUBDIR += ghostunnel
SUBDIR += gist
SUBDIR += gitea
SUBDIR += gitlab-ce
SUBDIR += gitlab-pages
SUBDIR += gitlab-workhorse
SUBDIR += glassfish
SUBDIR += glassfish4
SUBDIR += glewlwyd
SUBDIR += glpi
SUBDIR += gnome-user-share
SUBDIR += go-www
SUBDIR += gobuffalo
SUBDIR += gohugo
SUBDIR += googlebook_dl
SUBDIR += googler
SUBDIR += goose
SUBDIR += gophernicus
SUBDIR += gopherus
SUBDIR += gotty
SUBDIR += gpx2map
SUBDIR += grafana8
SUBDIR += grafana9
SUBDIR += grails
SUBDIR += gregarius
SUBDIR += groupoffice
SUBDIR += grr
SUBDIR += gstreamer1-plugins-neon
SUBDIR += gstreamer1-plugins-srt
SUBDIR += gtkhtml4
SUBDIR += guacamole-client
SUBDIR += guile-www
SUBDIR += gurl
SUBDIR += gwsocket
SUBDIR += h2c
SUBDIR += h2o
SUBDIR += h2o-devel
SUBDIR += habari
SUBDIR += hedgedoc
SUBDIR += hiawatha
SUBDIR += hiawatha-monitor
SUBDIR += hotcrp
SUBDIR += hs-DAV
SUBDIR += hs-hjsmin
SUBDIR += hs-postgrest
SUBDIR += hs-wai-app-static
SUBDIR += hs-yesod-bin
SUBDIR += htdigest
SUBDIR += htdump
SUBDIR += html2hdml
SUBDIR += html2wml
SUBDIR += htmlcompressor
SUBDIR += htmlcxx
SUBDIR += httest
SUBDIR += http-parser
SUBDIR += http_get
SUBDIR += http_load
SUBDIR += http_post
SUBDIR += httpasyncclient
SUBDIR += httpclient
SUBDIR += httpcore
SUBDIR += httptunnel
SUBDIR += httrack
SUBDIR += hurl
SUBDIR += hypermail
SUBDIR += icapeg
SUBDIR += igal2
SUBDIR += ikiwiki
SUBDIR += ilias
SUBDIR += interchange
SUBDIR += iridium
SUBDIR += itop
SUBDIR += janus
SUBDIR += jericho-html
SUBDIR += jesred
SUBDIR += jetty10
SUBDIR += jetty8
SUBDIR += jetty9
SUBDIR += jira-cli
SUBDIR += jitsi-meet
SUBDIR += jmeter
SUBDIR += joomla3
SUBDIR += joomla4
SUBDIR += jwt-cli
SUBDIR += kanboard
SUBDIR += kannel
SUBDIR += kannel-sqlbox
SUBDIR += kcgi
SUBDIR += kdsoap
SUBDIR += kf5-kdewebkit
SUBDIR += kf5-khtml
SUBDIR += kf5-kjs
SUBDIR += kf5-kjsembed
SUBDIR += kineto
SUBDIR += kiwix-tools
SUBDIR += kohana
SUBDIR += kristall
SUBDIR += lagrange
SUBDIR += larbin
SUBDIR += libapreq2
SUBDIR += libdatachannel
SUBDIR += libdom
SUBDIR += libecap
SUBDIR += libepc
SUBDIR += libevhtp
SUBDIR += libhsts
SUBDIR += libhubbub
SUBDIR += libjwt
SUBDIR += libmicrohttpd
SUBDIR += libnghttp2
SUBDIR += libnghttp3
SUBDIR += libresonic-standalone
SUBDIR += librespeed
SUBDIR += librewolf
SUBDIR += librtcdcpp
SUBDIR += libwpe
SUBDIR += libwww
SUBDIR += lightsquid
SUBDIR += lighttpd
SUBDIR += lighttpd-mod_h264_streaming
SUBDIR += limesurvey
SUBDIR += linklint
SUBDIR += links
SUBDIR += links1
SUBDIR += linux-c7-qtwebkit
SUBDIR += linux-opera
SUBDIR += litmus
SUBDIR += ljdeps
SUBDIR += llhttp
SUBDIR += logswan
SUBDIR += logtools
SUBDIR += ls-qpack
SUBDIR += lua-resty-core
SUBDIR += lua-resty-http
SUBDIR += lua-resty-lrucache
SUBDIR += luakit
SUBDIR += luakit-devel
SUBDIR += lux
SUBDIR += lychee
SUBDIR += lynx
SUBDIR += lynx-current
SUBDIR += lzr
SUBDIR += madsonic
SUBDIR += man2web
SUBDIR += mathjax
SUBDIR += mathjax3
SUBDIR += mathopd
SUBDIR += matomo
SUBDIR += mattermost-server
SUBDIR += mattermost-webapp
SUBDIR += mediawiki135
SUBDIR += mediawiki138
SUBDIR += mediawiki139
SUBDIR += mergelog
SUBDIR += mhonarc
SUBDIR += micro_httpd
SUBDIR += microbin
SUBDIR += middleman
SUBDIR += midori
SUBDIR += mimetex
SUBDIR += mini_httpd
SUBDIR += miniflux
SUBDIR += minio
SUBDIR += minio-client
SUBDIR += miniserve
SUBDIR += mirrorselect
SUBDIR += mitmproxy
SUBDIR += mknmz-wwwoffle
SUBDIR += mnogosearch
SUBDIR += mod_amazon_proxy
SUBDIR += mod_asn
SUBDIR += mod_auth_cas
SUBDIR += mod_auth_cookie_mysql2
SUBDIR += mod_auth_gssapi
SUBDIR += mod_auth_kerb2
SUBDIR += mod_auth_mellon
SUBDIR += mod_auth_mysql2
SUBDIR += mod_auth_mysql_another
SUBDIR += mod_auth_openid
SUBDIR += mod_auth_openidc
SUBDIR += mod_auth_pam2
SUBDIR += mod_auth_pgsql2
SUBDIR += mod_auth_pubtkt
SUBDIR += mod_auth_tkt
SUBDIR += mod_auth_xradius
SUBDIR += mod_authn_dovecot
SUBDIR += mod_authnz_external24
SUBDIR += mod_cfg_ldap
SUBDIR += mod_cloudflare
SUBDIR += mod_dav_svn
SUBDIR += mod_defensible
SUBDIR += mod_dnssd
SUBDIR += mod_evasive
SUBDIR += mod_fastcgi
SUBDIR += mod_fcgid
SUBDIR += mod_fileiri
SUBDIR += mod_gnutls
SUBDIR += mod_h264_streaming
SUBDIR += mod_http2
SUBDIR += mod_jk
SUBDIR += mod_limitipconn2
SUBDIR += mod_log_sql
SUBDIR += mod_maxminddb
SUBDIR += mod_memcache
SUBDIR += mod_memcache_block
SUBDIR += mod_mono
SUBDIR += mod_mpm_itk
SUBDIR += mod_perl2
SUBDIR += mod_php80
SUBDIR += mod_php81
SUBDIR += mod_php82
SUBDIR += mod_php83
SUBDIR += mod_proctitle
SUBDIR += mod_qos
SUBDIR += mod_realdoc
SUBDIR += mod_reproxy
SUBDIR += mod_rivet
SUBDIR += mod_rpaf2
SUBDIR += mod_scgi
SUBDIR += mod_security
SUBDIR += mod_setenvifplus
SUBDIR += mod_tidy
SUBDIR += mod_umask
SUBDIR += mod_webauth
SUBDIR += mod_webkit
SUBDIR += mod_wsgi4
SUBDIR += mod_xsendfile
SUBDIR += mohawk
SUBDIR += moinmoin
SUBDIR += moinmoincli
SUBDIR += mongoose
SUBDIR += mongrel2
SUBDIR += monolith
SUBDIR += moodle41
SUBDIR += moodle42
SUBDIR += morty
SUBDIR += mozplugger
SUBDIR += multisort
SUBDIR += multiwatch
SUBDIR += mybb
SUBDIR += mysqlphp2postgres
SUBDIR += mythplugin-mythweb
SUBDIR += nanoblogger
SUBDIR += nanoblogger-extra
SUBDIR += neon
SUBDIR += netrik
SUBDIR += netstiff
SUBDIR += netsurf
SUBDIR += newsboat
SUBDIR += nextcloud
SUBDIR += nextcloud-appointments
SUBDIR += nextcloud-calendar
SUBDIR += nextcloud-contacts
SUBDIR += nextcloud-deck
SUBDIR += nextcloud-forms
SUBDIR += nextcloud-groupfolders
SUBDIR += nextcloud-notes
SUBDIR += nextcloud-tasks
SUBDIR += nghttp2
SUBDIR += nginx
SUBDIR += nginx-devel
SUBDIR += nginx-full
SUBDIR += nginx-lite
SUBDIR += nginx-naxsi
SUBDIR += nginx-prometheus-exporter
SUBDIR += nginx-ultimate-bad-bot-blocker
SUBDIR += nginx-vts-exporter
SUBDIR += nibbleblog
SUBDIR += nift
SUBDIR += node
SUBDIR += node16
SUBDIR += node18
SUBDIR += node19
SUBDIR += node20
SUBDIR += nostromo
SUBDIR += novnc
SUBDIR += novnc-websockify
SUBDIR += npapi-xine
SUBDIR += npc
SUBDIR += npm
SUBDIR += npm-node16
SUBDIR += npm-node18
SUBDIR += npm-node19
SUBDIR += npm-node20
SUBDIR += oauth2-proxy
SUBDIR += obhttpd
SUBDIR += oneshot
SUBDIR += onionbalance
SUBDIR += onionshare
SUBDIR += onionshare-cli
SUBDIR += onlyoffice-documentserver
SUBDIR += opencart
SUBDIR += openresty
SUBDIR += orangehrm
SUBDIR += osrm-backend
SUBDIR += osticket
SUBDIR += ot-recorder
SUBDIR += otrs
SUBDIR += otter-browser
SUBDIR += owncast
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-CSRFDefender
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-ReverseHTTP
SUBDIR += p5-AnyEvent-SCGI
SUBDIR += p5-AnyEvent-WebSocket-Client
SUBDIR += p5-Apache-ASP
SUBDIR += p5-Apache-Admin-Config
SUBDIR += p5-Apache-AuthCookie
SUBDIR += p5-Apache-AuthTicket
SUBDIR += p5-Apache-Clean2
SUBDIR += p5-Apache-Config-Preproc
SUBDIR += p5-Apache-ConfigFile
SUBDIR += p5-Apache-ConfigParser
SUBDIR += p5-Apache-DB
SUBDIR += p5-Apache-DBI
SUBDIR += p5-Apache-Defaults
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
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-Fast
SUBDIR += p5-CGI-FastTemplate
SUBDIR += p5-CGI-FormBuilder
SUBDIR += p5-CGI-Framework
SUBDIR += p5-CGI-Kwiki
SUBDIR += p5-CGI-Lite
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-Tiny
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-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-Controller-SOAP
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-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-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-Alloy
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-Catalyst-View-vCard
SUBDIR += p5-CatalystX-AppBuilder
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-CatalystX-VirtualComponents
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-CORS
SUBDIR += p5-Dancer-Plugin-ExtDirect
SUBDIR += p5-Dancer-Plugin-Feed
SUBDIR += p5-Dancer-Plugin-FlashMessage
SUBDIR += p5-Dancer-Plugin-Lexicon
SUBDIR += p5-Dancer-Plugin-Memcached
SUBDIR += p5-Dancer-Plugin-REST
SUBDIR += p5-Dancer-Plugin-RPC
SUBDIR += p5-Dancer-Plugin-SiteMap
SUBDIR += p5-Dancer-Plugin-Swagger
SUBDIR += p5-Dancer-Plugin-ValidationClass
SUBDIR += p5-Dancer-Session-Cookie
SUBDIR += p5-Dancer-Template-Xslate
SUBDIR += p5-Dancer2
SUBDIR += p5-Dancer2-Plugin-Ajax
SUBDIR += p5-Dancer2-Plugin-Deferred
SUBDIR += p5-Dancer2-Plugin-FormValidator
SUBDIR += p5-Dancer2-Plugin-Interchange6
SUBDIR += p5-Dancer2-Plugin-Path-Class
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-Firefox-Marionette
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-Gazelle
SUBDIR += p5-Geo-Caching
SUBDIR += p5-Google-Search
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-Defang
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-Escape
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-FormFu-MultiForm
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-Gumbo
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-Restrict
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-HTML5-DOM
SUBDIR += p5-HTTP-AnyUA
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-Entity-Parser
SUBDIR += p5-HTTP-Exception
SUBDIR += p5-HTTP-HeaderParser-XS
SUBDIR += p5-HTTP-Headers-ActionPack
SUBDIR += p5-HTTP-Headers-Fast
SUBDIR += p5-HTTP-Link-Parser
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-MultiPartParser
SUBDIR += p5-HTTP-Negotiate
SUBDIR += p5-HTTP-OAI
SUBDIR += p5-HTTP-Parser
SUBDIR += p5-HTTP-Parser-XS
SUBDIR += p5-HTTP-Proxy
SUBDIR += p5-HTTP-ProxyPAC
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-Simple
SUBDIR += p5-HTTP-SimpleLinkChecker
SUBDIR += p5-HTTP-Size
SUBDIR += p5-HTTP-Thin
SUBDIR += p5-HTTP-Throwable
SUBDIR += p5-HTTP-Tiny
SUBDIR += p5-HTTP-Tiny-Multipart
SUBDIR += p5-HTTP-Tiny-SPDY
SUBDIR += p5-HTTP-Tiny-UA
SUBDIR += p5-HTTP-Tiny-UNIX
SUBDIR += p5-HTTP-WebTest
SUBDIR += p5-HTTP-XSCookies
SUBDIR += p5-HTTPD-Log-Filter
SUBDIR += p5-HTTPD-User-Manage
SUBDIR += p5-Hijk
SUBDIR += p5-I18N-AcceptLanguage
SUBDIR += p5-IMDB-Film
SUBDIR += p5-Image-Delivery
SUBDIR += p5-Interchange6
SUBDIR += p5-JE
SUBDIR += p5-JSON-API
SUBDIR += p5-JSON-WebToken
SUBDIR += p5-Jemplate
SUBDIR += p5-Jifty
SUBDIR += p5-LWP-Authen-Negotiate
SUBDIR += p5-LWP-Authen-OAuth
SUBDIR += p5-LWP-Authen-OAuth2
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-connect
SUBDIR += p5-LWP-Protocol-http10
SUBDIR += p5-LWP-Protocol-https
SUBDIR += p5-LWP-Protocol-socks
SUBDIR += p5-LWP-UserAgent-Cached
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