blob: 24d1f1db31974388a7d46815195ec0518672d9ef (
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
|
# $FreeBSD$
#
COMMENT = System utilities
SUBDIR += 3dm
SUBDIR += 44bsd-more
SUBDIR += 915resolution
SUBDIR += DTraceToolkit
SUBDIR += LPRng
SUBDIR += LPRngTool
SUBDIR += Tee
SUBDIR += aaccli
SUBDIR += abck
SUBDIR += abgx360
SUBDIR += abgx360gui
SUBDIR += acidlaunch
SUBDIR += adtool
SUBDIR += afbinit
SUBDIR += afflib
SUBDIR += afio
SUBDIR += agef
SUBDIR += ah-tty
SUBDIR += aimage
SUBDIR += am-utils
SUBDIR += amrstat
SUBDIR += anacron
SUBDIR += and
SUBDIR += anteater
SUBDIR += apachetop
SUBDIR += apcpwr
SUBDIR += apcupsd
SUBDIR += apt
SUBDIR += arcconf
SUBDIR += archivemount
SUBDIR += areca-cli
SUBDIR += asapm
SUBDIR += ascpu
SUBDIR += asfsm
SUBDIR += asmem
SUBDIR += asmon
SUBDIR += asr-utils
SUBDIR += asusoled
SUBDIR += ataidle
SUBDIR += atitvout
SUBDIR += automounter
SUBDIR += autopsy
SUBDIR += avfs
SUBDIR += b43-fwcutter
SUBDIR += backupme
SUBDIR += bacula-bat
SUBDIR += bacula-client
SUBDIR += bacula-client-devel
SUBDIR += bacula-docs
SUBDIR += bacula-server
SUBDIR += bacula-server-devel
SUBDIR += bacula2-client
SUBDIR += bacula2-server
SUBDIR += bashburn
SUBDIR += batmon
SUBDIR += battfink
SUBDIR += battmond
SUBDIR += bbapm
SUBDIR += bchunk
SUBDIR += be_agent
SUBDIR += binup
SUBDIR += biosfont
SUBDIR += bkpupsd
SUBDIR += bksh
SUBDIR += blimitd
SUBDIR += bontmia
SUBDIR += boxbackup
SUBDIR += brasero
SUBDIR += bsd-splash-changer
SUBDIR += bsdadminscripts
SUBDIR += bsdcrashtar
SUBDIR += bsdhwmon
SUBDIR += bsdmoted
SUBDIR += bsdsar
SUBDIR += bsdstats
SUBDIR += bubblemon-dockapp
SUBDIR += bubblemon2
SUBDIR += burn
SUBDIR += busybox
SUBDIR += ccd2iso
SUBDIR += cciss_vol_status
SUBDIR += ccze
SUBDIR += cdargs
SUBDIR += cdbkup
SUBDIR += cdeploy
SUBDIR += cdf
SUBDIR += cdircmp
SUBDIR += cdrdao
SUBDIR += cdrkit
SUBDIR += cdroot
SUBDIR += cdrtools
SUBDIR += cdrtools-cjk
SUBDIR += cdrtools-devel
SUBDIR += cfengine
SUBDIR += cfengine3
SUBDIR += cfvers
SUBDIR += checkservice
SUBDIR += chgrep
SUBDIR += ciso
SUBDIR += ck4up
SUBDIR += ckl
SUBDIR += clean
SUBDIR += clockspeed
SUBDIR += clockspeed-conf
SUBDIR += clonehdd
SUBDIR += cloop-utils
SUBDIR += cmdwatch
SUBDIR += cmospwd
SUBDIR += cog
SUBDIR += colorize
SUBDIR += comconsole
SUBDIR += comiccron
SUBDIR += condor
SUBDIR += confman
SUBDIR += conky
SUBDIR += conky-awesome
SUBDIR += consolehm
SUBDIR += consolekit
SUBDIR += contool
SUBDIR += copytape
SUBDIR += coreutils
SUBDIR += cotty
SUBDIR += cpbk
SUBDIR += cpdup
SUBDIR += cpu
SUBDIR += cpuburn
SUBDIR += cpupowerd
SUBDIR += cramfs
SUBDIR += crashme
SUBDIR += cromwell
SUBDIR += cronolog
SUBDIR += curly
SUBDIR += cvsweb-converters
SUBDIR += cw
SUBDIR += daa2iso
SUBDIR += dae
SUBDIR += daedalus
SUBDIR += daemontools
SUBDIR += daemontools53
SUBDIR += dar
SUBDIR += dc42wrap
SUBDIR += dcfldd
SUBDIR += dd_rescue
SUBDIR += ddrescue
SUBDIR += decomment
SUBDIR += deleted
SUBDIR += deltup
SUBDIR += desktop-installer
SUBDIR += desktopbsd-tools
SUBDIR += detach
SUBDIR += detox
SUBDIR += devcpu
SUBDIR += devcpu-data
SUBDIR += devstat
SUBDIR += di
SUBDIR += dim
SUBDIR += dircomp
SUBDIR += dirdiff
SUBDIR += dirvish
SUBDIR += diskcheckd
SUBDIR += diskprep
SUBDIR += diskscrub
SUBDIR += disktool
SUBDIR += disktype
SUBDIR += djmount
SUBDIR += dmg2img
SUBDIR += dmidecode
SUBDIR += dolly
SUBDIR += dolly+
SUBDIR += downtime
SUBDIR += dt
SUBDIR += dtc
SUBDIR += du2ps
SUBDIR += duff
SUBDIR += dump9660
SUBDIR += dupfind
SUBDIR += duplicity
SUBDIR += duplicity-devel
SUBDIR += dupmerge
SUBDIR += durep
SUBDIR += dvd+rw-tools
SUBDIR += dvdbackup
SUBDIR += dvdimagecmp
SUBDIR += dvdisaster
SUBDIR += dvdtape
SUBDIR += dvtm
SUBDIR += dwatch
SUBDIR += e2fsprogs
SUBDIR += ecore-config
SUBDIR += eiciel
SUBDIR += eject
SUBDIR += empower
SUBDIR += endian
SUBDIR += enteruser
SUBDIR += env4801
SUBDIR += epylog
SUBDIR += eroaster
SUBDIR += etcmerge
SUBDIR += etoile-behavior
SUBDIR += etoile-installer
SUBDIR += etoile-powermenulet
SUBDIR += etoile-system
SUBDIR += eventlog
SUBDIR += evtviewer
SUBDIR += extipl
SUBDIR += extrackt
SUBDIR += ezjail
SUBDIR += facter
SUBDIR += fanout
SUBDIR += farbot
SUBDIR += fastest_cvsup
SUBDIR += fatback
SUBDIR += fconfig
SUBDIR += fcron
SUBDIR += fdupes
SUBDIR += fetchlog
SUBDIR += ffs2recov
SUBDIR += file
SUBDIR += filedupe
SUBDIR += filelight
SUBDIR += filelight-kde4
SUBDIR += fileprune
SUBDIR += fileschanged
SUBDIR += filetype
SUBDIR += finfo
SUBDIR += fio
SUBDIR += flasher
SUBDIR += flashrom
SUBDIR += flexbackup
SUBDIR += flock
SUBDIR += flog
SUBDIR += flyback
SUBDIR += fontedit
SUBDIR += fonteditfs
SUBDIR += foremost
SUBDIR += fortunelock
SUBDIR += fpc-syslog
SUBDIR += fpc-users
SUBDIR += fpc-utmp
SUBDIR += fpkg
SUBDIR += freebsd-snapshot
SUBDIR += freecolor
SUBDIR += freedt
SUBDIR += freeipmi
SUBDIR += freesbie
SUBDIR += freqsdwn
SUBDIR += fsbackup
SUBDIR += fstyp
SUBDIR += ftrace
SUBDIR += ftwin
SUBDIR += fusefs-afuse
SUBDIR += fusefs-chironfs
SUBDIR += fusefs-cryptofs
SUBDIR += fusefs-curlftpfs
SUBDIR += fusefs-encfs
SUBDIR += fusefs-funionfs
SUBDIR += fusefs-fur
SUBDIR += fusefs-gnome-vfs
SUBDIR += fusefs-gstfs
SUBDIR += fusefs-gunzip
SUBDIR += fusefs-httpfs
SUBDIR += fusefs-kmod
SUBDIR += fusefs-libs
SUBDIR += fusefs-mhddfs
SUBDIR += fusefs-ntfs
SUBDIR += fusefs-pod
SUBDIR += fusefs-s3fs
SUBDIR += fusefs-smbnetfs
SUBDIR += fusefs-sqlfs
SUBDIR += fusefs-sshfs
SUBDIR += fusefs-unionfs
SUBDIR += fusefs-wdfs
SUBDIR += fusefs-wikipediafs
SUBDIR += fuser
SUBDIR += fvcool
SUBDIR += gaffitter
SUBDIR += gag
SUBDIR += gai-leds
SUBDIR += ganglia-monitor-core
SUBDIR += ganglia-webfrontend
SUBDIR += gapcmon
SUBDIR += gather
SUBDIR += gcdmaster
SUBDIR += gcombust
SUBDIR += gconf-editor
SUBDIR += gdmap
SUBDIR += geomWatch
SUBDIR += geomgui
SUBDIR += getdelta
SUBDIR += geteltorito
SUBDIR += gfslicer
SUBDIR += ghasher
SUBDIR += gkfreq
SUBDIR += gkleds2
SUBDIR += gkrellfire
SUBDIR += gkrellflynn
SUBDIR += gkrellm
SUBDIR += gkrellm-trayicons
SUBDIR += gkrellm2
SUBDIR += gkrellmouse
SUBDIR += gkrellmwho
SUBDIR += gkrellmwho2
SUBDIR += gkrelltop
SUBDIR += gksu
SUBDIR += glload
SUBDIR += gnome-control-center
SUBDIR += gnome-control-center1
SUBDIR += gnome-device-manager
SUBDIR += gnome-mount
SUBDIR += gnome-pkgview
SUBDIR += gnome-power-manager
SUBDIR += gnome-schedule
SUBDIR += gnome-settings-daemon
SUBDIR += gnome-system-monitor
SUBDIR += gnome-system-tools
SUBDIR += gnome_subr
SUBDIR += gnomebaker
SUBDIR += gnomefind
SUBDIR += googlog
SUBDIR += gosa
SUBDIR += gpart
SUBDIR += gpkgdep
SUBDIR += gpte
SUBDIR += graft
SUBDIR += graphicboot
SUBDIR += graveman
SUBDIR += grok
SUBDIR += growspd
SUBDIR += grub
SUBDIR += gsmartcontrol
SUBDIR += gstopd
SUBDIR += gstreamer-plugins-cdio
SUBDIR += gstreamer-plugins-hal
SUBDIR += gtk-imonc
SUBDIR += gtk-send-pr
SUBDIR += gtoaster
SUBDIR += gupsc
SUBDIR += hachoir-metadata
SUBDIR += hachoir-subfile
SUBDIR += hachoir-urwid
SUBDIR += hachoir-wx
SUBDIR += hal
SUBDIR += hal-info
SUBDIR += hammerhead
SUBDIR += hdup
SUBDIR += healthd
SUBDIR += heartbeat
SUBDIR += heirloom
SUBDIR += hidesvn
SUBDIR += highlnk
SUBDIR += hilite
SUBDIR += hourglass
SUBDIR += hoz
SUBDIR += hpacucli
SUBDIR += hploscripts
SUBDIR += htop
SUBDIR += httplog
SUBDIR += hwstat
SUBDIR += hyperic-sigar
SUBDIR += i855vidctl10
SUBDIR += iat
SUBDIR += idled
SUBDIR += iextract
SUBDIR += installwatch
SUBDIR += iograph
SUBDIR += ipa
SUBDIR += ipmi-kmod
SUBDIR += ipmitool
SUBDIR += ipsc
SUBDIR += isc-cron
SUBDIR += isomaster
SUBDIR += isomd5sum
SUBDIR += ispman
SUBDIR += istatd
SUBDIR += jailadmin
SUBDIR += jailctl
SUBDIR += jailer
SUBDIR += jailme
SUBDIR += jailuser
SUBDIR += jailutils
SUBDIR += javaservicewrapper
SUBDIR += jdiskreport
SUBDIR += jfbterm
SUBDIR += jkill
SUBDIR += jps
SUBDIR += jtop
SUBDIR += jtopen
SUBDIR += jx
SUBDIR += k3b
SUBDIR += k8temp
SUBDIR += kcpuload
SUBDIR += kcube
SUBDIR += kdeadmin3
SUBDIR += kdeadmin4
SUBDIR += kdirstat
SUBDIR += keep
SUBDIR += kgrubeditor
SUBDIR += kgtk
SUBDIR += kiconvtool
SUBDIR += kkbswitch
SUBDIR += kkeyled
SUBDIR += klaptopdaemon
SUBDIR += kldfind
SUBDIR += kldpatch
SUBDIR += kleansweep
SUBDIR += klineakconfig
SUBDIR += kmilo
SUBDIR += knutclient
SUBDIR += knutclient-kde4
SUBDIR += komparator
SUBDIR += krename
SUBDIR += krename-kde4
SUBDIR += kshutdown
SUBDIR += ksynaptics
SUBDIR += lavaps
SUBDIR += lbl-cf
SUBDIR += lbl-hf
SUBDIR += lcdproc
SUBDIR += ldap-account-manager
SUBDIR += ldapvi
SUBDIR += ledit
SUBDIR += less
SUBDIR += lfm
SUBDIR += libcdio
SUBDIR += libchk
SUBDIR += libgksu
SUBDIR += libgksuui
SUBDIR += libieee1284
SUBDIR += libpcbsd
SUBDIR += libretto-config
SUBDIR += libsunacl
SUBDIR += libutempter
SUBDIR += lineak-defaultplugin
SUBDIR += lineak-kdeplugins
SUBDIR += lineak-xosdplugin
SUBDIR += lineakd
SUBDIR += linrename
SUBDIR += linux-acu
SUBDIR += linux-afaapps
SUBDIR += linux-megacli
SUBDIR += linux-megamgr
SUBDIR += linux-nero
SUBDIR += linux-procps
SUBDIR += linuxfdisk
SUBDIR += lire
SUBDIR += livecd
SUBDIR += lmmon
SUBDIR += lmon
SUBDIR += log_analysis
SUBDIR += loganalyzer
SUBDIR += logmon
SUBDIR += logrotate
SUBDIR += logserial
SUBDIR += logtool
SUBDIR += logtool-devel
SUBDIR += logwatch
SUBDIR += lookat
SUBDIR += lookupd
SUBDIR += lookupd_ldap
SUBDIR += lsof
SUBDIR += ltrace
SUBDIR += luckybackup
SUBDIR += luma
SUBDIR += lxsplit
SUBDIR += lxtask
SUBDIR += magicrescue
SUBDIR += maint
SUBDIR += makefs
SUBDIR += manck
SUBDIR += mapchan
SUBDIR += mbmon
SUBDIR += mcron
SUBDIR += mcweject
SUBDIR += mdcp
SUBDIR += mdf2iso
SUBDIR += megacli
SUBDIR += megarc
SUBDIR += memdump
SUBDIR += memfetch
SUBDIR += memgrep
SUBDIR += memtest
SUBDIR += memtest86
SUBDIR += memtest86+
SUBDIR += metalog
SUBDIR += mgeupsd
SUBDIR += minirsyslogd
SUBDIR += mixer
SUBDIR += mkfile
SUBDIR += mksunbootcd
SUBDIR += mktool
SUBDIR += mmore
SUBDIR += modules
SUBDIR += monit
SUBDIR += monitord
SUBDIR += monkeytail
SUBDIR += mono-kmod
SUBDIR += moosefs-chunkserver
SUBDIR += moosefs-client
SUBDIR += moosefs-master
SUBDIR += moreutils
SUBDIR += most
SUBDIR += mount.app
SUBDIR += mountsmb2
SUBDIR += mpiexec
SUBDIR += msyslog
SUBDIR += mtpfs
SUBDIR += mtxorbd
SUBDIR += multitail
SUBDIR += munin-common
SUBDIR += munin-master
SUBDIR += munin-node
SUBDIR += muse
SUBDIR += mybashburn
SUBDIR += nagios-statd
SUBDIR += namefix
SUBDIR += nautilus-cd-burner
SUBDIR += nbosd
SUBDIR += ncdu
SUBDIR += nctop
SUBDIR += ndir
SUBDIR += netdump-server
SUBDIR += netident
SUBDIR += nitrogen
SUBDIR += no-login
SUBDIR += npadmin
SUBDIR += nrg2iso
SUBDIR += ntfsprogs
SUBDIR += nut
SUBDIR += nut22
SUBDIR += nvclock
SUBDIR += nvtv
SUBDIR += oak
SUBDIR += obliterate
SUBDIR += ods2
SUBDIR += open
SUBDIR += openipmi
SUBDIR += openupsd
SUBDIR += p5-BSD-Jail-Object
SUBDIR += p5-BSD-Sysctl
SUBDIR += p5-Brackup
SUBDIR += p5-Dir-Purge
SUBDIR += p5-File-DirCompare
SUBDIR += p5-File-Next
SUBDIR += p5-File-Stat-Bits
SUBDIR += p5-File-Which
SUBDIR += p5-Filesys-Df
SUBDIR += p5-Filesys-DfPortable
SUBDIR += p5-Filesys-DiskFree
SUBDIR += p5-Filesys-DiskSpace
SUBDIR += p5-Filesys-DiskUsage
SUBDIR += p5-Filesys-Statvfs
SUBDIR += p5-Fuse
SUBDIR += p5-Fuse-Simple
SUBDIR += p5-Iterator-File
SUBDIR += p5-LJ-Cache
SUBDIR += p5-LJ-TextMessage
SUBDIR += p5-Lchown
SUBDIR += p5-MogileFS-Client
SUBDIR += p5-MogileFS-Utils
SUBDIR += p5-Plugtools
SUBDIR += p5-Plugtools-Plugins-HomeOU
SUBDIR += p5-Probe-Perl
SUBDIR += p5-Proc-PidUtil
SUBDIR += p5-Quota
SUBDIR += p5-Samba-SIDhelper
SUBDIR += p5-Schedule-At
SUBDIR += p5-Schedule-Cron
SUBDIR += p5-Schedule-Load
SUBDIR += p5-Schedule-Match
SUBDIR += p5-Stat-lsMode
SUBDIR += p5-Sys-CpuLoad
SUBDIR += p5-Sys-Filesystem
SUBDIR += p5-Sys-Gamin
SUBDIR += p5-Sys-Group-GIDhelper
SUBDIR += p5-Sys-HostIP
SUBDIR += p5-Sys-Hostname-FQDN
SUBDIR += p5-Sys-Hostname-Long
SUBDIR += p5-Sys-Syslog
SUBDIR += p5-Sys-User-UIDhelper
SUBDIR += p5-Sys-Utmp
SUBDIR += p5-Sysadm-Install
SUBDIR += p5-SyslogScan
SUBDIR += p5-Tie-Syslog
SUBDIR += p5-Unix-ConfigFile
SUBDIR += p5-Unix-Lsof
SUBDIR += p5-Unix-Mknod
SUBDIR += p5-Unix-Processors
SUBDIR += p5-Unix-Syslog
SUBDIR += p5-User
SUBDIR += p5-ZConf-Cron
SUBDIR += p5-arclog
SUBDIR += p5-mogilefs-server
SUBDIR += p5-reslog
SUBDIR += paicc
SUBDIR += pax-utils
SUBDIR += pbreg
SUBDIR += pcfclock
SUBDIR += pciutils
SUBDIR += pdixtract
SUBDIR += pdsh
SUBDIR += pdumpfs
SUBDIR += pdumpfs-clean
SUBDIR += pdumpfs-rsync
SUBDIR += pear-Cache
SUBDIR += pear-Cache_Lite
SUBDIR += pear-File
SUBDIR += pear-File_Find
SUBDIR += pear-File_Fstab
SUBDIR += pear-File_Gettext
SUBDIR += pear-I18Nv2
SUBDIR += pear-Log
SUBDIR += pear-Translation2
SUBDIR += pecl-fileinfo
SUBDIR += pecl-proctitle
SUBDIR += penv
SUBDIR += perf
SUBDIR += personality
SUBDIR += pessulus
SUBDIR += pflogx
SUBDIR += pfstat
SUBDIR += pftop
SUBDIR += phantom
SUBDIR += philesight
SUBDIR += php4-posix
SUBDIR += php5-posix
SUBDIR += php52-posix
SUBDIR += pidof
SUBDIR += pipemeter
SUBDIR += plconfig
SUBDIR += plod
SUBDIR += pmap
SUBDIR += pmt
SUBDIR += policykit
SUBDIR += policykit-gnome
SUBDIR += policykit-qt
SUBDIR += polkit
SUBDIR += polkit-gnome
SUBDIR += polkit-kde
SUBDIR += polkit-qt
SUBDIR += powerman
SUBDIR += prips
SUBDIR += procmap
SUBDIR += progsreiserfs
SUBDIR += psgconf
SUBDIR += pslist
SUBDIR += psmisc
SUBDIR += pstack
SUBDIR += pstree
SUBDIR += puppet
SUBDIR += pv
SUBDIR += pwd_unmkdb
SUBDIR += pwg
SUBDIR += pwgen
SUBDIR += pwgen2
SUBDIR += pwsafe
SUBDIR += py-bcfg2
SUBDIR += py-filelike
SUBDIR += py-psutil
SUBDIR += py-supervisor
SUBDIR += py-zdaemon
SUBDIR += pydf
SUBDIR += pyrenamer
SUBDIR += qlogtools
SUBDIR += qpxtool
SUBDIR += quicksynergy
SUBDIR += radeontool
SUBDIR += radmind
SUBDIR += raincoat
SUBDIR += rclean
SUBDIR += rcsedit
SUBDIR += rdate
SUBDIR += rdiff-backup
SUBDIR += rdiff-backup-devel
SUBDIR += rdiff-backup10
SUBDIR += rdup
SUBDIR += readlink
SUBDIR += reclinker
SUBDIR += recoverdm
SUBDIR += reed
SUBDIR += rej
SUBDIR += relaxconf
SUBDIR += relpath
SUBDIR += rename
SUBDIR += reoback
SUBDIR += respond
SUBDIR += retail
SUBDIR += rfstool
SUBDIR += rmonitor
SUBDIR += roottail
SUBDIR += rotate
SUBDIR += rsnapshot
SUBDIR += rsyncbackup
SUBDIR += rsyncmanager
SUBDIR += rsyslog3
SUBDIR += rsyslog3-dbi
SUBDIR += rsyslog3-gssapi
SUBDIR += rsyslog3-mysql
SUBDIR += rsyslog3-pgsql
SUBDIR += rsyslog3-relp
SUBDIR += rsyslog3-snmp
SUBDIR += rsyslog4
SUBDIR += rsyslog4-dbi
SUBDIR += rsyslog4-gnutls
SUBDIR += rsyslog4-gssapi
SUBDIR += rsyslog4-mysql
SUBDIR += rsyslog4-pgsql
SUBDIR += rsyslog4-relp
SUBDIR += rsyslog4-rfc3195
SUBDIR += rsyslog4-snmp
SUBDIR += rsyslog5
SUBDIR += rsyslog5-dbi
SUBDIR += rsyslog5-gnutls
SUBDIR += rsyslog5-gssapi
SUBDIR += rsyslog5-mysql
SUBDIR += rsyslog5-pgsql
SUBDIR += rsyslog5-relp
SUBDIR += rsyslog5-rfc3195
SUBDIR += rsyslog5-snmp
SUBDIR += rsyslog55
SUBDIR += rsyslog55-dbi
SUBDIR += rsyslog55-gnutls
SUBDIR += rsyslog55-gssapi
SUBDIR += rsyslog55-mysql
SUBDIR += rsyslog55-pgsql
SUBDIR += rsyslog55-relp
SUBDIR += rsyslog55-rfc3195
SUBDIR += rsyslog55-snmp
SUBDIR += rtty
SUBDIR += ruby-log4r
SUBDIR += ruby-quota
SUBDIR += rubygem-bundler
SUBDIR += rubygem-capistrano
SUBDIR += rubygem-god
SUBDIR += rubygem-ohai
SUBDIR += rubygem-sys-cpu
SUBDIR += runit
SUBDIR += runwhen
SUBDIR += safe-rm
SUBDIR += safecat
SUBDIR += samefile
SUBDIR += samesame
SUBDIR += sarah
SUBDIR += savelogs
SUBDIR += sb16config
SUBDIR += sbniconfig
SUBDIR += scan_ffs
SUBDIR += scanbuttond
SUBDIR += scprotect
SUBDIR += screen
SUBDIR += screenie
SUBDIR += sdd
SUBDIR += sdparm
SUBDIR += searchmonkey
SUBDIR += seatools
SUBDIR += sec
SUBDIR += sensors-applet
SUBDIR += serpentine
SUBDIR += service-config
SUBDIR += setcdboot
SUBDIR += setquota
SUBDIR += sfdisk
SUBDIR += sformat
SUBDIR += sg3_utils
SUBDIR += sge60
SUBDIR += sge61
SUBDIR += sge62
SUBDIR += shlock
SUBDIR += skill
SUBDIR += slack
SUBDIR += sleuthkit
SUBDIR += slmon
SUBDIR += sloth
SUBDIR += slst
SUBDIR += smartmontools
SUBDIR += snap
SUBDIR += snowlog
SUBDIR += socket
SUBDIR += socklog
SUBDIR += sortu
SUBDIR += spassgen
SUBDIR += spindown
SUBDIR += spinner
SUBDIR += squashfs-tools
SUBDIR += ssync
SUBDIR += stalepid
SUBDIR += stmpclean
SUBDIR += stow
SUBDIR += stowES
SUBDIR += stress
SUBDIR += su2
SUBDIR += superiotool
SUBDIR += swapd
SUBDIR += symlinks
SUBDIR += symon
SUBDIR += synergy
SUBDIR += synergy-plus
SUBDIR += syscp
SUBDIR += sysgather
SUBDIR += sysinfo
SUBDIR += syslinux
SUBDIR += syslog-ng
SUBDIR += syslog-ng2
SUBDIR += syslog-ng3
SUBDIR += syslogger
SUBDIR += system-tools-backends
SUBDIR += sysupdate
SUBDIR += tarsnap
SUBDIR += tbku
SUBDIR += tclsyslog
SUBDIR += tcplist
SUBDIR += tdir
SUBDIR += tenshi
SUBDIR += tentakel
SUBDIR += testdisk
SUBDIR += thefish
SUBDIR += throttle
SUBDIR += thunar-volman-plugin
SUBDIR += ticker.app
SUBDIR += timelimit
SUBDIR += timemon
SUBDIR += tinybsd
SUBDIR += titlefix
SUBDIR += tkdvd
SUBDIR += tm
SUBDIR += tmpreaper
SUBDIR += tmpwatch
SUBDIR += tmux
SUBDIR += topless
SUBDIR += torque
SUBDIR += torsmo
SUBDIR += toshctl
SUBDIR += tracker
SUBDIR += tracker-client
SUBDIR += tracker-gnome
SUBDIR += tracker-libtrackergtk
SUBDIR += tree
SUBDIR += tren
SUBDIR += ts
SUBDIR += tss
SUBDIR += ttyload
SUBDIR += tw_cli
SUBDIR += ua
SUBDIR += ucspi-ipc
SUBDIR += ucspi-proxy
SUBDIR += ucspi-ssl
SUBDIR += ucspi-ssl-tls
SUBDIR += ucspi-tcp
SUBDIR += ucspi-unix
SUBDIR += udesc_dump
SUBDIR += udfclient
SUBDIR += ufs_copy
SUBDIR += uhidd
SUBDIR += uif2iso
SUBDIR += unieject
SUBDIR += uniutils
SUBDIR += unquote
SUBDIR += unstow
SUBDIR += upower
SUBDIR += upsd
SUBDIR += upsdaemon
SUBDIR += upsmon
SUBDIR += uptimed
SUBDIR += usbhotkey
SUBDIR += usbutil
SUBDIR += usbutils
SUBDIR += uschedule
SUBDIR += userinfo
SUBDIR += userlist
SUBDIR += usermatic
SUBDIR += usermin
SUBDIR += userneu
SUBDIR += userneu-devel
SUBDIR += usrinfo
SUBDIR += utcount
SUBDIR += uwatch
SUBDIR += vbetool
SUBDIR += vcp
SUBDIR += videogen
SUBDIR += vii
SUBDIR += vils
SUBDIR += virtualmin
SUBDIR += vobcopy
SUBDIR += vordog
SUBDIR += vstrip
SUBDIR += vttest
SUBDIR += wait_on
SUBDIR += warden
SUBDIR += watchdog
SUBDIR += watchfolder
SUBDIR += watchmen
SUBDIR += webjob
SUBDIR += webmin
SUBDIR += weedit
SUBDIR += whatpix
SUBDIR += whowatch
SUBDIR += wmapm
SUBDIR += wmapmload
SUBDIR += wmavgload
SUBDIR += wmbattery
SUBDIR += wmbluecpu
SUBDIR += wmbsdbatt
SUBDIR += wmcpuload
SUBDIR += wmcube
SUBDIR += wmcube-gdk
SUBDIR += wmdiskmon
SUBDIR += wmfire
SUBDIR += wmflame
SUBDIR += wmfsm
SUBDIR += wmhm
SUBDIR += wminet
SUBDIR += wmlmmon
SUBDIR += wmlongrun
SUBDIR += wmmemfree
SUBDIR += wmmemload
SUBDIR += wmmemmon
SUBDIR += wmmount
SUBDIR += wmpccard
SUBDIR += wmshutdown
SUBDIR += wmtop
SUBDIR += wmupmon
SUBDIR += wmzazof
SUBDIR += worldtools
SUBDIR += wots
SUBDIR += wtail
SUBDIR += wtmp-tools
SUBDIR += wuzzah
SUBDIR += x86info
SUBDIR += xacpim
SUBDIR += xapply
SUBDIR += xbatt
SUBDIR += xbattbar
SUBDIR += xcdroast
SUBDIR += xcpustate
SUBDIR += xdu
SUBDIR += xfburn
SUBDIR += xfce4-battery-plugin
SUBDIR += xfce4-cpugraph-plugin
SUBDIR += xfce4-fsguard-plugin
SUBDIR += xfce4-genmon-plugin
SUBDIR += xfce4-minicmd-plugin
SUBDIR += xfce4-netload-plugin
SUBDIR += xfce4-places-plugin
SUBDIR += xfce4-power-manager
SUBDIR += xfce4-settings
SUBDIR += xfce4-systemload-plugin
SUBDIR += xfce4-utils
SUBDIR += xfce4-wavelan-plugin
SUBDIR += xfsm
SUBDIR += xfsprogs
SUBDIR += xin
SUBDIR += xloadface
SUBDIR += xlogmaster
SUBDIR += xmbmon
SUBDIR += xorriso
SUBDIR += xosview
SUBDIR += xsi
SUBDIR += xstow
SUBDIR += xsu
SUBDIR += xsysstats
SUBDIR += xvidcap
SUBDIR += xwipower
SUBDIR += xwlans
SUBDIR += yawho
SUBDIR += zeroer
SUBDIR += zetaback
SUBDIR += zfs-replicate
SUBDIR += zfs-snapshot-clean
SUBDIR += zfs-snapshot-mgmt
SUBDIR += zidrav
SUBDIR += zisofs-tools
.include <bsd.port.subdir.mk>
|