blob: dd7048c9e4c1cbe673360615f62e76066ccdd87f (
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
|
# $FreeBSD$
#
COMMENT = Networking tools
SUBDIR += 3proxy
SUBDIR += 44bsd-rdist
SUBDIR += 6tunnel
SUBDIR += GeoIP
SUBDIR += R-cran-twitteR
SUBDIR += Sockets
SUBDIR += abills
SUBDIR += activemq
SUBDIR += adasockets
SUBDIR += afpfs-ng
SUBDIR += aget
SUBDIR += anet
SUBDIR += aoe
SUBDIR += apinger
SUBDIR += appkonference
SUBDIR += aprsc
SUBDIR += arp-scan
SUBDIR += arp-sk
SUBDIR += arpdig
SUBDIR += arping
SUBDIR += arprelease
SUBDIR += asio
SUBDIR += aslookup
SUBDIR += asterisk-chan_sccp
SUBDIR += asterisk-g72x
SUBDIR += asterisk11
SUBDIR += asterisk13
SUBDIR += avahi
SUBDIR += avahi-app
SUBDIR += avahi-autoipd
SUBDIR += avahi-gtk
SUBDIR += avahi-gtk3
SUBDIR += avahi-header
SUBDIR += avahi-libdns
SUBDIR += avahi-qt4
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 += bird-devel
SUBDIR += bird6
SUBDIR += bittwist
SUBDIR += bmon
SUBDIR += boclient
SUBDIR += boinc-client
SUBDIR += boinc_curses
SUBDIR += bounce
SUBDIR += bsdec2-image-upload
SUBDIR += bsdproxy
SUBDIR += bwi-firmware-kmod
SUBDIR += bwn-firmware-kmod
SUBDIR += bwping
SUBDIR += c3270
SUBDIR += cagibi
SUBDIR += ccxstream
SUBDIR += cf
SUBDIR += chrony
SUBDIR += citrix_ica
SUBDIR += cjdns
SUBDIR += clamz
SUBDIR += cloud-init
SUBDIR += clusterit
SUBDIR += cnd
SUBDIR += coda6_client
SUBDIR += coda6_server
SUBDIR += concourse-fly
SUBDIR += corkscrew
SUBDIR += corosync
SUBDIR += courier-authlib-ldap
SUBDIR += crtmpserver
SUBDIR += cryptcat
SUBDIR += csocks
SUBDIR += csync2
SUBDIR += ctrace
SUBDIR += cvsup-static
SUBDIR += cvsync
SUBDIR += cyphesis
SUBDIR += czmq
SUBDIR += daemonlogger
SUBDIR += dante
SUBDIR += daq
SUBDIR += datapipe
SUBDIR += dbeacon
SUBDIR += delegate
SUBDIR += dgd
SUBDIR += dgd-kernel
SUBDIR += dgd-lpmud
SUBDIR += dhcp6
SUBDIR += dhcpcd
SUBDIR += dhcpd
SUBDIR += dhcpd-pools
SUBDIR += dhcpdump
SUBDIR += dhcperf
SUBDIR += dhcping
SUBDIR += dhcprelay
SUBDIR += dhcprelya
SUBDIR += dictd
SUBDIR += dictd-database
SUBDIR += dimes
SUBDIR += dpdk
SUBDIR += dpinger
SUBDIR += drawterm
SUBDIR += dropbox-api-command
SUBDIR += dropbox-uploader
SUBDIR += dshell
SUBDIR += dtcp
SUBDIR += dtcpclient
SUBDIR += e169-stats
SUBDIR += easysoap
SUBDIR += echoping
SUBDIR += elixir-kafka_ex
SUBDIR += elixir-oauth2
SUBDIR += empty
SUBDIR += enet
SUBDIR += erlang-ranch
SUBDIR += erlang-xmlrpc
SUBDIR += etrace
SUBDIR += exabgp
SUBDIR += exaddos
SUBDIR += findmtu
SUBDIR += flowgrep
SUBDIR += fonulator
SUBDIR += foreman-proxy
SUBDIR += fpc-ldap
SUBDIR += fpc-pcap
SUBDIR += fping
SUBDIR += freebsd-tftp
SUBDIR += freebsd-uucp
SUBDIR += freediameter
SUBDIR += freenet6
SUBDIR += freeradius-client
SUBDIR += freeradius2
SUBDIR += freeradius3
SUBDIR += freerdp
SUBDIR += freeswitch
SUBDIR += freevrrpd
SUBDIR += fspclient
SUBDIR += fspd
SUBDIR += fsplib
SUBDIR += g2ipmsg
SUBDIR += geoclue
SUBDIR += geocode-glib
SUBDIR += geoipupdate
SUBDIR += get_iplayer
SUBDIR += gfbgraph
SUBDIR += gini
SUBDIR += gkrellmwireless2
SUBDIR += glflow
SUBDIR += glib-networking
SUBDIR += glusterfs
SUBDIR += gnatsd
SUBDIR += gnet2
SUBDIR += gnetcat
SUBDIR += gnome-nettool
SUBDIR += gnome-online-accounts
SUBDIR += gnome-online-miners
SUBDIR += gnu-dico
SUBDIR += gnu-radius
SUBDIR += go-amqp
SUBDIR += go-cs
SUBDIR += go-geoip
SUBDIR += go-httppath
SUBDIR += go-httptreemux
SUBDIR += go-nats
SUBDIR += go.net
SUBDIR += gofish
SUBDIR += gogoc
SUBDIR += google-cloud-sdk
SUBDIR += google-daemon
SUBDIR += google-startup-scripts
SUBDIR += googlecl
SUBDIR += gopher
SUBDIR += gotthard
SUBDIR += gpxe
SUBDIR += gq
SUBDIR += grdesktop
SUBDIR += grilo
SUBDIR += grilo-plugins
SUBDIR += grive
SUBDIR += grive2
SUBDIR += grsync
SUBDIR += gsk
SUBDIR += gspoof
SUBDIR += gssdp
SUBDIR += gstreamer-plugins-libmms
SUBDIR += gstreamer1-plugins-libmms
SUBDIR += gtic
SUBDIR += gtk-vnc
SUBDIR += gtknetcat
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 += hexinject
SUBDIR += hidentd
SUBDIR += hinfo
SUBDIR += hlmaster
SUBDIR += honeyd
SUBDIR += hostapd
SUBDIR += howl
SUBDIR += hping
SUBDIR += hping-devel
SUBDIR += hs-aws
SUBDIR += hs-connection
SUBDIR += hs-gsasl
SUBDIR += hs-hoauth2
SUBDIR += hs-hostname
SUBDIR += hs-iproute
SUBDIR += hs-maccatcher
SUBDIR += hs-network
SUBDIR += hs-network-info
SUBDIR += hs-network-multicast
SUBDIR += hs-network-protocol-xmpp
SUBDIR += hs-network-uri
SUBDIR += hs-pcap
SUBDIR += hs-publicsuffixlist
SUBDIR += hs-sendfile
SUBDIR += hs-simple-sendfile
SUBDIR += hs-socks
SUBDIR += hsflowd
SUBDIR += htpdate
SUBDIR += http_ping
SUBDIR += httping
SUBDIR += httpry
SUBDIR += hupnp
SUBDIR += iaxmodem
SUBDIR += icmpinfo
SUBDIR += icpld
SUBDIR += iet
SUBDIR += ifdepd
SUBDIR += iffinder
SUBDIR += ifstat
SUBDIR += ifstated
SUBDIR += igmpproxy
SUBDIR += iipsrv
SUBDIR += ilbc
SUBDIR += imapproxy
SUBDIR += intel-em-kmod
SUBDIR += intel-ixl-kmod
SUBDIR += iodine
SUBDIR += ip2location
SUBDIR += ip6_int
SUBDIR += ipdecap
SUBDIR += ipgrab
SUBDIR += iplog
SUBDIR += ipsorc
SUBDIR += ipsumdump
SUBDIR += ipsvd
SUBDIR += ipxe
SUBDIR += irrd
SUBDIR += isboot-kmod
SUBDIR += isc-dhcp43-client
SUBDIR += isc-dhcp43-relay
SUBDIR += isc-dhcp43-server
SUBDIR += istgt
SUBDIR += jags
SUBDIR += jakarta-commons-net
SUBDIR += java-beepcore
SUBDIR += jcifs
SUBDIR += jgroups
SUBDIR += jicmp
SUBDIR += jicmp6
SUBDIR += jrdesktop
SUBDIR += jsch
SUBDIR += jumpgate
SUBDIR += jwhois
SUBDIR += kafkacat
SUBDIR += kamailio
SUBDIR += kdenetwork4
SUBDIR += kdenetwork4-filesharing
SUBDIR += kdenetwork4-strigi-analyzers
SUBDIR += kea
SUBDIR += kget
SUBDIR += kio-upnp-ms
SUBDIR += kippo
SUBDIR += kissd
SUBDIR += knc
SUBDIR += knemo-kde4
SUBDIR += krdc
SUBDIR += krfb
SUBDIR += kwooty
SUBDIR += l2tpd
SUBDIR += l4ip
SUBDIR += ladvd
SUBDIR += lambdamoo
SUBDIR += latd
SUBDIR += ldap-stats
SUBDIR += ldap2dns
SUBDIR += ldapbrowser
SUBDIR += ldapdiff
SUBDIR += ldapscripts
SUBDIR += ldapsdk
SUBDIR += ldapsh
SUBDIR += lft
SUBDIR += libarms
SUBDIR += libbgpdump
SUBDIR += libcapn
SUBDIR += libcmis
SUBDIR += libdmapsharing
SUBDIR += libdnet
SUBDIR += libexosip2
SUBDIR += libfb
SUBDIR += libfixbuf
SUBDIR += libgnetwork
SUBDIR += libgweather
SUBDIR += libilbc
SUBDIR += libkfbapi
SUBDIR += libkvkontakte
SUBDIR += libmaia
SUBDIR += libmateweather
SUBDIR += libmaxminddb
SUBDIR += libmediawiki
SUBDIR += libmms
SUBDIR += libmxp
SUBDIR += libnatpmp
SUBDIR += libnet
SUBDIR += libnetdude
SUBDIR += libnfs
SUBDIR += libnids
SUBDIR += libnss-cache
SUBDIR += libnss-mysql
SUBDIR += libnss-pgsql
SUBDIR += liboauth
SUBDIR += libopennet
SUBDIR += liboping
SUBDIR += libosip2
SUBDIR += libp0f
SUBDIR += libpcap
SUBDIR += libpcapnav
SUBDIR += libproxy
SUBDIR += libproxy-gnome
SUBDIR += libproxy-gnome3
SUBDIR += libproxy-kde
SUBDIR += libproxy-mozjs
SUBDIR += libproxy-perl
SUBDIR += libproxy-python
SUBDIR += libproxy-webkit
SUBDIR += librdkafka
SUBDIR += librouteros
SUBDIR += librsync
SUBDIR += librsync1
SUBDIR += libsocket++
SUBDIR += libsocketcpp
SUBDIR += libsrtp
SUBDIR += libtnl
SUBDIR += libtrace
SUBDIR += libunp
SUBDIR += libutp
SUBDIR += libvncserver
SUBDIR += libwebsockets
SUBDIR += libzapojit
SUBDIR += libzmq2
SUBDIR += libzmq3
SUBDIR += libzmq4
SUBDIR += liferea
SUBDIR += linknx
SUBDIR += linphone
SUBDIR += linux-c6-avahi-libs
SUBDIR += linux-c6-openldap
SUBDIR += linux-c6-tcp_wrappers-libs
SUBDIR += linux-c7-avahi-libs
SUBDIR += linux-c7-openldap
SUBDIR += linux-c7-tcp_wrappers-libs
SUBDIR += linux-f10-nss_ldap
SUBDIR += linux-f10-openldap
SUBDIR += linuxigd
SUBDIR += liveMedia
SUBDIR += lla
SUBDIR += ltm
SUBDIR += lualdap
SUBDIR += luasocket
SUBDIR += lvwimax
SUBDIR += mDNSResponder
SUBDIR += macchanger
SUBDIR += mad_fcl
SUBDIR += malo-firmware-kmod
SUBDIR += mdns-repeater
SUBDIR += mediastreamer
SUBDIR += mediatomb
SUBDIR += megatools
SUBDIR += mgen
SUBDIR += micro_inetd
SUBDIR += micro_proxy
SUBDIR += minidlna
SUBDIR += minisapserver
SUBDIR += minissdpd
SUBDIR += miniupnpc
SUBDIR += miniupnpd
SUBDIR += miredo
SUBDIR += miruo
SUBDIR += mlvpn
SUBDIR += mobile-broadband-provider-info
SUBDIR += mono-zeroconf
SUBDIR += mopd
SUBDIR += morebalance
SUBDIR += mosh
SUBDIR += mosquitto
SUBDIR += motsognir
SUBDIR += mpd-l2tp-ipv6pd-client
SUBDIR += mpd5
SUBDIR += mpich
SUBDIR += mpich2
SUBDIR += mping
SUBDIR += mrouted
SUBDIR += msend
SUBDIR += mtr
SUBDIR += mtr-nox11
SUBDIR += multicat
SUBDIR += nakenchat
SUBDIR += nanomsg
SUBDIR += nast
SUBDIR += nats-streaming-server
SUBDIR += nats-top
SUBDIR += nbd-server
SUBDIR += nc
SUBDIR += ncp
SUBDIR += ndisc6
SUBDIR += ndpi
SUBDIR += nepenthes
SUBDIR += nepim
SUBDIR += net6
SUBDIR += netatalk
SUBDIR += netatalk3
SUBDIR += netcat
SUBDIR += netdude
SUBDIR += netembryo
SUBDIR += netmap
SUBDIR += netpipes
SUBDIR += netscript
SUBDIR += netsed
SUBDIR += netselect
SUBDIR += netstrain
SUBDIR += nettest
SUBDIR += netwib
SUBDIR += neubot
SUBDIR += nfsshell
SUBDIR += ng_mikrotik_eoip
SUBDIR += ngrep
SUBDIR += nifmon
SUBDIR += nload
SUBDIR += nmsg
SUBDIR += nocatsplash
SUBDIR += norm
SUBDIR += nos-ttb
SUBDIR += nph
SUBDIR += ns3
SUBDIR += nss-pam-ldapd
SUBDIR += nss-pam-ldapd-sasl
SUBDIR += nss_ldap
SUBDIR += nsscache
SUBDIR += ntimed
SUBDIR += ntlmaps
SUBDIR += ntop
SUBDIR += ntopng
SUBDIR += ntp
SUBDIR += ntp-devel
SUBDIR += ntpa
SUBDIR += ntraceroute
SUBDIR += nusoap
SUBDIR += nxproxy
SUBDIR += nyancat
SUBDIR += nylon
SUBDIR += ocserv
SUBDIR += ohphone
SUBDIR += olsrd
SUBDIR += omnitty
SUBDIR += onenetd
SUBDIR += onioncat
SUBDIR += opal
SUBDIR += openafs
SUBDIR += openbgpd
SUBDIR += openbsc
SUBDIR += opendpi
SUBDIR += openggsn
SUBDIR += openh323
SUBDIR += openldap24-client
SUBDIR += openldap24-sasl-client
SUBDIR += openldap24-server
SUBDIR += openmpi
SUBDIR += openmq
SUBDIR += openmq-client
SUBDIR += openntpd
SUBDIR += opennx
SUBDIR += openospfd
SUBDIR += openpgm
SUBDIR += openradius
SUBDIR += opensips
SUBDIR += openslp
SUBDIR += opentracker
SUBDIR += openvswitch
SUBDIR += ortp
SUBDIR += osrtspproxy
SUBDIR += ossp-sa
SUBDIR += ostinato
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-Filesys-SmbClient
SUBDIR += p5-Frontier-RPC
SUBDIR += p5-Geo-IP
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-Timeout
SUBDIR += p5-IO-Socket-UNIX-Util
SUBDIR += p5-IP-Anonymous
SUBDIR += p5-IP-Country
SUBDIR += p5-IPC-Session
SUBDIR += p5-JavaScript-RPC
SUBDIR += p5-Kafka
SUBDIR += p5-MaxMind-DB-Common
SUBDIR += p5-MaxMind-DB-Reader
SUBDIR += p5-MaxMind-DB-Writer
SUBDIR += p5-Net
SUBDIR += p5-Net-AMQP
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-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-Jaiku
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-Nessus-XMLRPC
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-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-RawSock
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-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-URI
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-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-ZConf
SUBDIR += p5-ZConf-Bookmarks
SUBDIR += p5-ZeroMQ
SUBDIR += p5-ldap2pf
SUBDIR += p5-ldap2pw
SUBDIR += p5-perl-ldap
SUBDIR += p5-srv2pf
SUBDIR += pacemaker
SUBDIR += packetdrill
SUBDIR += packter-agent
SUBDIR += panoptis
SUBDIR += paris-traceroute
SUBDIR += passlogd
SUBDIR += pathneck
SUBDIR += pbnc
SUBDIR += pdb
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-apn
SUBDIR += pecl-geoip
SUBDIR += pecl-gupnp
SUBDIR += pecl-ip2location
SUBDIR += pecl-mosquitto
SUBDIR += pecl-oauth
SUBDIR += pecl-oauth2
SUBDIR += pecl-radius
SUBDIR += pecl-smbclient
SUBDIR += pecl-yaz
SUBDIR += pecl-yp
SUBDIR += pecl-zmq
SUBDIR += pen
SUBDIR += pfinger
SUBDIR += phamm
SUBDIR += php56-ldap
SUBDIR += php56-soap
SUBDIR += php56-sockets
SUBDIR += php56-xmlrpc
SUBDIR += php70-ldap
SUBDIR += php70-soap
SUBDIR += php70-sockets
SUBDIR += php70-xmlrpc
SUBDIR += phpldapadmin
SUBDIR += pim6-tools
SUBDIR += pim6dd
SUBDIR += pim6sd
SUBDIR += pimd
SUBDIR += pimdd
SUBDIR += pipsecd
SUBDIR += pjsip
SUBDIR += pjsip-extsrtp
SUBDIR += pktanon
SUBDIR += pload
SUBDIR += plugdaemon
SUBDIR += pmf
SUBDIR += polyorb
SUBDIR += poptop
SUBDIR += portfwd
SUBDIR += pptpclient
SUBDIR += proftpd-mod_ldap
SUBDIR += prosearch
SUBDIR += proxy-connect
SUBDIR += proxy-suite
SUBDIR += proxychains
SUBDIR += proxychains-ng
SUBDIR += prtunnel
SUBDIR += ptpd2
SUBDIR += ptunnel
SUBDIR += pure-sockets
SUBDIR += pvm
SUBDIR += pwhois
SUBDIR += pxe
SUBDIR += pxe-pdhcp
SUBDIR += py-GeoIP
SUBDIR += py-GeoIP2
SUBDIR += py-amqp
SUBDIR += py-amqplib
SUBDIR += py-avahi
SUBDIR += py-beanstalkc
SUBDIR += py-cinderclient
SUBDIR += py-cjdns
SUBDIR += py-cloudfiles
SUBDIR += py-coherence
SUBDIR += py-dpkt
SUBDIR += py-dugong
SUBDIR += py-ec2-cli-tools
SUBDIR += py-eventlet
SUBDIR += py-glanceclient
SUBDIR += py-gntp
SUBDIR += py-gspread
SUBDIR += py-gspreadsheet
SUBDIR += py-haproxy-log-analysis
SUBDIR += py-impacket
SUBDIR += py-ipaddress
SUBDIR += py-iplib
SUBDIR += py-kafka-python
SUBDIR += py-keystoneclient
SUBDIR += py-kombu
SUBDIR += py-ldap
SUBDIR += py-ldap3
SUBDIR += py-ldaptor
SUBDIR += py-libcloud
SUBDIR += py-libdnet
SUBDIR += py-libnet
SUBDIR += py-magic-wormhole
SUBDIR += py-matrix-synapse
SUBDIR += py-maxminddb
SUBDIR += py-miniupnpc
SUBDIR += py-msrplib
SUBDIR += py-ndg_httpsclient
SUBDIR += py-netaddr
SUBDIR += py-netif
SUBDIR += py-netifaces
SUBDIR += py-netlib
SUBDIR += py-netstring
SUBDIR += py-neutronclient
SUBDIR += py-nnpy
SUBDIR += py-novaclient
SUBDIR += py-ntplib
SUBDIR += py-oauth
SUBDIR += py-oauth2
SUBDIR += py-openstackclient
SUBDIR += py-paho-mqtt
SUBDIR += py-pamqp
SUBDIR += py-pcap
SUBDIR += py-pcapy
SUBDIR += py-pcs
SUBDIR += py-port-for
SUBDIR += py-pybeanstalk
SUBDIR += py-pygeoip
SUBDIR += py-pyldap
SUBDIR += py-pynmsg
SUBDIR += py-pynsq
SUBDIR += py-pypcap
SUBDIR += py-pysendfile
SUBDIR += py-pyshark
SUBDIR += py-pysmb
SUBDIR += py-pysocks
SUBDIR += py-pystun
SUBDIR += py-python-bitcoinrpc
SUBDIR += py-python-ntlm
SUBDIR += py-pyvmomi
SUBDIR += py-pyzmq
SUBDIR += py-qt4-network
SUBDIR += py-qt5-network
SUBDIR += py-rabbitpy
SUBDIR += py-radix
SUBDIR += py-raet
SUBDIR += py-rainbowstream
SUBDIR += py-ripe.atlas.cousteau
SUBDIR += py-ripe.atlas.sagan
SUBDIR += py-ripe.atlas.tools
SUBDIR += py-s3cmd
SUBDIR += py-s3transfer
SUBDIR += py-simplesoap
SUBDIR += py-smbpasswd
SUBDIR += py-soappy
SUBDIR += py-socketio-client
SUBDIR += py-speedtest-cli
SUBDIR += py-sshuttle
SUBDIR += py-suds
SUBDIR += py-terminado
SUBDIR += py-tofu
SUBDIR += py-tweepy
SUBDIR += py-twistedPair
SUBDIR += py-twitter
SUBDIR += py-twitter-tools
SUBDIR += py-txamqp
SUBDIR += py-txrestapi
SUBDIR += py-upnp-inspector
SUBDIR += py-uritemplate
SUBDIR += py-urllib3
SUBDIR += py-wolframalpha
SUBDIR += py-xmlrpc
SUBDIR += py-zope.proxy
SUBDIR += py-zsi
SUBDIR += py3-netifaces
SUBDIR += pygopherd
SUBDIR += pynids
SUBDIR += pyrad
SUBDIR += pythondirector
SUBDIR += qadsl
SUBDIR += qjsonrpc
SUBDIR += qoauth
SUBDIR += qt4-network
SUBDIR += qt5-network
SUBDIR += qtweetlib
SUBDIR += quagga
SUBDIR += queso
SUBDIR += quiterss
SUBDIR += quoted
SUBDIR += rabbitmq
SUBDIR += rabbitmq-c
SUBDIR += rabbitmq-c-devel
SUBDIR += raddump
SUBDIR += radiator
SUBDIR += radiusclient
SUBDIR += radiusd-cistron
SUBDIR += radreport
SUBDIR += radsecproxy
SUBDIR += radvd
SUBDIR += raggle
SUBDIR += rclone
SUBDIR += rdapper
SUBDIR += rdesktop
SUBDIR += rdist6
SUBDIR += recvnet
SUBDIR += redir
SUBDIR += relayd
SUBDIR += remmina
SUBDIR += remmina-plugin-gnome
SUBDIR += remmina-plugin-nx
SUBDIR += remmina-plugin-telepathy
SUBDIR += remmina-plugin-vnc
SUBDIR += remmina-plugin-xdmcp
SUBDIR += remmina-plugins
SUBDIR += remotebox
SUBDIR += remotedesk
SUBDIR += repeater
SUBDIR += reposado
SUBDIR += rfbproxy
SUBDIR += rinetd
SUBDIR += ripe-whois
SUBDIR += rp-pppoe
SUBDIR += rsplib
SUBDIR += rsync
SUBDIR += rsync-bpc
SUBDIR += rtg
SUBDIR += rtpbreak
SUBDIR += rtpproxy
SUBDIR += rtptools
SUBDIR += ruby-dict
SUBDIR += ruby-icmp
SUBDIR += ruby-tcpsocketpipe
SUBDIR += ruby-tserver
SUBDIR += rubygem-amazon-ec2
SUBDIR += rubygem-amq-protocol
SUBDIR += rubygem-amqp
SUBDIR += rubygem-amqp-utils
SUBDIR += rubygem-aws-s3
SUBDIR += rubygem-aws-ses
SUBDIR += rubygem-azure
SUBDIR += rubygem-azure-core
SUBDIR += rubygem-bunny
SUBDIR += rubygem-connection_pool
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-cloudatcost
SUBDIR += rubygem-fog-dynect
SUBDIR += rubygem-fog-ecloud
SUBDIR += rubygem-fog-google
SUBDIR += rubygem-fog-local
SUBDIR += rubygem-fog-openstack
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-geoip
SUBDIR += rubygem-gitlab_omniauth-ldap
SUBDIR += rubygem-http_parser.rb
SUBDIR += rubygem-httpauth
SUBDIR += rubygem-ipaddress
SUBDIR += rubygem-iproto
SUBDIR += rubygem-lita-gems
SUBDIR += rubygem-macaddr
SUBDIR += rubygem-net-ldap
SUBDIR += rubygem-net-netrc
SUBDIR += rubygem-net-ping
SUBDIR += rubygem-netrc
SUBDIR += rubygem-network_interface
SUBDIR += rubygem-oauth
SUBDIR += rubygem-oauth2
SUBDIR += rubygem-octokit
SUBDIR += rubygem-octopress-deploy
SUBDIR += rubygem-omniauth-auth0
SUBDIR += rubygem-omniauth-azure-oauth2
SUBDIR += rubygem-omniauth-facebook
SUBDIR += rubygem-omniauth-github
SUBDIR += rubygem-omniauth-github-discourse
SUBDIR += rubygem-omniauth-google-oauth2
SUBDIR += rubygem-omniauth-oauth
SUBDIR += rubygem-omniauth-oauth2
SUBDIR += rubygem-omniauth-openid
SUBDIR += rubygem-omniauth-twitter
SUBDIR += rubygem-open-uri-cached
SUBDIR += rubygem-opennebula
SUBDIR += rubygem-packetfu
SUBDIR += rubygem-pcaprub
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-rubyntlm
SUBDIR += rubygem-rubytter
SUBDIR += rubygem-rudy
SUBDIR += rubygem-rye
SUBDIR += rubygem-simple_oauth
SUBDIR += rubygem-stompserver
SUBDIR += rubygem-t
SUBDIR += rubygem-tweetstream
SUBDIR += rubygem-twitter
SUBDIR += rubygem-twitter-stream
SUBDIR += rubygem-twitter4r
SUBDIR += rubygem-u2f
SUBDIR += rubygem-uri-redis
SUBDIR += rubygem-whois
SUBDIR += rude
SUBDIR += rwhoisd
SUBDIR += samba-libsmbclient
SUBDIR += samba-nmblookup
SUBDIR += samba-smbclient
SUBDIR += samba36
SUBDIR += samba42
SUBDIR += samba43
SUBDIR += samba44
SUBDIR += samplicator
SUBDIR += sbd
SUBDIR += sbm
SUBDIR += scamper
SUBDIR += scapy
SUBDIR += scnc
SUBDIR += scr_ipfm
SUBDIR += scribe
SUBDIR += sdl2_net
SUBDIR += sdl_net
SUBDIR += seda
SUBDIR += self-service-password
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 += sip_scenario
SUBDIR += sippy_b2bua
SUBDIR += siproxd
SUBDIR += sipsak
SUBDIR += sixxs-aiccu
SUBDIR += skstream
SUBDIR += sl2tps
SUBDIR += slurm
SUBDIR += smb4k-kde4
SUBDIR += smbldap-tools
SUBDIR += smcroute
SUBDIR += smm++
SUBDIR += sngrep
SUBDIR += sniffit
SUBDIR += sntop
SUBDIR += sobby
SUBDIR += socat
SUBDIR += sock
SUBDIR += socketbind
SUBDIR += socketpipe
SUBDIR += socketw
SUBDIR += sofia-sip
SUBDIR += spideroak
SUBDIR += splatd
SUBDIR += spoofer
SUBDIR += spread
SUBDIR += spread-j
SUBDIR += spread4
SUBDIR += sqtop
SUBDIR += srelay
SUBDIR += ss5
SUBDIR += ssldump
SUBDIR += sslh
SUBDIR += ssltunnel-client
SUBDIR += ssltunnel-server
SUBDIR += ssmping
SUBDIR += ssspl
SUBDIR += ssvnc
SUBDIR += stf-6rd-kmod
SUBDIR += stone
SUBDIR += stund
SUBDIR += subnetcalc
SUBDIR += suckblow
SUBDIR += sup
SUBDIR += svnup
SUBDIR += syncthing
SUBDIR += syncthing-cli
SUBDIR += syncthing-discosrv
SUBDIR += syncthing-inotify
SUBDIR += tableutil
SUBDIR += tac_plus4
SUBDIR += tapidbus
SUBDIR += tayga
SUBDIR += tclsoap
SUBDIR += tcludp
SUBDIR += tcpcat
SUBDIR += tcpdstat
SUBDIR += tcpdump
SUBDIR += tcpdump398
SUBDIR += tcpflow
SUBDIR += tcpick
SUBDIR += tcpillust
SUBDIR += tcping
SUBDIR += tcpkali
SUBDIR += tcpmssd
SUBDIR += tcpproxy
SUBDIR += tcpreen
SUBDIR += tcpsg
SUBDIR += tcpshow
SUBDIR += tcpslice
SUBDIR += tcpsplit
SUBDIR += tcpstat
SUBDIR += tcptestsuite
SUBDIR += tcptrace
SUBDIR += tcptraceroute
SUBDIR += tcptraceroute-devel
SUBDIR += tcpview
SUBDIR += tcpwatch
SUBDIR += tcpxd
SUBDIR += tcpxtract
SUBDIR += tdetect
SUBDIR += tftpgrab
SUBDIR += thcrut
SUBDIR += throttled
SUBDIR += tigervnc
SUBDIR += tigervnc-devel
SUBDIR += tightvnc
SUBDIR += tintin++
SUBDIR += tiny-network-utilities
SUBDIR += tinyfugue
SUBDIR += tinyldap
SUBDIR += tn5250
SUBDIR += tn5250j
SUBDIR += toonel
SUBDIR += torsocks
SUBDIR += traceroute
SUBDIR += traff
SUBDIR += trafshow
SUBDIR += trafshow3
SUBDIR += tramp
SUBDIR += trickle
SUBDIR += tsclient
SUBDIR += tshark
SUBDIR += tshark-lite
SUBDIR += tsocks
SUBDIR += tucan
SUBDIR += turnserver
SUBDIR += turses
SUBDIR += twitux
SUBDIR += u6rd
SUBDIR += ucarp
SUBDIR += udptunnel
SUBDIR += udpxy
SUBDIR += udt
SUBDIR += uget
SUBDIR += uhttpmock
SUBDIR += ulxmlrpcpp
SUBDIR += unfs3
SUBDIR += unison
SUBDIR += unison-devel
SUBDIR += unison-nox11
SUBDIR += unison232
SUBDIR += unison240
SUBDIR += unix2tcp
SUBDIR += uplog
SUBDIR += urelay
SUBDIR += uriparser
SUBDIR += urlendec
SUBDIR += usbredir
SUBDIR += userfw
SUBDIR += utftpd
SUBDIR += vblade
SUBDIR += vde
SUBDIR += vde2
SUBDIR += vinagre
SUBDIR += vino
SUBDIR += vmware-vsphere-cli
SUBDIR += vnc
SUBDIR += vncreflector
SUBDIR += vnstat
SUBDIR += vortex
SUBDIR += vtun
SUBDIR += wackamole
SUBDIR += wackford-squeers
SUBDIR += wakeonlan
SUBDIR += whois
SUBDIR += widentd
SUBDIR += wireshark
SUBDIR += wireshark-lite
SUBDIR += wireshark-qt5
SUBDIR += wizd
SUBDIR += wlan2eth
SUBDIR += wmlj
SUBDIR += wmnd
SUBDIR += wmnet
SUBDIR += wmnet2
SUBDIR += wmnetload
SUBDIR += wmnetmon
SUBDIR += wmpiki
SUBDIR += wmping
SUBDIR += wmwave
SUBDIR += wmwifi
SUBDIR += wmwlmon
SUBDIR += wol
SUBDIR += wpa_gui
SUBDIR += wping
SUBDIR += x11vnc
SUBDIR += x2goclient
SUBDIR += x2goclient-cli
SUBDIR += xferstats
SUBDIR += xipmsg
SUBDIR += xisp
SUBDIR += xmlrpc-c
SUBDIR += xmlrpc-epi
SUBDIR += xorp
SUBDIR += xprobe
SUBDIR += xpvm
SUBDIR += xrdesktop2
SUBDIR += xrdp
SUBDIR += xrdp-devel
SUBDIR += yami4
SUBDIR += yaph
SUBDIR += yate
SUBDIR += yaz
SUBDIR += yaz++
SUBDIR += yazproxy
SUBDIR += yconalyzer
SUBDIR += yptransitd
SUBDIR += zebra
SUBDIR += zebra-server
SUBDIR += zeroconf-ioslave
SUBDIR += zerotier
SUBDIR += zillion
SUBDIR += zmap
SUBDIR += zsync
.include <bsd.port.subdir.mk>
|