aboutsummaryrefslogtreecommitdiff
path: root/net/Makefile
blob: 4f2eb9bf93d7851c830f82433b48253ad3f6dc45 (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
    COMMENT = Networking tools

    SUBDIR += 3proxy
    SUBDIR += 44bsd-rdist
    SUBDIR += 6tunnel
    SUBDIR += R-cran-twitteR
    SUBDIR += Sockets
    SUBDIR += activemq
    SUBDIR += adasockets
    SUBDIR += addrwatch
    SUBDIR += afpfs-ng
    SUBDIR += aget
    SUBDIR += akonadi-calendar
    SUBDIR += akonadi-contacts
    SUBDIR += akonadi-mime
    SUBDIR += akonadi-notes
    SUBDIR += akonadi-search
    SUBDIR += aluminum
    SUBDIR += anet
    SUBDIR += aoe
    SUBDIR += apache-commons-net
    SUBDIR += apinger
    SUBDIR += appkonference
    SUBDIR += aprsc
    SUBDIR += aquantia-atlantic-kmod
    SUBDIR += arataga
    SUBDIR += arp-scan
    SUBDIR += arp-sk
    SUBDIR += arpdig
    SUBDIR += arping
    SUBDIR += arpoison
    SUBDIR += arprelease
    SUBDIR += asio
    SUBDIR += aslookup
    SUBDIR += asterisk-chan_sccp
    SUBDIR += asterisk-g72x
    SUBDIR += asterisk13
    SUBDIR += asterisk16
    SUBDIR += asterisk18
    SUBDIR += astron
    SUBDIR += avahi
    SUBDIR += avahi-app
    SUBDIR += avahi-autoipd
    SUBDIR += avahi-gtk
    SUBDIR += avahi-gtk3
    SUBDIR += avahi-header
    SUBDIR += avahi-libdns
    SUBDIR += avahi-qt5
    SUBDIR += avahi-sharp
    SUBDIR += axa
    SUBDIR += babeld
    SUBDIR += balance
    SUBDIR += bctoolbox
    SUBDIR += beacon
    SUBDIR += beanstalkd
    SUBDIR += belle-sip
    SUBDIR += bindtest
    SUBDIR += binkd
    SUBDIR += bird
    SUBDIR += bird2
    SUBDIR += bittwist
    SUBDIR += bmon
    SUBDIR += boinc-client
    SUBDIR += boinc_curses
    SUBDIR += bosh-bootloader
    SUBDIR += bosh-cli
    SUBDIR += bounce
    SUBDIR += bredbandskollen
    SUBDIR += bsdec2-image-upload
    SUBDIR += bsdrcmds
    SUBDIR += bwi-firmware-kmod
    SUBDIR += bwn-firmware-kmod
    SUBDIR += bwping
    SUBDIR += c3270
    SUBDIR += calendarsupport
    SUBDIR += ccxstream
    SUBDIR += ceph14
    SUBDIR += cf
    SUBDIR += charm
    SUBDIR += chrony
    SUBDIR += chrony-lite
    SUBDIR += citrix_ica
    SUBDIR += cjdns
    SUBDIR += clash
    SUBDIR += cloud-init
    SUBDIR += cloudflared
    SUBDIR += cloudquery
    SUBDIR += clusterit
    SUBDIR += cnd
    SUBDIR += concourse-fly
    SUBDIR += corkscrew
    SUBDIR += corosync2
    SUBDIR += corosync3
    SUBDIR += courier-authlib-ldap
    SUBDIR += courier-sox
    SUBDIR += cpp-pcp-client
    SUBDIR += cppzmq
    SUBDIR += croc
    SUBDIR += cryptcat
    SUBDIR += csocks
    SUBDIR += csync2
    SUBDIR += ctrace
    SUBDIR += cvsup-static
    SUBDIR += cvsync
    SUBDIR += czmq
    SUBDIR += czmq4
    SUBDIR += daemonlogger
    SUBDIR += dante
    SUBDIR += daq
    SUBDIR += datapipe
    SUBDIR += dbeacon
    SUBDIR += delegate
    SUBDIR += deviceatlas-enterprise-c
    SUBDIR += dgd
    SUBDIR += dgd-kernel
    SUBDIR += dgd-lpmud
    SUBDIR += dhcp6
    SUBDIR += dhcpcd
    SUBDIR += dhcpcd-ui
    SUBDIR += dhcpd
    SUBDIR += dhcpd-pools
    SUBDIR += dhcpdump
    SUBDIR += dhcperf
    SUBDIR += dhcping
    SUBDIR += dhcprelya
    SUBDIR += dictd
    SUBDIR += dimes
    SUBDIR += dpdk
    SUBDIR += dpinger
    SUBDIR += drawterm
    SUBDIR += drive
    SUBDIR += dropbox-api-command
    SUBDIR += dropbox-uploader
    SUBDIR += dtcp
    SUBDIR += dtcpclient
    SUBDIR += dual-dhclient
    SUBDIR += dual-dhclient-daemon
    SUBDIR += easysoap
    SUBDIR += echoping
    SUBDIR += elixir-kafka_ex
    SUBDIR += elixir-oauth2
    SUBDIR += empty
    SUBDIR += endlessh
    SUBDIR += enet
    SUBDIR += erlang-ranch
    SUBDIR += eternalterminal
    SUBDIR += evans
    SUBDIR += eventviews
    SUBDIR += exabgp4
    SUBDIR += fb303
    SUBDIR += fbzmq
    SUBDIR += fiche
    SUBDIR += file2pcap
    SUBDIR += findmtu
    SUBDIR += findomain
    SUBDIR += flower
    SUBDIR += foreman-proxy
    SUBDIR += fpc-ldap
    SUBDIR += fpc-libenet
    SUBDIR += fpc-pcap
    SUBDIR += fping
    SUBDIR += freebsd-uucp
    SUBDIR += freediameter
    SUBDIR += freeradius-client
    SUBDIR += freeradius3
    SUBDIR += freerdp
    SUBDIR += freeswitch
    SUBDIR += freevrrpd
    SUBDIR += frp
    SUBDIR += frr7
    SUBDIR += frr7-pythontools
    SUBDIR += fspclient
    SUBDIR += fspd
    SUBDIR += fsplib
    SUBDIR += gamenetworkingsockets
    SUBDIR += gdrive
    SUBDIR += gemserv
    SUBDIR += geoclue
    SUBDIR += geocode-glib
    SUBDIR += geoipupdate
    SUBDIR += gerbera
    SUBDIR += gfbgraph
    SUBDIR += gitlab-agent
    SUBDIR += gitup
    SUBDIR += glflow
    SUBDIR += glib-networking
    SUBDIR += glusterfs
    SUBDIR += gmid
    SUBDIR += gnet2
    SUBDIR += gnetcat
    SUBDIR += gnome-nettool
    SUBDIR += gnome-online-accounts
    SUBDIR += gnome-online-miners
    SUBDIR += gnu-dico
    SUBDIR += gnu-radius
    SUBDIR += go-bapu
    SUBDIR += go-cs
    SUBDIR += gobgp
    SUBDIR += gofish
    SUBDIR += gogoc
    SUBDIR += google-cloud-sdk
    SUBDIR += google-cloud-sdk-app-engine-go
    SUBDIR += gopher
    SUBDIR += goreplay
    SUBDIR += gotthard
    SUBDIR += gq
    SUBDIR += graphpath
    SUBDIR += grilo
    SUBDIR += grilo-plugins
    SUBDIR += grive2
    SUBDIR += grpcox
    SUBDIR += grpcui
    SUBDIR += grpcurl
    SUBDIR += grsync
    SUBDIR += gscloud
    SUBDIR += gsk
    SUBDIR += gsocket
    SUBDIR += gspoof
    SUBDIR += gssdp
    SUBDIR += gstreamer1-plugins-libmms
    SUBDIR += gstreamer1-plugins-srtp
    SUBDIR += gtk-vnc
    SUBDIR += guacamole-server
    SUBDIR += gupnp
    SUBDIR += gupnp-av
    SUBDIR += gupnp-dlna
    SUBDIR += gupnp-igd
    SUBDIR += gupnp-ui
    SUBDIR += gutenfetch
    SUBDIR += gwhois
    SUBDIR += h323plus
    SUBDIR += hanstunnel
    SUBDIR += haproxy
    SUBDIR += haproxy-devel
    SUBDIR += haproxy17
    SUBDIR += haproxy18
    SUBDIR += haproxy19
    SUBDIR += haproxy20
    SUBDIR += haproxy21
    SUBDIR += haproxy22
    SUBDIR += haproxy23
    SUBDIR += hblock
    SUBDIR += hexinject
    SUBDIR += hlmaster
    SUBDIR += honeyd
    SUBDIR += hostapd
    SUBDIR += hostapd-devel
    SUBDIR += hping
    SUBDIR += hping3
    SUBDIR += hsflowd
    SUBDIR += htpdate
    SUBDIR += http_ping
    SUBDIR += httping
    SUBDIR += httpry
    SUBDIR += iaxmodem
    SUBDIR += icmpinfo
    SUBDIR += icpld
    SUBDIR += ifdepd
    SUBDIR += iffinder
    SUBDIR += ifstat
    SUBDIR += ifstated
    SUBDIR += igmpproxy
    SUBDIR += iipsrv
    SUBDIR += ilbc
    SUBDIR += imapproxy
    SUBDIR += incidenceeditor
    SUBDIR += inlets
    SUBDIR += intel-em-kmod
    SUBDIR += intel-ix-kmod
    SUBDIR += intel-ixl-kmod
    SUBDIR += iodine
    SUBDIR += ip2location
    SUBDIR += ip2proxy
    SUBDIR += ip6_int
    SUBDIR += ipdecap
    SUBDIR += ipgrab
    SUBDIR += ipsumdump
    SUBDIR += ipsvd
    SUBDIR += ipxe
    SUBDIR += irrd
    SUBDIR += irrd-legacy
    SUBDIR += isboot-kmod
    SUBDIR += isc-dhcp44-client
    SUBDIR += isc-dhcp44-relay
    SUBDIR += isc-dhcp44-server
    SUBDIR += istgt
    SUBDIR += java-beepcore
    SUBDIR += jcifs
    SUBDIR += jgroups
    SUBDIR += jicmp
    SUBDIR += jicmp6
    SUBDIR += jose
    SUBDIR += jrdesktop
    SUBDIR += jsch
    SUBDIR += jumpgate
    SUBDIR += jwhois
    SUBDIR += k6
    SUBDIR += kafka
    SUBDIR += kafkacat
    SUBDIR += kalarmcal
    SUBDIR += kamailio
    SUBDIR += kcalutils
    SUBDIR += kdenetwork
    SUBDIR += kdenetwork-filesharing
    SUBDIR += kea
    SUBDIR += keycloak
    SUBDIR += kf5-kcalendarcore
    SUBDIR += kf5-kcontacts
    SUBDIR += kf5-kdav
    SUBDIR += kf5-kholidays
    SUBDIR += kf5-kxmlrpcclient
    SUBDIR += kf5-syndication
    SUBDIR += kget
    SUBDIR += kidentitymanagement
    SUBDIR += kimap
    SUBDIR += kio-gdrive
    SUBDIR += kippo
    SUBDIR += kissd
    SUBDIR += kitinerary
    SUBDIR += kldap
    SUBDIR += kmailtransport
    SUBDIR += kmbox
    SUBDIR += kmime
    SUBDIR += knc
    SUBDIR += knxd
    SUBDIR += kontactinterface
    SUBDIR += kpeoplevcard
    SUBDIR += kpimtextedit
    SUBDIR += krdc
    SUBDIR += krfb
    SUBDIR += ksmtp
    SUBDIR += ktnef
    SUBDIR += kube-controller-manager
    SUBDIR += kube-scheduler
    SUBDIR += l2tpd
    SUBDIR += ladvd
    SUBDIR += lambdamoo
    SUBDIR += latd
    SUBDIR += ldap-stats
    SUBDIR += ldapbrowser
    SUBDIR += ldapdiff
    SUBDIR += ldapscripts
    SUBDIR += ldapsdk
    SUBDIR += ldapsh
    SUBDIR += leproxy
    SUBDIR += lft
    SUBDIR += libarcus
    SUBDIR += libarms
    SUBDIR += libbgpdump
    SUBDIR += libcapn
    SUBDIR += libcharon
    SUBDIR += libcmis
    SUBDIR += libcoap
    SUBDIR += libdaq
    SUBDIR += libdmapsharing
    SUBDIR += libdnet
    SUBDIR += libexosip2
    SUBDIR += libfabric
    SUBDIR += libfb
    SUBDIR += libfixbuf
    SUBDIR += libgnetwork
    SUBDIR += libgravatar
    SUBDIR += libgrss
    SUBDIR += libgweather
    SUBDIR += libilbc
    SUBDIR += libiscsi
    SUBDIR += libkgapi
    SUBDIR += libksieve
    SUBDIR += libkvkontakte
    SUBDIR += liblinphone
    SUBDIR += libmaia
    SUBDIR += libmateweather
    SUBDIR += libmaxminddb
    SUBDIR += libmdf
    SUBDIR += libmediawiki
    SUBDIR += libmms
    SUBDIR += libnatpmp
    SUBDIR += libnet
    SUBDIR += libnfs
    SUBDIR += libngtcp2
    SUBDIR += libnids
    SUBDIR += libnpupnp
    SUBDIR += libnss-cache
    SUBDIR += libnss-mysql
    SUBDIR += libnss-pgsql
    SUBDIR += liboauth
    SUBDIR += libopennet
    SUBDIR += liboping
    SUBDIR += libosip2
    SUBDIR += libpcap
    SUBDIR += libpcapnav
    SUBDIR += libpfctl
    SUBDIR += libproxy
    SUBDIR += libproxy-gnome3
    SUBDIR += libproxy-kde
    SUBDIR += libproxy-pacrunner
    SUBDIR += libproxy-perl
    SUBDIR += libproxy-python
    SUBDIR += libproxy-webkit3
    SUBDIR += librdkafka
    SUBDIR += librespeed-cli
    SUBDIR += librespeed-go
    SUBDIR += librsync
    SUBDIR += libsignal-protocol-c
    SUBDIR += libsrtp2
    SUBDIR += libstorj
    SUBDIR += libtnl
    SUBDIR += libtrace
    SUBDIR += libunp
    SUBDIR += libusipp
    SUBDIR += libusrsctp
    SUBDIR += libutp
    SUBDIR += libvncserver
    SUBDIR += libwebsockets
    SUBDIR += libyang
    SUBDIR += libzapojit
    SUBDIR += libzmq2
    SUBDIR += libzmq3
    SUBDIR += libzmq4
    SUBDIR += liferea
    SUBDIR += linknx
    SUBDIR += linphone
    SUBDIR += linux-c7-avahi-libs
    SUBDIR += linux-c7-openldap
    SUBDIR += linux-c7-tcp_wrappers-libs
    SUBDIR += liveMedia
    SUBDIR += lla
    SUBDIR += lualdap
    SUBDIR += luasocket
    SUBDIR += mDNSResponder
    SUBDIR += macchanger
    SUBDIR += mad_fcl
    SUBDIR += madonctl
    SUBDIR += mailcommon
    SUBDIR += mailimporter
    SUBDIR += malo-firmware-kmod
    SUBDIR += mcjoin
    SUBDIR += mdns-repeater
    SUBDIR += measurement-kit
    SUBDIR += mediastreamer
    SUBDIR += megacmd
    SUBDIR += megatools
    SUBDIR += messagelib
    SUBDIR += mgen
    SUBDIR += micro_inetd
    SUBDIR += micro_proxy
    SUBDIR += microsocks
    SUBDIR += minidlna
    SUBDIR += minisapserver
    SUBDIR += minissdpd
    SUBDIR += miniupnpc
    SUBDIR += miniupnpd
    SUBDIR += miredo
    SUBDIR += miruo
    SUBDIR += mlvpn
    SUBDIR += mobile-broadband-provider-info
    SUBDIR += mod_amd
    SUBDIR += mopd
    SUBDIR += mosh
    SUBDIR += mosquitto
    SUBDIR += motsognir
    SUBDIR += mpd-l2tp-ipv6pd-client
    SUBDIR += mpd5
    SUBDIR += mpich
    SUBDIR += mpich2
    SUBDIR += mping
    SUBDIR += mptsd
    SUBDIR += mrouted
    SUBDIR += mrtparse
    SUBDIR += msend
    SUBDIR += mtr
    SUBDIR += mtr-nox11
    SUBDIR += multicat
    SUBDIR += mvfst
    SUBDIR += nakenchat
    SUBDIR += nanomsg
    SUBDIR += nast
    SUBDIR += nats-server
    SUBDIR += nats-streaming-server
    SUBDIR += nats-top
    SUBDIR += nbd-server
    SUBDIR += nbdkit
    SUBDIR += nc
    SUBDIR += ncp
    SUBDIR += ndisc6
    SUBDIR += ndpi
    SUBDIR += ndproxy
    SUBDIR += neatvnc
    SUBDIR += nepenthes
    SUBDIR += net6
    SUBDIR += netatalk3
    SUBDIR += netcat
    SUBDIR += netembryo
    SUBDIR += nethogs
    SUBDIR += netmap
    SUBDIR += netpipes
    SUBDIR += netscript
    SUBDIR += netsed
    SUBDIR += netselect
    SUBDIR += netstrain
    SUBDIR += netwib
    SUBDIR += nfs-ganesha-kmod
    SUBDIR += nfsshell
    SUBDIR += ng_mikrotik_eoip
    SUBDIR += ngrep
    SUBDIR += nifmon
    SUBDIR += nitroshare
    SUBDIR += nload
    SUBDIR += nmsg
    SUBDIR += nncp
    SUBDIR += nng
    SUBDIR += norm
    SUBDIR += ns3
    SUBDIR += nsq
    SUBDIR += nss-pam-ldapd
    SUBDIR += nss-pam-ldapd-sasl
    SUBDIR += nss_ldap
    SUBDIR += nsscache
    SUBDIR += ntimed
    SUBDIR += ntopng
    SUBDIR += ntp
    SUBDIR += ntpa
    SUBDIR += ntpsec
    SUBDIR += ntraceroute
    SUBDIR += nusoap
    SUBDIR += nuster
    SUBDIR += nxproxy
    SUBDIR += nyancat
    SUBDIR += nylon
    SUBDIR += ocserv
    SUBDIR += oha
    SUBDIR += olsrd
    SUBDIR += omnitty
    SUBDIR += onedrive
    SUBDIR += onenetd
    SUBDIR += onioncat
    SUBDIR += ooni-mini
    SUBDIR += ooni-probe-cli
    SUBDIR += opal
    SUBDIR += open-isns
    SUBDIR += openbgpd
    SUBDIR += openbgpd6
    SUBDIR += openggsn
    SUBDIR += openldap24-client
    SUBDIR += openldap24-sasl-client
    SUBDIR += openldap24-server
    SUBDIR += openmdns
    SUBDIR += openmpi
    SUBDIR += openmpi3
    SUBDIR += openntpd
    SUBDIR += opennx
    SUBDIR += openpgm
    SUBDIR += openradius
    SUBDIR += openrsync
    SUBDIR += openslp
    SUBDIR += opentracker
    SUBDIR += openvswitch
    SUBDIR += ortp
    SUBDIR += osrtspproxy
    SUBDIR += ossp-sa
    SUBDIR += owamp
    SUBDIR += p5-Acme-HTTP
    SUBDIR += p5-AddressBook
    SUBDIR += p5-Amazon-SQS-Simple
    SUBDIR += p5-AnyEvent-MPRPC
    SUBDIR += p5-AnyEvent-MQTT
    SUBDIR += p5-AnyEvent-RabbitMQ
    SUBDIR += p5-AnyEvent-Twitter
    SUBDIR += p5-AnyEvent-Twitter-Stream
    SUBDIR += p5-AnyMQ-AMQP
    SUBDIR += p5-Apache2-SOAP
    SUBDIR += p5-BBS-Client
    SUBDIR += p5-BBS-UserInfo
    SUBDIR += p5-BBS-UserInfo-Maple3
    SUBDIR += p5-BBS-UserInfo-Maple3itoc
    SUBDIR += p5-BBS-UserInfo-Ptt
    SUBDIR += p5-BBS-UserInfo-SOB
    SUBDIR += p5-BBS-UserInfo-Wretch
    SUBDIR += p5-Beanstalk-Client
    SUBDIR += p5-Cisco-IPPhone
    SUBDIR += p5-Crypt-DH-GMP
    SUBDIR += p5-Daemon-Generic
    SUBDIR += p5-Data-IPV4-Range-Parse
    SUBDIR += p5-EasyTCP
    SUBDIR += p5-Event-tcp
    SUBDIR += p5-File-Rsync
    SUBDIR += p5-File-RsyncP
    SUBDIR += p5-Frontier-RPC
    SUBDIR += p5-Geo-IP-PurePerl
    SUBDIR += p5-Geo-IPfree
    SUBDIR += p5-GeoIP2
    SUBDIR += p5-Google-SAML-Request
    SUBDIR += p5-Google-SAML-Response
    SUBDIR += p5-Growl-GNTP
    SUBDIR += p5-IO-Interface
    SUBDIR += p5-IO-Socket-INET6
    SUBDIR += p5-IO-Socket-IP
    SUBDIR += p5-IO-Socket-Multicast
    SUBDIR += p5-IO-Socket-Multicast6
    SUBDIR += p5-IO-Socket-Socks
    SUBDIR += p5-IO-Socket-Socks-Wrapper
    SUBDIR += p5-IO-Socket-Timeout
    SUBDIR += p5-IO-Socket-UNIX-Util
    SUBDIR += p5-IP-Anonymous
    SUBDIR += p5-IP-Country
    SUBDIR += p5-IPC-Session
    SUBDIR += p5-IPv6-Address
    SUBDIR += p5-JavaScript-RPC
    SUBDIR += p5-Kafka
    SUBDIR += p5-MaxMind-DB-Common
    SUBDIR += p5-MaxMind-DB-Reader
    SUBDIR += p5-MaxMind-DB-Reader-XS
    SUBDIR += p5-MaxMind-DB-Writer
    SUBDIR += p5-Mojo-RabbitMQ-Client
    SUBDIR += p5-Net
    SUBDIR += p5-Net-ACME2
    SUBDIR += p5-Net-AMQP
    SUBDIR += p5-Net-AMQP-RabbitMQ
    SUBDIR += p5-Net-APNS
    SUBDIR += p5-Net-APNs-Extended
    SUBDIR += p5-Net-ARP
    SUBDIR += p5-Net-Address-Ethernet
    SUBDIR += p5-Net-Address-IPv4-Local
    SUBDIR += p5-Net-Amazon
    SUBDIR += p5-Net-Amazon-AWSSign
    SUBDIR += p5-Net-Amazon-EC2
    SUBDIR += p5-Net-Amazon-MechanicalTurk
    SUBDIR += p5-Net-Amazon-S3
    SUBDIR += p5-Net-Amazon-Signature
    SUBDIR += p5-Net-Amazon-Signature-V3
    SUBDIR += p5-Net-Amazon-Signature-V4
    SUBDIR += p5-Net-Amazon-Thumbnail
    SUBDIR += p5-Net-Analysis
    SUBDIR += p5-Net-Appliance-Phrasebook
    SUBDIR += p5-Net-Appliance-Session
    SUBDIR += p5-Net-BGP
    SUBDIR += p5-Net-Blogger
    SUBDIR += p5-Net-CIDR-Lite
    SUBDIR += p5-Net-CIDR-MobileJP
    SUBDIR += p5-Net-CIDR-Set
    SUBDIR += p5-Net-CLI-Interact
    SUBDIR += p5-Net-CSTA
    SUBDIR += p5-Net-CascadeCopy
    SUBDIR += p5-Net-Cassandra
    SUBDIR += p5-Net-Cassandra-Easy
    SUBDIR += p5-Net-Connection
    SUBDIR += p5-Net-Connection-Match
    SUBDIR += p5-Net-Connection-Sort
    SUBDIR += p5-Net-Connection-lsof
    SUBDIR += p5-Net-Connection-ncnetstat
    SUBDIR += p5-Net-DAV-Server
    SUBDIR += p5-Net-DHCP
    SUBDIR += p5-Net-DHCP-Watch
    SUBDIR += p5-Net-DHCPClient
    SUBDIR += p5-Net-DLookup
    SUBDIR += p5-Net-Daemon
    SUBDIR += p5-Net-Delicious
    SUBDIR += p5-Net-Dict
    SUBDIR += p5-Net-Divert
    SUBDIR += p5-Net-Dropbox-API
    SUBDIR += p5-Net-EPP
    SUBDIR += p5-Net-EPP-Proxy
    SUBDIR += p5-Net-FS-Flickr
    SUBDIR += p5-Net-FS-Gmail
    SUBDIR += p5-Net-FTP-AutoReconnect
    SUBDIR += p5-Net-FTP-File
    SUBDIR += p5-Net-Finger
    SUBDIR += p5-Net-Flow
    SUBDIR += p5-Net-Frame
    SUBDIR += p5-Net-Frame-Device
    SUBDIR += p5-Net-Frame-Dump
    SUBDIR += p5-Net-Frame-Layer-ICMPv6
    SUBDIR += p5-Net-Frame-Layer-IPv6
    SUBDIR += p5-Net-Frame-Simple
    SUBDIR += p5-Net-GitHub
    SUBDIR += p5-Net-Gnats
    SUBDIR += p5-Net-Google
    SUBDIR += p5-Net-Google-Analytics
    SUBDIR += p5-Net-Google-AuthSub
    SUBDIR += p5-Net-Google-Calendar
    SUBDIR += p5-Net-Google-Code
    SUBDIR += p5-Net-Google-DataAPI
    SUBDIR += p5-Net-Google-PicasaWeb
    SUBDIR += p5-Net-Google-SafeBrowsing2
    SUBDIR += p5-Net-Google-Spreadsheets
    SUBDIR += p5-Net-Growl
    SUBDIR += p5-Net-GrowlClient
    SUBDIR += p5-Net-HL7
    SUBDIR += p5-Net-HTTP
    SUBDIR += p5-Net-HTTP-Spore
    SUBDIR += p5-Net-HTTP-Spore-Middleware-Header
    SUBDIR += p5-Net-HTTPS-Any
    SUBDIR += p5-Net-HTTPS-NB
    SUBDIR += p5-Net-Hiveminder
    SUBDIR += p5-Net-INET6Glue
    SUBDIR += p5-Net-IP-Minimal
    SUBDIR += p5-Net-IP-RangeCompare
    SUBDIR += p5-Net-IPTrie
    SUBDIR += p5-Net-IRR
    SUBDIR += p5-Net-Ident
    SUBDIR += p5-Net-Ifconfig-Wrapper
    SUBDIR += p5-Net-Interface
    SUBDIR += p5-Net-Jifty
    SUBDIR += p5-Net-LDAP-AutoDNs
    SUBDIR += p5-Net-LDAP-AutoServer
    SUBDIR += p5-Net-LDAP-Express
    SUBDIR += p5-Net-LDAP-FilterBuilder
    SUBDIR += p5-Net-LDAP-LDAPhash
    SUBDIR += p5-Net-LDAP-Makepath
    SUBDIR += p5-Net-LDAP-Server
    SUBDIR += p5-Net-LDAP-Server-Test
    SUBDIR += p5-Net-LDAP-posixAccount
    SUBDIR += p5-Net-LDAP-posixGroup
    SUBDIR += p5-Net-Libdnet
    SUBDIR += p5-Net-Libdnet6
    SUBDIR += p5-Net-LimeLight-Purge
    SUBDIR += p5-Net-MAC
    SUBDIR += p5-Net-MAC-Vendor
    SUBDIR += p5-Net-MQTT
    SUBDIR += p5-Net-Mosso-CloudFiles
    SUBDIR += p5-Net-MovableType
    SUBDIR += p5-Net-NBName
    SUBDIR += p5-Net-NBsocket
    SUBDIR += p5-Net-NIS
    SUBDIR += p5-Net-NIS-Listgroup
    SUBDIR += p5-Net-NTP
    SUBDIR += p5-Net-Nessus-XMLRPC
    SUBDIR += p5-Net-Netcat
    SUBDIR += p5-Net-Nmsg
    SUBDIR += p5-Net-OAuth
    SUBDIR += p5-Net-OAuth-Simple
    SUBDIR += p5-Net-OAuth2
    SUBDIR += p5-Net-OpenID-Consumer
    SUBDIR += p5-Net-OpenSSH
    SUBDIR += p5-Net-OpenSSH-Parallel
    SUBDIR += p5-Net-OpenStack-Attack
    SUBDIR += p5-Net-Packet
    SUBDIR += p5-Net-Packet-Target
    SUBDIR += p5-Net-ParseWhois
    SUBDIR += p5-Net-Patricia
    SUBDIR += p5-Net-Pcap
    SUBDIR += p5-Net-PcapUtils
    SUBDIR += p5-Net-Ping
    SUBDIR += p5-Net-Ping-External
    SUBDIR += p5-Net-Proxy
    SUBDIR += p5-Net-PubSubHubbub-Publisher
    SUBDIR += p5-Net-RTP
    SUBDIR += p5-Net-RabbitFoot
    SUBDIR += p5-Net-RabbitMQ
    SUBDIR += p5-Net-Radius
    SUBDIR += p5-Net-Random
    SUBDIR += p5-Net-RawIP
    SUBDIR += p5-Net-Rendezvous-Publish
    SUBDIR += p5-Net-Riak
    SUBDIR += p5-Net-Rsh
    SUBDIR += p5-Net-SAP
    SUBDIR += p5-Net-SCP
    SUBDIR += p5-Net-SCP-Expect
    SUBDIR += p5-Net-SDP
    SUBDIR += p5-Net-SFTP
    SUBDIR += p5-Net-SFTP-Foreign
    SUBDIR += p5-Net-SIP
    SUBDIR += p5-Net-SMPP
    SUBDIR += p5-Net-SMS-Clickatell
    SUBDIR += p5-Net-SMS-Mollie
    SUBDIR += p5-Net-SMS-PChome
    SUBDIR += p5-Net-SNPP
    SUBDIR += p5-Net-SPDY
    SUBDIR += p5-Net-SSH
    SUBDIR += p5-Net-SSH-Expect
    SUBDIR += p5-Net-SSH-Mechanize
    SUBDIR += p5-Net-SSH-Perl
    SUBDIR += p5-Net-SSH2
    SUBDIR += p5-Net-STOMP-Client
    SUBDIR += p5-Net-Server
    SUBDIR += p5-Net-Server-Coro
    SUBDIR += p5-Net-Server-SS-PreFork
    SUBDIR += p5-Net-Subnet
    SUBDIR += p5-Net-Syslog
    SUBDIR += p5-Net-TCLink
    SUBDIR += p5-Net-TacacsPlus
    SUBDIR += p5-Net-TcpDumpLog
    SUBDIR += p5-Net-Telnet
    SUBDIR += p5-Net-Telnet-Netscreen
    SUBDIR += p5-Net-TiVo
    SUBDIR += p5-Net-Todoist
    SUBDIR += p5-Net-Traceroute
    SUBDIR += p5-Net-Traceroute-PurePerl
    SUBDIR += p5-Net-Traceroute6
    SUBDIR += p5-Net-Trackback
    SUBDIR += p5-Net-Twitter
    SUBDIR += p5-Net-Twitter-Lite
    SUBDIR += p5-Net-VNC
    SUBDIR += p5-Net-Wake
    SUBDIR += p5-Net-WhitePages
    SUBDIR += p5-Net-Whois
    SUBDIR += p5-Net-Whois-ARIN
    SUBDIR += p5-Net-Whois-IP
    SUBDIR += p5-Net-Whois-RIPE
    SUBDIR += p5-Net-Whois-Raw
    SUBDIR += p5-Net-Works
    SUBDIR += p5-Net-Write
    SUBDIR += p5-Net-XWhois
    SUBDIR += p5-Net-Yadis
    SUBDIR += p5-Net-Z3950-SimpleServer
    SUBDIR += p5-Net-Z3950-ZOOM
    SUBDIR += p5-Net-ext
    SUBDIR += p5-Net-sFlow
    SUBDIR += p5-Net-uFTP
    SUBDIR += p5-NetAddr-IP-Count
    SUBDIR += p5-NetAddr-MAC
    SUBDIR += p5-NetPacket
    SUBDIR += p5-OAI-Harvester
    SUBDIR += p5-OurNet-BBS
    SUBDIR += p5-OurNet-BBSAgent
    SUBDIR += p5-POE-Component-Client-Ident
    SUBDIR += p5-POE-Component-Client-Keepalive
    SUBDIR += p5-POE-Component-Client-Ping
    SUBDIR += p5-POE-Component-Client-Telnet
    SUBDIR += p5-POE-Component-Client-Traceroute
    SUBDIR += p5-POE-Component-Client-Twitter
    SUBDIR += p5-POE-Component-Client-Whois
    SUBDIR += p5-POE-Component-ControlPort
    SUBDIR += p5-POE-Component-Generic
    SUBDIR += p5-POE-Component-Jabber
    SUBDIR += p5-POE-Component-Pcap
    SUBDIR += p5-POE-Component-PubSub
    SUBDIR += p5-POE-Component-Server-Twirc
    SUBDIR += p5-POEx-Role-TCPServer
    SUBDIR += p5-POSIX-Socket
    SUBDIR += p5-POSIX-getpeername
    SUBDIR += p5-Parallel-Pvm
    SUBDIR += p5-Parse-Netstat
    SUBDIR += p5-Phone-Info
    SUBDIR += p5-PlRPC
    SUBDIR += p5-Queue-Beanstalk
    SUBDIR += p5-REST-Application
    SUBDIR += p5-REST-Google
    SUBDIR += p5-RPC-EPC-Service
    SUBDIR += p5-RPC-Simple
    SUBDIR += p5-RPC-XML
    SUBDIR += p5-ResourcePool-Resource-Net-LDAP
    SUBDIR += p5-ResourcePool-Resource-SOAP-Lite
    SUBDIR += p5-Rose-URI
    SUBDIR += p5-S3
    SUBDIR += p5-SOAP
    SUBDIR += p5-SOAP-Amazon-S3
    SUBDIR += p5-SOAP-Data-Builder
    SUBDIR += p5-SOAP-Lite
    SUBDIR += p5-SOAP-MySOAP
    SUBDIR += p5-SOAP-XML-Client
    SUBDIR += p5-Samba-LDAP
    SUBDIR += p5-Server-Starter
    SUBDIR += p5-Socket
    SUBDIR += p5-Socket-Class
    SUBDIR += p5-Socket-GetAddrInfo
    SUBDIR += p5-Socket-Multicast6
    SUBDIR += p5-Socket6
    SUBDIR += p5-Socks
    SUBDIR += p5-Sort-Key-IPv4
    SUBDIR += p5-TFTP
    SUBDIR += p5-Test-URI
    SUBDIR += p5-Text-Authinfo
    SUBDIR += p5-Twitter-API
    SUBDIR += p5-URI
    SUBDIR += p5-URI-Based
    SUBDIR += p5-URI-Encode-XS
    SUBDIR += p5-URI-Fast
    SUBDIR += p5-URI-FromHash
    SUBDIR += p5-URI-Match
    SUBDIR += p5-URI-Nested
    SUBDIR += p5-URI-OpenURL
    SUBDIR += p5-URI-Query
    SUBDIR += p5-URI-SmartURI
    SUBDIR += p5-URI-Template
    SUBDIR += p5-URI-Template-Restrict
    SUBDIR += p5-URI-cpan
    SUBDIR += p5-URI-db
    SUBDIR += p5-URI-ws
    SUBDIR += p5-VM-EC2
    SUBDIR += p5-VM-EC2-Security-CredentialCache
    SUBDIR += p5-Validate-Net
    SUBDIR += p5-WebService-Dropbox
    SUBDIR += p5-WebService-Prowl
    SUBDIR += p5-What
    SUBDIR += p5-X500-DN
    SUBDIR += p5-XML-Compile-SOAP
    SUBDIR += p5-XML-Compile-SOAP-AnyEvent
    SUBDIR += p5-XML-Compile-SOAP-Daemon
    SUBDIR += p5-XML-Compile-SOAP-WSA
    SUBDIR += p5-XML-Compile-WSDL11
    SUBDIR += p5-XML-Fast
    SUBDIR += p5-XML-RPC
    SUBDIR += p5-XML-RPC-Fast
    SUBDIR += p5-XMLRPC-Lite
    SUBDIR += p5-XPC
    SUBDIR += p5-ZMQ-FFI
    SUBDIR += p5-ip2location-perl
    SUBDIR += p5-ldap2pf
    SUBDIR += p5-ldap2pw
    SUBDIR += p5-perl-ldap
    SUBDIR += p5-srv2pf
    SUBDIR += pacemaker1
    SUBDIR += pacemaker2
    SUBDIR += packetdrill
    SUBDIR += packter-agent
    SUBDIR += panoptis
    SUBDIR += parpd
    SUBDIR += pathneck
    SUBDIR += pbnc
    SUBDIR += pear-Auth_RADIUS
    SUBDIR += pear-File_Bittorrent2
    SUBDIR += pear-Horde_Kolab_Server
    SUBDIR += pear-Horde_Kolab_Session
    SUBDIR += pear-Horde_Ldap
    SUBDIR += pear-Horde_Rpc
    SUBDIR += pear-Horde_Scribe
    SUBDIR += pear-Horde_Socket_Client
    SUBDIR += pear-Horde_Url
    SUBDIR += pear-Net_CDDB
    SUBDIR += pear-Net_CheckIP
    SUBDIR += pear-Net_DIME
    SUBDIR += pear-Net_DNSBL
    SUBDIR += pear-Net_Dict
    SUBDIR += pear-Net_Finger
    SUBDIR += pear-Net_Geo
    SUBDIR += pear-Net_GeoIP
    SUBDIR += pear-Net_Growl
    SUBDIR += pear-Net_IDNA
    SUBDIR += pear-Net_IPv4
    SUBDIR += pear-Net_IPv6
    SUBDIR += pear-Net_Ident
    SUBDIR += pear-Net_LDAP
    SUBDIR += pear-Net_LDAP2
    SUBDIR += pear-Net_MAC
    SUBDIR += pear-Net_NNTP
    SUBDIR += pear-Net_Nmap
    SUBDIR += pear-Net_POP3
    SUBDIR += pear-Net_Ping
    SUBDIR += pear-Net_SMS
    SUBDIR += pear-Net_SMTP
    SUBDIR += pear-Net_Server
    SUBDIR += pear-Net_Sieve
    SUBDIR += pear-Net_Socket
    SUBDIR += pear-Net_Traceroute
    SUBDIR += pear-Net_URL
    SUBDIR += pear-Net_URL2
    SUBDIR += pear-Net_URL_Mapper
    SUBDIR += pear-Net_UserAgent_Detect
    SUBDIR += pear-Net_UserAgent_Mobile
    SUBDIR += pear-Net_Vpopmaild
    SUBDIR += pear-Net_Whois
    SUBDIR += pear-SOAP
    SUBDIR += pear-Services_Pingback
    SUBDIR += pear-Services_Twitter
    SUBDIR += pear-URI_Template
    SUBDIR += pear-XML_RPC
    SUBDIR += pear-XML_RPC2
    SUBDIR += pecl-amqp
    SUBDIR += pecl-mosquitto
    SUBDIR += pecl-oauth2
    SUBDIR += pecl-radius
    SUBDIR += pecl-rdkafka
    SUBDIR += pecl-smbclient
    SUBDIR += pecl-xmlrpc
    SUBDIR += pecl-zmq
    SUBDIR += pen
    SUBDIR += pfinger
    SUBDIR += php73-ldap
    SUBDIR += php73-soap
    SUBDIR += php73-sockets
    SUBDIR += php73-xmlrpc
    SUBDIR += php74-ldap
    SUBDIR += php74-soap
    SUBDIR += php74-sockets
    SUBDIR += php74-xmlrpc
    SUBDIR += php80-ldap
    SUBDIR += php80-soap
    SUBDIR += php80-sockets
    SUBDIR += phpldapadmin
    SUBDIR += pichi
    SUBDIR += pimcommon
    SUBDIR += pimd
    SUBDIR += pimdd
    SUBDIR += pipsecd
    SUBDIR += pjsip
    SUBDIR += pkt-gen
    SUBDIR += pktanon
    SUBDIR += pload
    SUBDIR += plugdaemon
    SUBDIR += poptop
    SUBDIR += portfwd
    SUBDIR += pptpclient
    SUBDIR += proby
    SUBDIR += proftpd-mod_ldap
    SUBDIR += prosearch
    SUBDIR += proxy-suite
    SUBDIR += proxychains
    SUBDIR += proxychains-ng
    SUBDIR += prtunnel
    SUBDIR += ptpd2
    SUBDIR += ptunnel
    SUBDIR += pvm
    SUBDIR += pwhois
    SUBDIR += pwnat
    SUBDIR += pxe
    SUBDIR += pxe-pdhcp
    SUBDIR += py-DTLSSocket
    SUBDIR += py-GeoIP2
    SUBDIR += py-aiocoap
    SUBDIR += py-aiohttp-socks
    SUBDIR += py-amqp
    SUBDIR += py-amqplib
    SUBDIR += py-avahi
    SUBDIR += py-cjdns
    SUBDIR += py-cloudflare-scrape
    SUBDIR += py-cloudflare-scrape-js2py
    SUBDIR += py-cloudscraper
    SUBDIR += py-confluent-kafka
    SUBDIR += py-cymruwhois
    SUBDIR += py-dpkt
    SUBDIR += py-dugong
    SUBDIR += py-ec2-cli-tools
    SUBDIR += py-errbot
    SUBDIR += py-eventlet
    SUBDIR += py-flask-xml-rpc
    SUBDIR += py-gdown
    SUBDIR += py-geopy
    SUBDIR += py-gntp
    SUBDIR += py-gspread
    SUBDIR += py-h11
    SUBDIR += py-haproxy-log-analysis
    SUBDIR += py-haproxyctl
    SUBDIR += py-httpstat
    SUBDIR += py-ifaddr
    SUBDIR += py-impacket
    SUBDIR += py-iplib
    SUBDIR += py-iptools
    SUBDIR += py-kafka-python
    SUBDIR += py-kombu
    SUBDIR += py-ldap
    SUBDIR += py-ldap0
    SUBDIR += py-ldap3
    SUBDIR += py-ldappool
    SUBDIR += py-libcloud
    SUBDIR += py-libdnet
    SUBDIR += py-magic-wormhole
    SUBDIR += py-matrix-synapse-ldap3
    SUBDIR += py-maxminddb
    SUBDIR += py-miniupnpc
    SUBDIR += py-mpi4py
    SUBDIR += py-msrplib
    SUBDIR += py-ndg-httpsclient
    SUBDIR += py-netaddr
    SUBDIR += py-netif
    SUBDIR += py-netifaces
    SUBDIR += py-netsnmpagent
    SUBDIR += py-nnpy
    SUBDIR += py-ntplib
    SUBDIR += py-oauth
    SUBDIR += py-oauth2
    SUBDIR += py-paho-mqtt
    SUBDIR += py-pamqp
    SUBDIR += py-pcapy
    SUBDIR += py-port-for
    SUBDIR += py-portend
    SUBDIR += py-pyenet
    SUBDIR += py-pyfixbuf
    SUBDIR += py-pygeoip
    SUBDIR += py-pyicap
    SUBDIR += py-pynamecheap
    SUBDIR += py-pynmsg
    SUBDIR += py-pynsq
    SUBDIR += py-pypcap
    SUBDIR += py-pyroute2
    SUBDIR += py-pyroute2.core
    SUBDIR += py-pyroute2.ethtool
    SUBDIR += py-pyroute2.ipset
    SUBDIR += py-pyroute2.minimal
    SUBDIR += py-pysendfile
    SUBDIR += py-pyshark
    SUBDIR += py-pysmb
    SUBDIR += py-pysocks
    SUBDIR += py-pystun
    SUBDIR += py-python-barbicanclient
    SUBDIR += py-python-bitcoinrpc
    SUBDIR += py-python-ceilometerclient
    SUBDIR += py-python-cinderclient
    SUBDIR += py-python-designateclient
    SUBDIR += py-python-glanceclient
    SUBDIR += py-python-heatclient
    SUBDIR += py-python-keystoneclient
    SUBDIR += py-python-neutronclient
    SUBDIR += py-python-novaclient
    SUBDIR += py-python-openstackclient
    SUBDIR += py-python-socks
    SUBDIR += py-python-twitter
    SUBDIR += py-pytradfri
    SUBDIR += py-pyu2f
    SUBDIR += py-pyvmomi
    SUBDIR += py-pyzmq
    SUBDIR += py-qt5-network
    SUBDIR += py-qt5-networkauth
    SUBDIR += py-rabbitpy
    SUBDIR += py-radix
    SUBDIR += py-raet
    SUBDIR += py-ripe.atlas.cousteau
    SUBDIR += py-ripe.atlas.sagan
    SUBDIR += py-ripe.atlas.tools
    SUBDIR += py-s3cmd
    SUBDIR += py-s3transfer
    SUBDIR += py-saltyrtc.server
    SUBDIR += py-sbws
    SUBDIR += py-shodan
    SUBDIR += py-siosocks
    SUBDIR += py-smart-open
    SUBDIR += py-smbpasswd
    SUBDIR += py-smbprotocol
    SUBDIR += py-soap2py
    SUBDIR += py-socketio-client
    SUBDIR += py-softlayer
    SUBDIR += py-speedtest-cli
    SUBDIR += py-sshtunnel
    SUBDIR += py-sshuttle
    SUBDIR += py-stomp.py
    SUBDIR += py-suds-jurko
    SUBDIR += py-tacacs_plus
    SUBDIR += py-terminado
    SUBDIR += py-tofu
    SUBDIR += py-transip
    SUBDIR += py-trio
    SUBDIR += py-tweepy
    SUBDIR += py-twitter-tools
    SUBDIR += py-txamqp
    SUBDIR += py-txrestapi
    SUBDIR += py-uritemplate
    SUBDIR += py-uritools
    SUBDIR += py-urlextract
    SUBDIR += py-urllib3
    SUBDIR += py-whois
    SUBDIR += py-wmi-query
    SUBDIR += py-wsdd
    SUBDIR += py-wsproto
    SUBDIR += py-zeep
    SUBDIR += py-zeroconf
    SUBDIR += py-zope.proxy
    SUBDIR += pyrad
    SUBDIR += qadsl
    SUBDIR += qoauth-qt5
    SUBDIR += qt5-network
    SUBDIR += qt5-networkauth
    SUBDIR += quagga
    SUBDIR += queso
    SUBDIR += quiche
    SUBDIR += quiterss
    SUBDIR += quoted
    SUBDIR += rabbiteer
    SUBDIR += rabbitmq
    SUBDIR += rabbitmq-c
    SUBDIR += rabbitmq-c-devel
    SUBDIR += radcli
    SUBDIR += raddump
    SUBDIR += radiator
    SUBDIR += radiusclient
    SUBDIR += radreport
    SUBDIR += radsecproxy
    SUBDIR += radvd
    SUBDIR += rclone
    SUBDIR += rclone-browser
    SUBDIR += rdapper
    SUBDIR += rdesktop
    SUBDIR += rdist6
    SUBDIR += read_bbrlog
    SUBDIR += realtek-re-kmod
    SUBDIR += reaver
    SUBDIR += recvnet
    SUBDIR += redir
    SUBDIR += relayd
    SUBDIR += remmina
    SUBDIR += remotebox
    SUBDIR += remotedesk
    SUBDIR += repeater
    SUBDIR += rfbproxy
    SUBDIR += rinetd
    SUBDIR += ripe-whois
    SUBDIR += routinator
    SUBDIR += rp-pppoe
    SUBDIR += rpki-client
    SUBDIR += rsocket-cpp
    SUBDIR += rsplib
    SUBDIR += rsync
    SUBDIR += rsync-bpc
    SUBDIR += rtg
    SUBDIR += rtpproxy
    SUBDIR += rtptools
    SUBDIR += rubygem-activestorage52
    SUBDIR += rubygem-activestorage60
    SUBDIR += rubygem-activestorage61
    SUBDIR += rubygem-amazon-ec2
    SUBDIR += rubygem-amq-protocol
    SUBDIR += rubygem-amqp
    SUBDIR += rubygem-amqp-utils
    SUBDIR += rubygem-apollo_upload_server
    SUBDIR += rubygem-asset_sync
    SUBDIR += rubygem-aws-s3
    SUBDIR += rubygem-aws-ses
    SUBDIR += rubygem-azure
    SUBDIR += rubygem-azure-core
    SUBDIR += rubygem-beefcake
    SUBDIR += rubygem-bunny
    SUBDIR += rubygem-cloudflare
    SUBDIR += rubygem-connection_pool
    SUBDIR += rubygem-docker-api
    SUBDIR += rubygem-dogapi
    SUBDIR += rubygem-domain_name
    SUBDIR += rubygem-dropbox-sdk
    SUBDIR += rubygem-epp-client-afnic
    SUBDIR += rubygem-epp-client-base
    SUBDIR += rubygem-epp-client-rgp
    SUBDIR += rubygem-epp-client-secdns
    SUBDIR += rubygem-epp-client-smallregistry
    SUBDIR += rubygem-fog-aliyun
    SUBDIR += rubygem-fog-atmos
    SUBDIR += rubygem-fog-aws
    SUBDIR += rubygem-fog-azure
    SUBDIR += rubygem-fog-brightbox
    SUBDIR += rubygem-fog-brightbox0
    SUBDIR += rubygem-fog-cloudatcost
    SUBDIR += rubygem-fog-cloudstack
    SUBDIR += rubygem-fog-digitalocean
    SUBDIR += rubygem-fog-dnsimple
    SUBDIR += rubygem-fog-dynect
    SUBDIR += rubygem-fog-ecloud
    SUBDIR += rubygem-fog-google
    SUBDIR += rubygem-fog-google19
    SUBDIR += rubygem-fog-gridscale
    SUBDIR += rubygem-fog-internet-archive
    SUBDIR += rubygem-fog-joyent
    SUBDIR += rubygem-fog-local
    SUBDIR += rubygem-fog-openstack
    SUBDIR += rubygem-fog-ovirt
    SUBDIR += rubygem-fog-powerdns
    SUBDIR += rubygem-fog-profitbricks
    SUBDIR += rubygem-fog-rackspace
    SUBDIR += rubygem-fog-radosgw
    SUBDIR += rubygem-fog-riakcs
    SUBDIR += rubygem-fog-sakuracloud
    SUBDIR += rubygem-fog-serverlove
    SUBDIR += rubygem-fog-softlayer
    SUBDIR += rubygem-fog-storm_on_demand
    SUBDIR += rubygem-fog-terremark
    SUBDIR += rubygem-fog-vmfusion
    SUBDIR += rubygem-fog-voxel
    SUBDIR += rubygem-fog-vsphere
    SUBDIR += rubygem-fog-xenserver
    SUBDIR += rubygem-gitaly
    SUBDIR += rubygem-gitaly-proto
    SUBDIR += rubygem-gitlab-fog-azure-rm
    SUBDIR += rubygem-gitlab-fog-google
    SUBDIR += rubygem-gitlab-omniauth-openid-connect
    SUBDIR += rubygem-gitlab_omniauth-ldap
    SUBDIR += rubygem-google-cloud-bigquery
    SUBDIR += rubygem-google-cloud-bigtable
    SUBDIR += rubygem-google-cloud-bigtable-admin-v2
    SUBDIR += rubygem-google-cloud-bigtable-v2
    SUBDIR += rubygem-google-cloud-core
    SUBDIR += rubygem-google-cloud-env
    SUBDIR += rubygem-google-cloud-errors
    SUBDIR += rubygem-google-cloud-logging
    SUBDIR += rubygem-google-cloud-logging-v2
    SUBDIR += rubygem-google-cloud-pubsub
    SUBDIR += rubygem-google-cloud-pubsub-v1
    SUBDIR += rubygem-google-cloud-spanner
    SUBDIR += rubygem-google-cloud-spanner-admin-database-v1
    SUBDIR += rubygem-google-cloud-spanner-admin-instance-v1
    SUBDIR += rubygem-google-cloud-spanner-v1
    SUBDIR += rubygem-google-cloud-storage
    SUBDIR += rubygem-grpc
    SUBDIR += rubygem-grpc124
    SUBDIR += rubygem-grpc130
    SUBDIR += rubygem-hangouts-chat
    SUBDIR += rubygem-http-parser
    SUBDIR += rubygem-http_parser.rb
    SUBDIR += rubygem-httpauth
    SUBDIR += rubygem-ipaddress
    SUBDIR += rubygem-iproto
    SUBDIR += rubygem-lita-gems
    SUBDIR += rubygem-macaddr
    SUBDIR += rubygem-maxmind-db
    SUBDIR += rubygem-mqtt
    SUBDIR += rubygem-nats-pure
    SUBDIR += rubygem-net-ldap
    SUBDIR += rubygem-net-netrc
    SUBDIR += rubygem-net-ntp
    SUBDIR += rubygem-net-ping
    SUBDIR += rubygem-net-protocol
    SUBDIR += rubygem-netrc
    SUBDIR += rubygem-network_interface
    SUBDIR += rubygem-nkf
    SUBDIR += rubygem-oauth
    SUBDIR += rubygem-oauth2
    SUBDIR += rubygem-octokit
    SUBDIR += rubygem-octopress-deploy
    SUBDIR += rubygem-omniauth-auth0
    SUBDIR += rubygem-omniauth-auth014
    SUBDIR += rubygem-omniauth-authentiq
    SUBDIR += rubygem-omniauth-azure-activedirectory-v2
    SUBDIR += rubygem-omniauth-azure-oauth2
    SUBDIR += rubygem-omniauth-facebook
    SUBDIR += rubygem-omniauth-facebook4
    SUBDIR += rubygem-omniauth-github
    SUBDIR += rubygem-omniauth-github-discourse
    SUBDIR += rubygem-omniauth-google-oauth2
    SUBDIR += rubygem-omniauth-kerberos
    SUBDIR += rubygem-omniauth-oauth
    SUBDIR += rubygem-omniauth-oauth2
    SUBDIR += rubygem-omniauth-openid
    SUBDIR += rubygem-omniauth-salesforce
    SUBDIR += rubygem-omniauth-twitter
    SUBDIR += rubygem-omniauth-ultraauth
    SUBDIR += rubygem-omniauth_openid_connect
    SUBDIR += rubygem-open-uri
    SUBDIR += rubygem-open-uri-cached
    SUBDIR += rubygem-openid_connect
    SUBDIR += rubygem-opennebula
    SUBDIR += rubygem-orchestrator_client
    SUBDIR += rubygem-ovirt-engine-sdk
    SUBDIR += rubygem-packetfu
    SUBDIR += rubygem-pcaprub
    SUBDIR += rubygem-private_address_check
    SUBDIR += rubygem-proxifier
    SUBDIR += rubygem-qiniu
    SUBDIR += rubygem-rabbiter
    SUBDIR += rubygem-rbvmomi
    SUBDIR += rubygem-right_aws
    SUBDIR += rubygem-right_flexiscale
    SUBDIR += rubygem-right_gogrid
    SUBDIR += rubygem-right_http_connection
    SUBDIR += rubygem-right_slicehost
    SUBDIR += rubygem-rsync
    SUBDIR += rubygem-ruby-growl
    SUBDIR += rubygem-ruby-openid
    SUBDIR += rubygem-ruby-yadis
    SUBDIR += rubygem-ruby_smb
    SUBDIR += rubygem-rubyntlm
    SUBDIR += rubygem-rubytter
    SUBDIR += rubygem-rudy
    SUBDIR += rubygem-rye
    SUBDIR += rubygem-serverengine
    SUBDIR += rubygem-simple_oauth
    SUBDIR += rubygem-spamcheck
    SUBDIR += rubygem-stackdriver-core
    SUBDIR += rubygem-stompserver
    SUBDIR += rubygem-t
    SUBDIR += rubygem-train
    SUBDIR += rubygem-train-core
    SUBDIR += rubygem-train-winrm
    SUBDIR += rubygem-tweetstream
    SUBDIR += rubygem-twitter
    SUBDIR += rubygem-twitter-stream
    SUBDIR += rubygem-twitter4r
    SUBDIR += rubygem-u2f
    SUBDIR += rubygem-u2f0
    SUBDIR += rubygem-uri
    SUBDIR += rubygem-uri-redis
    SUBDIR += rubygem-uri_template
    SUBDIR += rubygem-whois
    SUBDIR += rubygem-xmlrpc
    SUBDIR += rude
    SUBDIR += ryu
    SUBDIR += sacc
    SUBDIR += samba412
    SUBDIR += samba413
    SUBDIR += samplicator
    SUBDIR += savvycan
    SUBDIR += sbd
    SUBDIR += sbm
    SUBDIR += scamper
    SUBDIR += scapy
    SUBDIR += scr_ipfm
    SUBDIR += sctplib
    SUBDIR += sdl2_net
    SUBDIR += sdl_net
    SUBDIR += seaweedfs
    SUBDIR += seda
    SUBDIR += self-service-password
    SUBDIR += sems
    SUBDIR += sendemail
    SUBDIR += sendsms
    SUBDIR += sendsnpp
    SUBDIR += serveez
    SUBDIR += serviio
    SUBDIR += sflowtool
    SUBDIR += shadowsocks-libev
    SUBDIR += shelldap
    SUBDIR += shmux
    SUBDIR += sie-nmsg
    SUBDIR += simpleproxy
    SUBDIR += siproxd
    SUBDIR += sipsak
    SUBDIR += skstream
    SUBDIR += sl2tps
    SUBDIR += smb4k
    SUBDIR += smcroute
    SUBDIR += smm++
    SUBDIR += sngrep
    SUBDIR += sniffit
    SUBDIR += sniproxy
    SUBDIR += sntop
    SUBDIR += sobby
    SUBDIR += socat
    SUBDIR += sock
    SUBDIR += socketapi
    SUBDIR += socketbind
    SUBDIR += socketpipe
    SUBDIR += socketw
    SUBDIR += sofia-sip
    SUBDIR += spiritvnc
    SUBDIR += spoofer
    SUBDIR += spread
    SUBDIR += spread-j
    SUBDIR += spread4
    SUBDIR += sqtop
    SUBDIR += srelay
    SUBDIR += ss5
    SUBDIR += sshping
    SUBDIR += ssldump
    SUBDIR += sslh
    SUBDIR += ssspl
    SUBDIR += ssvnc
    SUBDIR += stone
    SUBDIR += storj
    SUBDIR += stund
    SUBDIR += subnetcalc
    SUBDIR += suckblow
    SUBDIR += sup
    SUBDIR += svnup
    SUBDIR += syncthing
    SUBDIR += tableutil
    SUBDIR += tac_plus4
    SUBDIR += tacacs
    SUBDIR += tapidbus
    SUBDIR += tayga
    SUBDIR += tclsoap
    SUBDIR += tcludp
    SUBDIR += tcpcat
    SUBDIR += tcpdump
    SUBDIR += tcpflow
    SUBDIR += tcpick
    SUBDIR += tcpillust
    SUBDIR += tcping
    SUBDIR += tcpkali
    SUBDIR += tcplog_dumper
    SUBDIR += tcpmssd
    SUBDIR += tcpproxy
    SUBDIR += tcpreen
    SUBDIR += tcprtt
    SUBDIR += tcpsg
    SUBDIR += tcpshow
    SUBDIR += tcpslice
    SUBDIR += tcpsplit
    SUBDIR += tcpstat
    SUBDIR += tcptestsuite
    SUBDIR += tcptrace
    SUBDIR += tcptraceroute
    SUBDIR += tcpview
    SUBDIR += tcpwatch
    SUBDIR += tcpxd
    SUBDIR += tcpxtract
    SUBDIR += td-system-tools
    SUBDIR += tdetect
    SUBDIR += termshark
    SUBDIR += tftpgrab
    SUBDIR += thcrut
    SUBDIR += throttled
    SUBDIR += tigervnc-server
    SUBDIR += tigervnc-viewer
    SUBDIR += tightvnc
    SUBDIR += timed
    SUBDIR += tintin++
    SUBDIR += tiny-network-utilities
    SUBDIR += tinyfugue
    SUBDIR += tinyldap
    SUBDIR += tn5250
    SUBDIR += toonel
    SUBDIR += torsocks
    SUBDIR += traefik
    SUBDIR += traff
    SUBDIR += trafshow
    SUBDIR += trafshow3
    SUBDIR += tramp
    SUBDIR += trickle
    SUBDIR += tsclient
    SUBDIR += tsctp
    SUBDIR += tshark
    SUBDIR += tshark-lite
    SUBDIR += tsocks
    SUBDIR += tunneller
    SUBDIR += turnserver
    SUBDIR += u6rd
    SUBDIR += ucarp
    SUBDIR += udpbroadcastrelay
    SUBDIR += udptunnel
    SUBDIR += udpxy
    SUBDIR += udt
    SUBDIR += uget
    SUBDIR += uhttpmock
    SUBDIR += ulxmlrpcpp
    SUBDIR += unfs3
    SUBDIR += unison
    SUBDIR += unison232
    SUBDIR += unison240
    SUBDIR += unison248
    SUBDIR += unix2tcp
    SUBDIR += urelay
    SUBDIR += uriparser
    SUBDIR += urlendec
    SUBDIR += usbredir
    SUBDIR += usockets
    SUBDIR += utftpd
    SUBDIR += v2ray
    SUBDIR += vde
    SUBDIR += vde2
    SUBDIR += vether-kmod
    SUBDIR += viamillipede
    SUBDIR += vinagre
    SUBDIR += vino
    SUBDIR += vmware-vsphere-cli
    SUBDIR += vncreflector
    SUBDIR += vnstat
    SUBDIR += vortex
    SUBDIR += vtun
    SUBDIR += wackamole
    SUBDIR += wakeonlan
    SUBDIR += wangle
    SUBDIR += waypipe
    SUBDIR += wayvnc
    SUBDIR += webalizer-geodb
    SUBDIR += whois
    SUBDIR += widentd
    SUBDIR += wireguard
    SUBDIR += wireguard-go
    SUBDIR += wireguard-kmod
    SUBDIR += wireguard-tools
    SUBDIR += wireshark
    SUBDIR += wireshark-lite
    SUBDIR += wlan2eth
    SUBDIR += wlvncc
    SUBDIR += wmnd
    SUBDIR += wmnet
    SUBDIR += wmping
    SUBDIR += wmwave
    SUBDIR += wmwifi
    SUBDIR += wmwlmon
    SUBDIR += wol
    SUBDIR += wpa_supplicant_gui
    SUBDIR += wping
    SUBDIR += x11vnc
    SUBDIR += x2goclient
    SUBDIR += x2goclient-cli
    SUBDIR += xisp
    SUBDIR += xmlrpc-c
    SUBDIR += xmlrpc-epi
    SUBDIR += xprobe
    SUBDIR += xrdesktop2
    SUBDIR += xrdp
    SUBDIR += xrdp-devel
    SUBDIR += yami4
    SUBDIR += yaph
    SUBDIR += yate
    SUBDIR += yaz
    SUBDIR += yaz++
    SUBDIR += yazproxy
    SUBDIR += yconalyzer
    SUBDIR += yggdrasil
    SUBDIR += yptransitd
    SUBDIR += zebra
    SUBDIR += zebra-server
    SUBDIR += zeroconf-ioslave
    SUBDIR += zerotier
    SUBDIR += zillion
    SUBDIR += zmap
    SUBDIR += zsync
    SUBDIR += zyre

.include <bsd.port.subdir.mk>