summaryrefslogtreecommitdiff
path: root/net/Makefile
blob: e766206319f6fc3d7b7d1195a612f773ea86d80f (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
# $FreeBSD$
#

    COMMENT = Networking tools

    SUBDIR += 3proxy
    SUBDIR += 44bsd-rdist
    SUBDIR += 4g8
    SUBDIR += 6tunnel
    SUBDIR += AquaGatekeeper
    SUBDIR += AquaGatekeeper2
    SUBDIR += DarwinStreamingServer
    SUBDIR += GeoIP
    SUBDIR += Sockets
    SUBDIR += acx100
    SUBDIR += adasockets
    SUBDIR += aget
    SUBDIR += aim
    SUBDIR += amsn
    SUBDIR += amule1
    SUBDIR += amule2
    SUBDIR += apache-soap
    SUBDIR += apinger
    SUBDIR += apollon
    SUBDIR += archie
    SUBDIR += ari-yahoo
    SUBDIR += arla
    SUBDIR += arp-sk
    SUBDIR += arpd
    SUBDIR += arping
    SUBDIR += arprelease
#XXX move to net-mgmt
    SUBDIR += asfrecorder
    SUBDIR += aslookup
    SUBDIR += asterisk
    SUBDIR += asterisk-oh323
    SUBDIR += atmsupport
    SUBDIR += ayttm
    SUBDIR += azureus
    SUBDIR += b2bua
    SUBDIR += balance
    SUBDIR += bbsnet
    SUBDIR += beacon
    SUBDIR += beacon-server
    SUBDIR += bfilter
    SUBDIR += bindtest
    SUBDIR += bing
    SUBDIR += binkd
    SUBDIR += bird
    SUBDIR += blam
    SUBDIR += bld
    SUBDIR += bmon
    SUBDIR += bnbt
    SUBDIR += boclient
    SUBDIR += boinc-client
    SUBDIR += bounce
    SUBDIR += bpfstat
    SUBDIR += brutecopy
    SUBDIR += bsdproxy
    SUBDIR += bsflite
    SUBDIR += btqueue
    SUBDIR += c3270
    SUBDIR += cacti
    SUBDIR += cactid
    SUBDIR += callgen
    SUBDIR += cap
    SUBDIR += ccmsn
    SUBDIR += ccxstream
    SUBDIR += cdonkey
    SUBDIR += centericq
    SUBDIR += cicquin
    SUBDIR += citadel
    SUBDIR += citrix_ica
    SUBDIR += click
    SUBDIR += clusterit
    SUBDIR += cnd
    SUBDIR += cnet
    SUBDIR += cnupm
    SUBDIR += coccinella
    SUBDIR += coda5_client
    SUBDIR += coda5_doc
    SUBDIR += coda5_server
    SUBDIR += coda6_client
    SUBDIR += coda6_server
    SUBDIR += convey
    SUBDIR += corkscrew
    SUBDIR += courier-authlib-ldap
    SUBDIR += cphone
    SUBDIR += crescendo
    SUBDIR += cryptcat
    SUBDIR += ct
    SUBDIR += ctorrent
    SUBDIR += ctrace
    SUBDIR += cvsup
    SUBDIR += cvsup-mirror
    SUBDIR += cvsup-without-gui
    SUBDIR += cvsync
    SUBDIR += danamics
    SUBDIR += dante
    SUBDIR += datapipe
    SUBDIR += dcd
    SUBDIR += dclib
    SUBDIR += dctc
    SUBDIR += dctc-gui
    SUBDIR += dctc-gui-qt
    SUBDIR += ddc
    SUBDIR += delegate
    SUBDIR += despoof
    SUBDIR += dgd
    SUBDIR += dgd-lpmud
    SUBDIR += dgd-net
    SUBDIR += dhcp-agent
    SUBDIR += dhcp6
    SUBDIR += dhcpdump
    SUBDIR += dhcping
    SUBDIR += dictd
    SUBDIR += dictd-database
    SUBDIR += diradmin
    SUBDIR += doc
    SUBDIR += dosdetector
    SUBDIR += dtcp
    SUBDIR += dtcpclient
    SUBDIR += easysoap
    SUBDIR += echat
    SUBDIR += echoping
    SUBDIR += edonkey-gui-gtk
    SUBDIR += edonkey-gui-gtk-urlslave
    SUBDIR += ejabberd
    SUBDIR += entitymib
    SUBDIR += erlang_xmlrpc
    SUBDIR += etherboot
    SUBDIR += ethereal
    SUBDIR += ethereal-lite
    SUBDIR += etunnel
    SUBDIR += evaq
    SUBDIR += fcptools
    SUBDIR += fidelio
    SUBDIR += findmtu
    SUBDIR += firetalk
    SUBDIR += flowgrep
    SUBDIR += forg
    SUBDIR += fpc-inet
    SUBDIR += fping
    SUBDIR += freebsd-uucp
    SUBDIR += freedbd
    SUBDIR += freenet
    SUBDIR += freenet6
    SUBDIR += freenx
    SUBDIR += freeradius
    SUBDIR += freevrrpd
    SUBDIR += freewais-sf
    SUBDIR += frost
    SUBDIR += fspclient
    SUBDIR += fspd
    SUBDIR += fsplib
    SUBDIR += fugu
    SUBDIR += gacxtool
    SUBDIR += gaim
    SUBDIR += gaim-latex
    SUBDIR += gaim-openq
    SUBDIR += gaim-rss-reader
    SUBDIR += gajim
    SUBDIR += gale
    SUBDIR += gastman
    SUBDIR += gatekeeper
    SUBDIR += gdesklets-lt-network
    SUBDIR += gdesklets-networkinfo
    SUBDIR += gdesklets-sensor-psi_network
    SUBDIR += generic-nqs
    SUBDIR += geotrace
    SUBDIR += ggsd
    SUBDIR += gicq
    SUBDIR += gift
    SUBDIR += gift-fasttrack
    SUBDIR += gift-gnutella
    SUBDIR += gift-openft
    SUBDIR += giftcurs
    SUBDIR += giftoxic
    SUBDIR += giftui
    SUBDIR += gini
    SUBDIR += ginsu
    SUBDIR += gkrellm-gift
    SUBDIR += gkrellm_snmp
    SUBDIR += gkrellmmultiping2
    SUBDIR += gkrellmqst
    SUBDIR += gkrellmwireless
    SUBDIR += gkrellmwireless2
    SUBDIR += glflow
    SUBDIR += gmdns
    SUBDIR += gnet
    SUBDIR += gnet-glib2
    SUBDIR += gnet2
    SUBDIR += gnetcat
    SUBDIR += gnewtellium
    SUBDIR += gnoemoe
    SUBDIR += gnomba
    SUBDIR += gnome-btdownload
    SUBDIR += gnome-jabber
    SUBDIR += gnome-mud
    SUBDIR += gnome-vnc
    SUBDIR += gnomeicu2
    SUBDIR += gnomemeeting
    SUBDIR += gnomenetstatus
    SUBDIR += gnomenettool
    SUBDIR += gnometelnet
    SUBDIR += gnosamba
    SUBDIR += gnu-finger
    SUBDIR += gnu-radius
    SUBDIR += gnunet
    SUBDIR += gofish
    SUBDIR += googolplex
    SUBDIR += gopher
    SUBDIR += gossip
    SUBDIR += gq
    SUBDIR += grdesktop
    SUBDIR += gsk
    SUBDIR += gspoof
    SUBDIR += gstreamer-plugins-libmms
    SUBDIR += gtic
    SUBDIR += gtk-gnutella
    SUBDIR += gtkhx
    SUBDIR += gtkyahoo
    SUBDIR += gtorrentviewer
    SUBDIR += gutenfetch
    SUBDIR += gyach
    SUBDIR += hagelslag
    SUBDIR += happystats
    SUBDIR += haproxy
    SUBDIR += hf6to4
    SUBDIR += hidentd
    SUBDIR += hinfo
    SUBDIR += hlmaster
    SUBDIR += honeyd
    SUBDIR += howl
    SUBDIR += htpdate
    SUBDIR += http_ping
    SUBDIR += httping
    SUBDIR += hx
    SUBDIR += i2p
    SUBDIR += icb
    SUBDIR += ickle
    SUBDIR += icmpchat
    SUBDIR += icmpinfo
    SUBDIR += icpld
    SUBDIR += icqlib
    SUBDIR += icqlib0
    SUBDIR += ifdepd
    SUBDIR += ifstat
    SUBDIR += ifstated
    SUBDIR += imapproxy
    SUBDIR += imcom
    SUBDIR += ip6_int
    SUBDIR += ipex
    SUBDIR += ipfw-graph
    SUBDIR += ipgrab
    SUBDIR += iplog
    SUBDIR += ipsorc
    SUBDIR += ipsumdump
    SUBDIR += ipsvd
    SUBDIR += ipv6socket_scrub
    SUBDIR += ipvs
    SUBDIR += ipw-firmware
    SUBDIR += irrd
    SUBDIR += isc-dhcp3-client
    SUBDIR += isc-dhcp3-devel
    SUBDIR += isc-dhcp3-relay
    SUBDIR += isc-dhcp3-server
    SUBDIR += iwi-firmware
    SUBDIR += jabber
    SUBDIR += jabber-aim
    SUBDIR += jabber-conference
    SUBDIR += jabber-jud
    SUBDIR += jabber-msn
    SUBDIR += jabber-pyicq
    SUBDIR += jabber-pymsn
    SUBDIR += jabber-users-agent
    SUBDIR += jabber-xdb_ldap
    SUBDIR += jabber-yahoo
    SUBDIR += jabberd
    SUBDIR += jags
    SUBDIR += jarl
    SUBDIR += java-beepcore
    SUBDIR += javadc
    SUBDIR += jcifs
    SUBDIR += jffnms
    SUBDIR += jit
    SUBDIR += jrobin
    SUBDIR += jsch
    SUBDIR += jumpgate
    SUBDIR += jwhois
    SUBDIR += kdenetwork3
    SUBDIR += keepalived
    SUBDIR += kf
    SUBDIR += kissd
    SUBDIR += kmerlin
    SUBDIR += kmess
    SUBDIR += kmldonkey
    SUBDIR += knemo
    SUBDIR += konverse
    SUBDIR += kphone
    SUBDIR += kpopup
    SUBDIR += krdesktop
    SUBDIR += ktorrent
    SUBDIR += l2tpd
    SUBDIR += lam
    SUBDIR += lam7
    SUBDIR += lambdamoo
    SUBDIR += lanbrowsing
    SUBDIR += latd
    SUBDIR += ldap2dns
    SUBDIR += ldapbrowser
    SUBDIR += ldapdiff
    SUBDIR += ldapsdk
    SUBDIR += ldapsh
    SUBDIR += lft
    SUBDIR += libbt
    SUBDIR += libconnect
    SUBDIR += libdnet
    SUBDIR += liberator
    SUBDIR += libfreenet
    SUBDIR += libgnetwork
    SUBDIR += libicq
    SUBDIR += libicq2000
    SUBDIR += libmms
    SUBDIR += libmsn
    SUBDIR += libnet
    SUBDIR += libnet-devel
    SUBDIR += libnetdude
    SUBDIR += libnids
    SUBDIR += libnss-mysql
    SUBDIR += libopennet
    SUBDIR += libosip
    SUBDIR += libosip2
    SUBDIR += libpcap
    SUBDIR += libpcapnav
    SUBDIR += libpdtp
    SUBDIR += librsync
    SUBDIR += libsocket++
    SUBDIR += libsocketcpp
    SUBDIR += libtcp4u
    SUBDIR += libtorrent
    SUBDIR += libunp
    SUBDIR += libunpipc
    SUBDIR += libvncserver
    SUBDIR += libyahoo2
    SUBDIR += licq
    SUBDIR += licq-console
    SUBDIR += licq-osd
    SUBDIR += licq-qt-gui
    SUBDIR += liferea
    SUBDIR += limewire
    SUBDIR += linc
    SUBDIR += link-monitor-applet
    SUBDIR += linphone
    SUBDIR += linphone-base
    SUBDIR += linpopup
    SUBDIR += linux-agsatellite
    SUBDIR += linux-edonkey-core
    SUBDIR += linux-edonkey-server
    SUBDIR += linux-jigdo
    SUBDIR += linux-nx-client
    SUBDIR += linux-overnet-core
    SUBDIR += linux-ymessenger
    SUBDIR += linuxigd
    SUBDIR += liveMedia
    SUBDIR += lla
    SUBDIR += loudmouth
    SUBDIR += luasocket
    SUBDIR += lyntin
    SUBDIR += mDNSResponder
    SUBDIR += mad_fcl
    SUBDIR += magictun
    SUBDIR += mars_nwe
    SUBDIR += meanwhile
    SUBDIR += meanwhile-gaim
    SUBDIR += mercury
    SUBDIR += merlinmon
    SUBDIR += mgen
    SUBDIR += micq
    SUBDIR += micro_proxy
    SUBDIR += minder
    SUBDIR += minisapserver
    SUBDIR += mknbi
    SUBDIR += mldonkey
    SUBDIR += mldonkey-core
    SUBDIR += mldonkey-core-devel
    SUBDIR += mldonkey-devel
    SUBDIR += mldonkey-gui
    SUBDIR += mldonkey-gui-devel
    SUBDIR += mldonkey-perlreactor
    SUBDIR += mldonkey-sancho
    SUBDIR += mldonkey-serverspy
    SUBDIR += mldonkey-urlslave
    SUBDIR += mmucl
    SUBDIR += mopd
    SUBDIR += morebalance
    SUBDIR += mpd
    SUBDIR += mpich
    SUBDIR += mrt
    SUBDIR += mrtg-ping-probe
    SUBDIR += msend
    SUBDIR += msntp
    SUBDIR += mtr
    SUBDIR += mu-conference
    SUBDIR += mudix
    SUBDIR += mute-net
    SUBDIR += mute-net-gui
    SUBDIR += mute-net-text
    SUBDIR += mutella
    SUBDIR += naim
    SUBDIR += nakenchat
    SUBDIR += nam
    SUBDIR += napshare
    SUBDIR += nast
    SUBDIR += nbd-server
    SUBDIR += nc
    SUBDIR += nc6
    SUBDIR += ncp
    SUBDIR += ncplib
    SUBDIR += nemesis
    SUBDIR += net-http
    SUBDIR += netatalk
    SUBDIR += netboot
    SUBDIR += netcat
    SUBDIR += netdude
    SUBDIR += netmap
    SUBDIR += netpipes
    SUBDIR += netscript
    SUBDIR += netsed
    SUBDIR += netspeed_applet
    SUBDIR += netstrain
    SUBDIR += nettest
    SUBDIR += netwib
    SUBDIR += newsbot
    SUBDIR += nfsshell
    SUBDIR += ng_daphne
    SUBDIR += ng_netflow
    SUBDIR += ngrep
    SUBDIR += ngrep-lib
    SUBDIR += nic
    SUBDIR += nicmond
    SUBDIR += nicotine
    SUBDIR += nifmon
    SUBDIR += nload
    SUBDIR += nocatauth-gateway
    SUBDIR += nocatauth-server
    SUBDIR += nocatsplash
    SUBDIR += nos-ttb
    SUBDIR += ns
    SUBDIR += nss_ldap
    SUBDIR += ntalk
    SUBDIR += ntop
    SUBDIR += ntp
    SUBDIR += ntraceroute
    SUBDIR += nvnet
    SUBDIR += nxserver
    SUBDIR += nylon
    SUBDIR += obnc
    SUBDIR += ocaml-jabbr
    SUBDIR += ohphone
    SUBDIR += olsrd
    SUBDIR += onenetd
    SUBDIR += openam
    SUBDIR += openbgpd
    SUBDIR += opendchub
    SUBDIR += opengk
    SUBDIR += openh323
    SUBDIR += openldap22-client
    SUBDIR += openldap22-sasl-client
    SUBDIR += openldap22-sasl-server
    SUBDIR += openldap22-server
    SUBDIR += openldap23-client
    SUBDIR += openldap23-sasl-client
    SUBDIR += openldap23-sasl-server
    SUBDIR += openldap23-server
    SUBDIR += openmcu
    SUBDIR += openntpd
    SUBDIR += openradius
    SUBDIR += openslp
    SUBDIR += openverse
    SUBDIR += ortp
    SUBDIR += osrtspproxy
    SUBDIR += ossp-sa
    SUBDIR += p5-AddressBook
    SUBDIR += p5-Archie
    SUBDIR += p5-EasyTCP
    SUBDIR += p5-File-Rsync
    SUBDIR += p5-File-RsyncP
    SUBDIR += p5-Filesys-SmbClient
    SUBDIR += p5-Frontier-RPC
    SUBDIR += p5-Geo-IP
    SUBDIR += p5-Geo-IPfree
    SUBDIR += p5-Gopher-Server
    SUBDIR += p5-IO-INET6
    SUBDIR += p5-IO-Interface
    SUBDIR += p5-IO-Socket-Multicast
    SUBDIR += p5-IP-Country
    SUBDIR += p5-Jabber-Connection
    SUBDIR += p5-Net
    SUBDIR += p5-Net-AIM
    SUBDIR += p5-Net-AOLIM
    SUBDIR += p5-Net-Amazon
    SUBDIR += p5-Net-BGP
    SUBDIR += p5-Net-Blogger
    SUBDIR += p5-Net-CIDR-Lite
    SUBDIR += p5-Net-DLookup
    SUBDIR += p5-Net-Daemon
    SUBDIR += p5-Net-Delicious
    SUBDIR += p5-Net-Dict
    SUBDIR += p5-Net-Divert
    SUBDIR += p5-Net-Finger
    SUBDIR += p5-Net-Gnats
    SUBDIR += p5-Net-Google
    SUBDIR += p5-Net-Gopher
    SUBDIR += p5-Net-HL7
    SUBDIR += p5-Net-ICQ2000
    SUBDIR += p5-Net-Ident
    SUBDIR += p5-Net-Jabber
    SUBDIR += p5-Net-MSN
    SUBDIR += p5-Net-MovableType
    SUBDIR += p5-Net-OSCAR
    SUBDIR += p5-Net-OpenDHT
    SUBDIR += p5-Net-Packet
    SUBDIR += p5-Net-ParseWhois
    SUBDIR += p5-Net-Patricia
    SUBDIR += p5-Net-Pcap
    SUBDIR += p5-Net-Ping-External
    SUBDIR += p5-Net-Radius
    SUBDIR += p5-Net-RawIP
    SUBDIR += p5-Net-RawSock
    SUBDIR += p5-Net-Rendezvous
    SUBDIR += p5-Net-Rsh
    SUBDIR += p5-Net-SAP
    SUBDIR += p5-Net-SCP
    SUBDIR += p5-Net-SDP
    SUBDIR += p5-Net-SFTP
    SUBDIR += p5-Net-SMPP
    SUBDIR += p5-Net-SNPP
    SUBDIR += p5-Net-SSH
    SUBDIR += p5-Net-SSH-Perl
    SUBDIR += p5-Net-Server
    SUBDIR += p5-Net-Services
    SUBDIR += p5-Net-TCLink
    SUBDIR += p5-Net-Telnet
    SUBDIR += p5-Net-Traceroute
    SUBDIR += p5-Net-Traceroute6
    SUBDIR += p5-Net-Wake
    SUBDIR += p5-Net-Whois
    SUBDIR += p5-Net-Whois-RIPE
    SUBDIR += p5-Net-Whois-Raw
    SUBDIR += p5-Net-XMPP
    SUBDIR += p5-Net-XWhois
    SUBDIR += p5-Net-Z3950
    SUBDIR += p5-Net-Z3950-SimpleServer
    SUBDIR += p5-Net-ext
    SUBDIR += p5-NetAddr-IP-Count
    SUBDIR += p5-NetPacket
    SUBDIR += p5-OAI-Harvester
    SUBDIR += p5-POE-Component-Client-Keepalive
    SUBDIR += p5-POE-Component-Client-Ping
    SUBDIR += p5-POE-Component-Jabber
    SUBDIR += p5-POE-Component-Pcap
    SUBDIR += p5-POE-Component-RRDTool
    SUBDIR += p5-POE-Component-Spread
    SUBDIR += p5-Parallel-MPI
    SUBDIR += p5-Parallel-Pvm
    SUBDIR += p5-PlRPC
    SUBDIR += p5-RPC-XML
    SUBDIR += p5-ResourcePool-Resource-Net-LDAP
    SUBDIR += p5-ResourcePool-Resource-SOAP-Lite
    SUBDIR += p5-SOAP
    SUBDIR += p5-SOAP-Data-Builder
    SUBDIR += p5-SOAP-Lite
    SUBDIR += p5-Socket6
    SUBDIR += p5-Socks
    SUBDIR += p5-Spread-Session
    SUBDIR += p5-URI
    SUBDIR += p5-Validate-Net
    SUBDIR += p5-X500-DN
    SUBDIR += p5-XPC
    SUBDIR += p5-pdonkey
    SUBDIR += p5-perl-ldap
    SUBDIR += passlogd
    SUBDIR += pathchar
    SUBDIR += pbnc
    SUBDIR += pchar
    SUBDIR += pcnfsd
    SUBDIR += pear-Auth_RADIUS
    SUBDIR += pear-Net_CheckIP
    SUBDIR += pear-Net_DIME
    SUBDIR += pear-Net_DNSBL
    SUBDIR += pear-Net_Dict
    SUBDIR += pear-Net_Finger
    SUBDIR += pear-Net_IPv6
    SUBDIR += pear-Net_Ident
    SUBDIR += pear-Net_NNTP
    SUBDIR += pear-Net_POP3
    SUBDIR += pear-Net_Ping
    SUBDIR += pear-Net_SMTP
    SUBDIR += pear-Net_Server
    SUBDIR += pear-Net_Sieve
    SUBDIR += pear-Net_Socket
    SUBDIR += pear-Net_URL
    SUBDIR += pear-Net_UserAgent_Detect
    SUBDIR += pear-Net_UserAgent_Mobile
    SUBDIR += pear-SOAP
    SUBDIR += pebrot
    SUBDIR += pecl-radius
    SUBDIR += pecl-yaz
    SUBDIR += peercast
    SUBDIR += pen
    SUBDIR += perldap
    SUBDIR += pfflowd
    SUBDIR += pfinger
    SUBDIR += phex
    SUBDIR += php4-ldap
    SUBDIR += php4-rrdtool
    SUBDIR += php4-sockets
    SUBDIR += php4-xmlrpc
    SUBDIR += php4-yp
    SUBDIR += php5-ldap
    SUBDIR += php5-soap
    SUBDIR += php5-sockets
    SUBDIR += php5-xmlrpc
    SUBDIR += php5-yp
    SUBDIR += phpldapadmin
    SUBDIR += pim6dd
    SUBDIR += pim6sd
    SUBDIR += pipsecd
    SUBDIR += plb
    SUBDIR += pload
    SUBDIR += plugdaemon
    SUBDIR += pmf
    SUBDIR += poink
    SUBDIR += poptop
    SUBDIR += pork
    SUBDIR += portfwd
    SUBDIR += pppd23
    SUBDIR += pppload
    SUBDIR += pppoa
    SUBDIR += ppptraf
    SUBDIR += pptpclient
    SUBDIR += ppxp
    SUBDIR += proxy-connect
    SUBDIR += proxy-suite
    SUBDIR += proxychains
    SUBDIR += prtunnel
    SUBDIR += psi
    SUBDIR += ptunnel
    SUBDIR += pvm
    SUBDIR += pvm++
    SUBDIR += pxe
    SUBDIR += py-GeoIP
    SUBDIR += py-bittornado
    SUBDIR += py-bittornado-core
    SUBDIR += py-bittorrent
    SUBDIR += py-bittorrent-core
    SUBDIR += py-bittorrent-core-devel
    SUBDIR += py-bittorrent-devel
    SUBDIR += py-fngrab
    SUBDIR += py-google
    SUBDIR += py-jabber
    SUBDIR += py-kenosis
    SUBDIR += py-kenosis-bittorrent
    SUBDIR += py-ldap2
    SUBDIR += py-libnet
    SUBDIR += py-medusa
    SUBDIR += py-mp-random
    SUBDIR += py-msnp
    SUBDIR += py-pcap
    SUBDIR += py-pyxmpp
    SUBDIR += py-radix
    SUBDIR += py-rrdpipe
    SUBDIR += py-rrdtool_lgpl
    SUBDIR += py-rt
    SUBDIR += py-samba
    SUBDIR += py-smb
    SUBDIR += py-smbpasswd
    SUBDIR += py-soappy
    SUBDIR += py-soappy-devel
    SUBDIR += py-soapy
    SUBDIR += py-spreadmodule
    SUBDIR += py-twistedPair
    SUBDIR += py-twistedWords
    SUBDIR += py-xmlrpc
    SUBDIR += py-xmlrpclib
    SUBDIR += py-zsi
    SUBDIR += pygopherd
    SUBDIR += pynids
    SUBDIR += pypvm
    SUBDIR += pyslsk
    SUBDIR += pythondirector
    SUBDIR += qadsl
    SUBDIR += qtella
    SUBDIR += qtorrent
    SUBDIR += quagga
    SUBDIR += queso
    SUBDIR += quoted
    SUBDIR += raddump
    SUBDIR += radiator
    SUBDIR += radiusclient
    SUBDIR += radiusd-cistron
    SUBDIR += radreport
    SUBDIR += radvd
    SUBDIR += raggle
    SUBDIR += rboot
    SUBDIR += rdesktop
    SUBDIR += rdist6
    SUBDIR += redir
    SUBDIR += relay
    SUBDIR += rexx-sock
    SUBDIR += rfbproxy
    SUBDIR += rinetd
    SUBDIR += ripe-whois
    SUBDIR += ripetools
    SUBDIR += ris
    SUBDIR += rmsg
    SUBDIR += roadrunner
    SUBDIR += rp-pppoe
    SUBDIR += rrdtool
    SUBDIR += rrdtool10
    SUBDIR += rshell
    SUBDIR += rsync
    SUBDIR += rtg
    SUBDIR += rtorrent
    SUBDIR += ruby-dict
    SUBDIR += ruby-icmp
    SUBDIR += ruby-ldap
    SUBDIR += ruby-mpi
    SUBDIR += ruby-net-geoip
    SUBDIR += ruby-nis
    SUBDIR += ruby-pcap
    SUBDIR += ruby-radius
    SUBDIR += ruby-romp
    SUBDIR += ruby-spread
    SUBDIR += ruby-tcpsocketpipe
    SUBDIR += ruby-tserver
    SUBDIR += rude
    SUBDIR += rwhois
    SUBDIR += samba
    SUBDIR += samba-libsmbclient
    SUBDIR += samba3
    SUBDIR += sambasentinel
    SUBDIR += samplicator
    SUBDIR += sbd
    SUBDIR += scamper
    SUBDIR += scand
    SUBDIR += scr_ipfm
    SUBDIR += sdl_net
    SUBDIR += seda
    SUBDIR += sendfile
    SUBDIR += ser
    SUBDIR += serveez
    SUBDIR += sharity-light
    SUBDIR += shmux
    SUBDIR += silc-client
    SUBDIR += silc-server
    SUBDIR += silky
    SUBDIR += simicq
    SUBDIR += sip_scenario
    SUBDIR += sipp
    SUBDIR += siproxd
    SUBDIR += sipsak
    SUBDIR += sixxs-aiccu
    SUBDIR += sixxs-heartbeatd
    SUBDIR += skstream
    SUBDIR += skype
    SUBDIR += sl2tps
    SUBDIR += slirp
    SUBDIR += slurm
    SUBDIR += smbfs
    SUBDIR += smbldap-tools
    SUBDIR += smm++
    SUBDIR += smokeping
    SUBDIR += sniffit
    SUBDIR += sntop
    SUBDIR += socat
    SUBDIR += socketbind
    SUBDIR += socketpipe
    SUBDIR += socks5
    SUBDIR += spread
    SUBDIR += spread-j
    SUBDIR += squall
    SUBDIR += ssldump
    SUBDIR += ssltunnel-client
    SUBDIR += ssltunnel-server
    SUBDIR += stone
    SUBDIR += straw
    SUBDIR += stund
    SUBDIR += suckblow
    SUBDIR += sulci
    SUBDIR += sup
    SUBDIR += svnc
    SUBDIR += tac_plus-libradius
    SUBDIR += tac_plus4
    SUBDIR += tacshell
    SUBDIR += tcpcat
    SUBDIR += tcpdstat
    SUBDIR += tcpdump
    SUBDIR += tcpflow
    SUBDIR += tcpick
    SUBDIR += tcpillust
    SUBDIR += tcping
    SUBDIR += tcpmssd
    SUBDIR += tcpreen
    SUBDIR += tcpsg
    SUBDIR += tcpshow
    SUBDIR += tcpslice
    SUBDIR += tcpstat
    SUBDIR += tcptrace
    SUBDIR += tcptraceroute
    SUBDIR += tcpview
    SUBDIR += tcpwatch
    SUBDIR += tdetect
    SUBDIR += telnetx
    SUBDIR += telserv
    SUBDIR += tethereal
    SUBDIR += tethereal-lite
    SUBDIR += thcrut
    SUBDIR += throttled
    SUBDIR += tightvnc
    SUBDIR += tik
    SUBDIR += tintin++
    SUBDIR += tintin++-devel
    SUBDIR += tinyfugue
    SUBDIR += tinyldap
    SUBDIR += tkabber
    SUBDIR += tkabber-devel
    SUBDIR += tn3270
    SUBDIR += tn5250
    SUBDIR += torrentsniff
    SUBDIR += tptest
    SUBDIR += traceroute
    SUBDIR += trackerbt
    SUBDIR += traffic
    SUBDIR += trafshow
    SUBDIR += trafshow4
    SUBDIR += tramp
    SUBDIR += trickle
    SUBDIR += tridiavnc
    SUBDIR += tsclient
    SUBDIR += tsocks
    SUBDIR += tspc2
    SUBDIR += ttlscan
    SUBDIR += ttt
    SUBDIR += tund
    SUBDIR += tvark
    SUBDIR += ucarp
    SUBDIR += udptunnel
    SUBDIR += ulxmlrpcpp
    SUBDIR += unfs3
    SUBDIR += unison
    SUBDIR += unix2tcp
    SUBDIR += uplog
    SUBDIR += urlendec
    SUBDIR += utftpd
    SUBDIR += v6eval
    SUBDIR += valknut
    SUBDIR += vchat
    SUBDIR += vde
    SUBDIR += verlihub
    SUBDIR += verlihub-plugins
    SUBDIR += vicq
    SUBDIR += vino
    SUBDIR += vls
    SUBDIR += vnc
    SUBDIR += vnc2swf
    SUBDIR += vncreflector
    SUBDIR += vomit
    SUBDIR += vqcc-gtk
    SUBDIR += vtun
    SUBDIR += wais
    SUBDIR += wakeonlan
    SUBDIR += warppipe
    SUBDIR += whois
    SUBDIR += widentd
    SUBDIR += wistumbler2
    SUBDIR += wmlj
    SUBDIR += wmnd
    SUBDIR += wmnet
    SUBDIR += wmnet2
    SUBDIR += wmnetload
    SUBDIR += wmnetmon
    SUBDIR += wmpiki
    SUBDIR += wmping
    SUBDIR += wmq3
    SUBDIR += wmwave
    SUBDIR += wmwifi
    SUBDIR += wol
    SUBDIR += wping
    SUBDIR += x11vnc
    SUBDIR += xarchie
    SUBDIR += xbms
    SUBDIR += xbone
    SUBDIR += xbone-gui
    SUBDIR += xferstats
    SUBDIR += xicq
    SUBDIR += xipdump
    SUBDIR += xipmsg
    SUBDIR += xisp
    SUBDIR += xmlrpc++
    SUBDIR += xmlrpc-c
    SUBDIR += xmule
    SUBDIR += xnap
    SUBDIR += xprobe
    SUBDIR += xpvm
    SUBDIR += xrdesktop
    SUBDIR += xsmbrowser
    SUBDIR += xtraceroute
    SUBDIR += xwhois
    SUBDIR += yaph
    SUBDIR += yaz
    SUBDIR += yaz++
    SUBDIR += yazproxy
    SUBDIR += ymessenger
    SUBDIR += yptransitd
    SUBDIR += ysm
    SUBDIR += ytalk
    SUBDIR += zabbix-agent
    SUBDIR += zebra
    SUBDIR += zebra-server
    SUBDIR += zsync
    SUBDIR += ztelnet

.include <bsd.port.subdir.mk>