blob: 222d568f60ca7e1d5ffb9eb0cf3213da8c08904b (
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
|
# $FreeBSD$
#
COMMENT = System utilities
SUBDIR += 3dm
SUBDIR += 44bsd-more
SUBDIR += 915resolution
SUBDIR += DTraceToolkit
SUBDIR += LPRng
SUBDIR += LPRngTool
SUBDIR += UEFITool
SUBDIR += abck
SUBDIR += abduco
SUBDIR += abgx360
SUBDIR += abgx360gui
SUBDIR += accountsservice
SUBDIR += acerhdf-kmod
SUBDIR += acpi_call
SUBDIR += acpica-tools
SUBDIR += acts
SUBDIR += adtool
SUBDIR += afbinit
SUBDIR += afflib
SUBDIR += afio
SUBDIR += agedu
SUBDIR += ah-tty
SUBDIR += aimage
SUBDIR += aird
SUBDIR += am-utils
SUBDIR += amazon-ssm-agent
SUBDIR += amdmsrtweaker
SUBDIR += amrstat
SUBDIR += amtc
SUBDIR += anacron
SUBDIR += and
SUBDIR += android-file-transfer
SUBDIR += android-file-transfer-qt4
SUBDIR += android-file-transfer-qt5
SUBDIR += ansible
SUBDIR += ansible1
SUBDIR += anvil
SUBDIR += apachetop
SUBDIR += apcpwr
SUBDIR += apcupsd
SUBDIR += aptly
SUBDIR += arcconf
SUBDIR += archivemount
SUBDIR += areca-cli
SUBDIR += ascpu
SUBDIR += asfsm
SUBDIR += asmem
SUBDIR += asmon
SUBDIR += asusoled
SUBDIR += ataidle
SUBDIR += atf-allwinner
SUBDIR += atitvout
SUBDIR += atop
SUBDIR += auto-admin
SUBDIR += autojump
SUBDIR += automount
SUBDIR += automounter
SUBDIR += autopsy
SUBDIR += avfs
SUBDIR += azure-agent
SUBDIR += b2sum
SUBDIR += b43-fwcutter
SUBDIR += backupchecker
SUBDIR += backuppc
SUBDIR += backuppc-devel
SUBDIR += backuppc4
SUBDIR += bacula-bat
SUBDIR += bacula-client
SUBDIR += bacula-client-static
SUBDIR += bacula-docs
SUBDIR += bacula-server
SUBDIR += bacula9-bat
SUBDIR += bacula9-client
SUBDIR += bacula9-client-static
SUBDIR += bacula9-docs
SUBDIR += bacula9-server
SUBDIR += baloo
SUBDIR += baloo-widgets
SUBDIR += bamf
SUBDIR += bareos-bat
SUBDIR += bareos-client
SUBDIR += bareos-client-static
SUBDIR += bareos-docs
SUBDIR += bareos-server
SUBDIR += bareos-traymonitor
SUBDIR += batmon
SUBDIR += battfink
SUBDIR += battmond
SUBDIR += battray
SUBDIR += bbapm
SUBDIR += bbcp
SUBDIR += bchunk
SUBDIR += beadm
SUBDIR += beadm-devel
SUBDIR += beats
SUBDIR += bhyve-firmware
SUBDIR += bhyve-rc
SUBDIR += biosfont
SUBDIR += bkpupsd
SUBDIR += bksh
SUBDIR += boxbackup
SUBDIR += boxbackup-devel
SUBDIR += brasero
SUBDIR += bsd-splash-changer
SUBDIR += bsdconfig
SUBDIR += bsdcrashtar
SUBDIR += bsdhwmon
SUBDIR += bsdinfo
SUBDIR += bsdisks
SUBDIR += bsdmoted
SUBDIR += bsdploy
SUBDIR += bsdstats
SUBDIR += bstack
SUBDIR += btsixad
SUBDIR += bulk_extractor
SUBDIR += burp
SUBDIR += busybox
SUBDIR += byobu
SUBDIR += catfish
SUBDIR += cbsd
SUBDIR += ccd2iso
SUBDIR += cciss_vol_status
SUBDIR += ccze
SUBDIR += cdargs
SUBDIR += cdbkup
SUBDIR += cdeploy
SUBDIR += cdf
SUBDIR += cdircmp
SUBDIR += cdls
SUBDIR += cdrdao
SUBDIR += cdrkit
SUBDIR += cdroot
SUBDIR += cdrtools
SUBDIR += cdrtools-devel
SUBDIR += cfengine
SUBDIR += cfengine-masterfiles
SUBDIR += cfengine-masterfiles310
SUBDIR += cfengine-masterfiles311
SUBDIR += cfengine-masterfiles36
SUBDIR += cfengine-masterfiles37
SUBDIR += cfengine-masterfiles38
SUBDIR += cfengine-masterfiles39
SUBDIR += cfengine22
SUBDIR += cfengine310
SUBDIR += cfengine311
SUBDIR += cfengine32
SUBDIR += cfengine33
SUBDIR += cfengine34
SUBDIR += cfengine35
SUBDIR += cfengine36
SUBDIR += cfengine37
SUBDIR += cfengine38
SUBDIR += cfengine39
SUBDIR += chgrep
SUBDIR += chyves
SUBDIR += cinnamon-control-center
SUBDIR += cinnamon-settings-daemon
SUBDIR += ciso
SUBDIR += ciso-maker
SUBDIR += ck4up
SUBDIR += clean
SUBDIR += clockspeed
SUBDIR += clone
SUBDIR += clonehdd
SUBDIR += cloop-utils
SUBDIR += cloudabi-utils
SUBDIR += clsync
SUBDIR += cluster-glue
SUBDIR += cmdwatch
SUBDIR += cmocka
SUBDIR += cmockery2
SUBDIR += cmogstored
SUBDIR += cmospwd
SUBDIR += cog
SUBDIR += colorize
SUBDIR += condor
SUBDIR += confctl
SUBDIR += confman
SUBDIR += conky
SUBDIR += conky-awesome
SUBDIR += consolehm
SUBDIR += consolekit2
SUBDIR += consul
SUBDIR += consul_exporter
SUBDIR += consul-alerts
SUBDIR += contractor
SUBDIR += copytape
SUBDIR += coreutils
SUBDIR += cotty
SUBDIR += cpdup
SUBDIR += cpu
SUBDIR += cpu-x
SUBDIR += cpuburn
SUBDIR += cpuid
SUBDIR += cpulimit
SUBDIR += cramfs
SUBDIR += crashme
SUBDIR += createrepo
SUBDIR += cronic
SUBDIR += cronolog
SUBDIR += cronolog-devel
SUBDIR += curly
SUBDIR += currtime
SUBDIR += cw
SUBDIR += daa2iso
SUBDIR += dae
SUBDIR += daemonize
SUBDIR += daemontools
SUBDIR += daemontools-encore
SUBDIR += dar
SUBDIR += dateutils
SUBDIR += dc3dd
SUBDIR += dcfldd
SUBDIR += dd_rescue
SUBDIR += ddpt
SUBDIR += ddrescue
SUBDIR += debhelper
SUBDIR += debootstrap
SUBDIR += deltarpm
SUBDIR += deltup
SUBDIR += desktop-installer
SUBDIR += detach
SUBDIR += detox
SUBDIR += devcpu-data
SUBDIR += devstat
SUBDIR += dfc
SUBDIR += di
SUBDIR += dim
SUBDIR += dirdiff
SUBDIR += direnv
SUBDIR += dirvish
SUBDIR += diskcheckd
SUBDIR += diskimage-tools
SUBDIR += diskscrub
SUBDIR += disktool
SUBDIR += disktype
SUBDIR += djmount
SUBDIR += dmg2img
SUBDIR += dmidecode
SUBDIR += docker
SUBDIR += docker-compose
SUBDIR += docker-freebsd
SUBDIR += docker-machine
SUBDIR += doctl
SUBDIR += doinkd
SUBDIR += dolly
SUBDIR += downtime
SUBDIR += downtimed
SUBDIR += dsbbatmon
SUBDIR += dsbdriverd
SUBDIR += dsblogoutmgr
SUBDIR += dsbmc
SUBDIR += dsbmc-cli
SUBDIR += dsbmd
SUBDIR += dsbwrtsysctl
SUBDIR += dt
SUBDIR += dtc
SUBDIR += dtpstree
SUBDIR += du2ps
SUBDIR += duff
SUBDIR += dunst
SUBDIR += dupd
SUBDIR += duplicity
SUBDIR += duply
SUBDIR += dupmerge
SUBDIR += dvd+rw-tools
SUBDIR += dvdbackup
SUBDIR += dvdimagecmp
SUBDIR += dvdisaster
SUBDIR += dvdvideo
SUBDIR += dvtm
SUBDIR += dwatch
SUBDIR += e2fsprogs
SUBDIR += ec2-scripts
SUBDIR += edid-decode
SUBDIR += eject
SUBDIR += endian
SUBDIR += enteruser
SUBDIR += entr
SUBDIR += env4801
SUBDIR += envconsul
SUBDIR += epazote
SUBDIR += etcmerge
SUBDIR += etcupdate
SUBDIR += eventlog
SUBDIR += evtviewer
SUBDIR += exa
SUBDIR += exfat-utils
SUBDIR += extipl
SUBDIR += ezjail
SUBDIR += f3
SUBDIR += facter
SUBDIR += fanout
SUBDIR += farbot
SUBDIR += fastest_cvsup
SUBDIR += fatback
SUBDIR += fconfig
SUBDIR += fcron
SUBDIR += fd
SUBDIR += fdupes
SUBDIR += feather
SUBDIR += fetchlog
SUBDIR += ffs2recov
SUBDIR += file
SUBDIR += filedupe
SUBDIR += filelight
SUBDIR += fileprune
SUBDIR += fileschanged
SUBDIR += filetype
SUBDIR += filewatcherd
SUBDIR += finfo
SUBDIR += firstboot-freebsd-update
SUBDIR += firstboot-growfs
SUBDIR += firstboot-pkgs
SUBDIR += flasher
SUBDIR += flashrom
SUBDIR += flexbackup
SUBDIR += flock
SUBDIR += flog
SUBDIR += flowgger
SUBDIR += fluent-bit
SUBDIR += fonteditfs
SUBDIR += foremost
SUBDIR += fortunelock
SUBDIR += fpart
SUBDIR += fpc-syslog
SUBDIR += fpc-users
SUBDIR += fpc-utmp
SUBDIR += fpc-uuid
SUBDIR += freebsd-snapshot
SUBDIR += freecolor
SUBDIR += freedt
SUBDIR += freefilesync
SUBDIR += freeipmi
SUBDIR += freesbie
SUBDIR += froxlor
SUBDIR += fsbackup
SUBDIR += fsc
SUBDIR += fsearch
SUBDIR += fstyp
SUBDIR += fswatch-mon
SUBDIR += ftwin
SUBDIR += fusefs-afuse
SUBDIR += fusefs-chironfs
SUBDIR += fusefs-cryptofs
SUBDIR += fusefs-curlftpfs
SUBDIR += fusefs-encfs
SUBDIR += fusefs-exfat
SUBDIR += fusefs-ext2
SUBDIR += fusefs-ext4fuse
SUBDIR += fusefs-funionfs
SUBDIR += fusefs-fusepak
SUBDIR += fusefs-fusexmp_fh
SUBDIR += fusefs-gitfs
SUBDIR += fusefs-gnome-vfs
SUBDIR += fusefs-gstfs
SUBDIR += fusefs-gunzip
SUBDIR += fusefs-httpfs
SUBDIR += fusefs-ifuse
SUBDIR += fusefs-libs
SUBDIR += fusefs-libs3
SUBDIR += fusefs-lkl
SUBDIR += fusefs-mhddfs
SUBDIR += fusefs-mp3fs
SUBDIR += fusefs-ntfs
SUBDIR += fusefs-pod
SUBDIR += fusefs-rar2fs
SUBDIR += fusefs-s3fs
SUBDIR += fusefs-simple-mtpfs
SUBDIR += fusefs-smbnetfs
SUBDIR += fusefs-sqlfs
SUBDIR += fusefs-squashfuse
SUBDIR += fusefs-sshfs
SUBDIR += fusefs-unionfs
SUBDIR += fusefs-wdfs
SUBDIR += fusefs-wikipediafs
SUBDIR += fusefs-zip
SUBDIR += fvcool
SUBDIR += gaffitter
SUBDIR += gai-leds
SUBDIR += ganglia-monitor-core
SUBDIR += ganglia-webfrontend
SUBDIR += gapcmon
SUBDIR += garcon
SUBDIR += gather
SUBDIR += gcdmaster
SUBDIR += gcombust
SUBDIR += gconf-editor
SUBDIR += gdisk
SUBDIR += gdmap
SUBDIR += genisoimage
SUBDIR += geomWatch
SUBDIR += getdelta
SUBDIR += geteltorito
SUBDIR += gigolo
SUBDIR += gkfreq
SUBDIR += gkleds2
SUBDIR += gkrellfire
SUBDIR += gkrellflynn
SUBDIR += gkrellm-trayicons
SUBDIR += gkrellm2
SUBDIR += gkrelltop
SUBDIR += gksu
SUBDIR += gnome-control-center
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_subr
SUBDIR += goaccess
SUBDIR += goss
SUBDIR += gpart
SUBDIR += gpte
SUBDIR += graffer
SUBDIR += graid5
SUBDIR += graveman
SUBDIR += graylog
SUBDIR += grub2
SUBDIR += grub2-bhyve
SUBDIR += grub2-efi
SUBDIR += grub2-pcbsd
SUBDIR += gsh
SUBDIR += gsmartcontrol
SUBDIR += gstopd
SUBDIR += gstreamer-plugins-cdio
SUBDIR += gstreamer-plugins-hal
SUBDIR += gstreamer1-plugins-cdio
SUBDIR += gtk-imonc
SUBDIR += hachoir-metadata
SUBDIR += hachoir-subfile
SUBDIR += hachoir-urwid
SUBDIR += hachoir-wx
SUBDIR += hal
SUBDIR += hal-info
SUBDIR += hardlink
SUBDIR += hatop
SUBDIR += hdrecover
SUBDIR += healthd
SUBDIR += heartbeat
SUBDIR += heirloom
SUBDIR += hextools
SUBDIR += hfm
SUBDIR += hfsexplorer
SUBDIR += hfsutils
SUBDIR += hidesvn
SUBDIR += highlnk
SUBDIR += hilite
SUBDIR += host-setup
SUBDIR += hourglass
SUBDIR += hoz
SUBDIR += hpacucli
SUBDIR += hploscripts
SUBDIR += hptcli
SUBDIR += hs-angel
SUBDIR += hs-cpu
SUBDIR += hs-disk-free-space
SUBDIR += hs-ekg
SUBDIR += hs-ekg-core
SUBDIR += hs-ekg-json
SUBDIR += hs-mountpoints
SUBDIR += hstr
SUBDIR += htop
SUBDIR += httplog
SUBDIR += hwstat
SUBDIR += i2c-tools
SUBDIR += i7z
SUBDIR += iat
SUBDIR += immortal
SUBDIR += incron
SUBDIR += inotify-tools
SUBDIR += installwatch
SUBDIR += intel-nvmupdate
SUBDIR += intel-pcm
SUBDIR += intel-qcu
SUBDIR += iocage
SUBDIR += iocell
SUBDIR += iogen
SUBDIR += iograph
SUBDIR += iohyve
SUBDIR += ioping
SUBDIR += ipa
SUBDIR += ipad_charge
SUBDIR += ipdbtools
SUBDIR += ipfs-go
SUBDIR += ipmitool
SUBDIR += ipsc
SUBDIR += isc-cron
SUBDIR += isomaster
SUBDIR += isomd5sum
SUBDIR += istatserver
SUBDIR += jadm
SUBDIR += jail-primer
SUBDIR += jailadmin
SUBDIR += jailctl
SUBDIR += jaildaemon
SUBDIR += jailme
SUBDIR += jailrc
SUBDIR += jailutils
SUBDIR += javaservicewrapper
SUBDIR += jdiskreport
SUBDIR += jdupes
SUBDIR += jkill
SUBDIR += jobd
SUBDIR += jps
SUBDIR += jtop
SUBDIR += jtopen
SUBDIR += jvmtop
SUBDIR += jx
SUBDIR += k3b-kde4
SUBDIR += k8temp
SUBDIR += kcm-polkit-kde
SUBDIR += kcron
SUBDIR += kdeadmin4
SUBDIR += kdf
SUBDIR += kdirstat
SUBDIR += keyboard-daemon
SUBDIR += kf5-baloo
SUBDIR += kf5-kwallet
SUBDIR += kfilemetadata
SUBDIR += kfloppy
SUBDIR += kiconvtool
SUBDIR += kldfind
SUBDIR += kldpatch
SUBDIR += knutclient-kde4
SUBDIR += krename-kde4
SUBDIR += kshutdown-kde4
SUBDIR += ksysguardd
SUBDIR += ksystemlog
SUBDIR += kuser
SUBDIR += lava
SUBDIR += lbl-cf
SUBDIR += lbl-hf
SUBDIR += lcdproc
SUBDIR += ldap-account-manager
SUBDIR += ldapvi
SUBDIR += ledit
SUBDIR += less
SUBDIR += lfm
SUBDIR += libcdio
SUBDIR += libcdio-paranoia
SUBDIR += libchk
SUBDIR += libcpuid
SUBDIR += libfvde
SUBDIR += libgksu
SUBDIR += libieee1284
SUBDIR += libretto-config
SUBDIR += libsunacl
SUBDIR += liburcu
SUBDIR += libutempter
SUBDIR += life-preserver
SUBDIR += lineak-defaultplugin
SUBDIR += lineak-xosdplugin
SUBDIR += lineakd
SUBDIR += linrename
SUBDIR += linux-crashplan
SUBDIR += linuxfdisk
SUBDIR += livecd
SUBDIR += lmmon
SUBDIR += lmon
SUBDIR += lnav
SUBDIR += log_analysis
SUBDIR += logrotate
SUBDIR += logstalgia
SUBDIR += logstash
SUBDIR += logstash-forwarder
SUBDIR += logstash5
SUBDIR += logtool
SUBDIR += logwatch
SUBDIR += lookat
SUBDIR += lr
SUBDIR += lscpu
SUBDIR += lsof
SUBDIR += lsop
SUBDIR += ltrace
SUBDIR += lttng-tools
SUBDIR += lttng-ust
SUBDIR += luckybackup
SUBDIR += lxinput
SUBDIR += lxsplit
SUBDIR += lxtask
SUBDIR += lxterminal
SUBDIR += magicrescue
SUBDIR += manck
SUBDIR += mapchan
SUBDIR += massadmin
SUBDIR += mate-control-center
SUBDIR += mate-polkit
SUBDIR += mate-power-manager
SUBDIR += mate-settings-daemon
SUBDIR += mate-system-monitor
SUBDIR += mbgtools
SUBDIR += mcelog
SUBDIR += mcollective
SUBDIR += mcollective-actionpolicy-auth
SUBDIR += mcollective-nettest-agent
SUBDIR += mcollective-nettest-client
SUBDIR += mcollective-nettest-common
SUBDIR += mcollective-nrpe-agent
SUBDIR += mcollective-nrpe-client
SUBDIR += mcollective-nrpe-common
SUBDIR += mcollective-puppet-agent
SUBDIR += mcollective-puppet-client
SUBDIR += mcollective-puppet-common
SUBDIR += mcollective-service-agent
SUBDIR += mcollective-service-client
SUBDIR += mcollective-service-common
SUBDIR += mcollective-shell-agent
SUBDIR += mcollective-shell-client
SUBDIR += mcron
SUBDIR += mcweject
SUBDIR += mdcp
SUBDIR += mdf2iso
SUBDIR += megacli
SUBDIR += megarc
SUBDIR += memdump
SUBDIR += memfetch
SUBDIR += memtest
SUBDIR += memtest86
SUBDIR += memtest86+
SUBDIR += metalog
SUBDIR += mfid
SUBDIR += mgeupsd
SUBDIR += minimunin
SUBDIR += minirsyslogd
SUBDIR += mixer
SUBDIR += mkdesktop
SUBDIR += mkfile
SUBDIR += mkfwimage
SUBDIR += mkntpwd
SUBDIR += mksunbootcd
SUBDIR += mmc-utils
SUBDIR += mnrpes
SUBDIR += modman
SUBDIR += modules
SUBDIR += mog
SUBDIR += monit
SUBDIR += monitord
SUBDIR += monitorix
SUBDIR += mono-kmod
SUBDIR += moosefs2-cgi
SUBDIR += moosefs2-cgiserv
SUBDIR += moosefs2-chunkserver
SUBDIR += moosefs2-cli
SUBDIR += moosefs2-client
SUBDIR += moosefs2-master
SUBDIR += moosefs2-metalogger
SUBDIR += moosefs2-netdump
SUBDIR += moosefs3-cgi
SUBDIR += moosefs3-cgiserv
SUBDIR += moosefs3-chunkserver
SUBDIR += moosefs3-cli
SUBDIR += moosefs3-client
SUBDIR += moosefs3-master
SUBDIR += moosefs3-metalogger
SUBDIR += moosefs3-netdump
SUBDIR += moreutils
SUBDIR += most
SUBDIR += mount.app
SUBDIR += mountsmb2
SUBDIR += mpiexec
SUBDIR += mptd
SUBDIR += msktutil
SUBDIR += msyslog
SUBDIR += mtpfs
SUBDIR += mtxorbd
SUBDIR += multitail
SUBDIR += munin-common
SUBDIR += munin-contrib
SUBDIR += munin-master
SUBDIR += munin-node
SUBDIR += muse
SUBDIR += mybashburn
SUBDIR += myrescue
SUBDIR += n98-magerun
SUBDIR += nagios-statd
SUBDIR += namefix
SUBDIR += nbosd
SUBDIR += ncdu
SUBDIR += ndmpd
SUBDIR += neofetch
SUBDIR += nepomuk-core
SUBDIR += nepomuk-widgets
SUBDIR += nfcutils
SUBDIR += nfsping
SUBDIR += nitrogen
SUBDIR += no-login
SUBDIR += node_exporter
SUBDIR += nomad
SUBDIR += npadmin
SUBDIR += nrg2iso
SUBDIR += nut
SUBDIR += nvclock
SUBDIR += nvramtool
SUBDIR += oak
SUBDIR += obliterate
SUBDIR += odo
SUBDIR += ods2
SUBDIR += ohmu
SUBDIR += open
SUBDIR += openhpi
SUBDIR += openipmi
SUBDIR += openupsd
SUBDIR += ori
SUBDIR += osinfo-db-tools
SUBDIR += osquery
SUBDIR += p5-BSD-Jail-Object
SUBDIR += p5-BSD-Process
SUBDIR += p5-BSD-Sysctl
SUBDIR += p5-BackupPC-XS
SUBDIR += p5-Brackup
SUBDIR += p5-Dir-Purge
SUBDIR += p5-File-DirCompare
SUBDIR += p5-File-Listing
SUBDIR += p5-File-Log
SUBDIR += p5-File-Next
SUBDIR += p5-File-Signature
SUBDIR += p5-File-Stat-Bits
SUBDIR += p5-File-Stat-ModeString
SUBDIR += p5-File-Tee
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-Giovanni
SUBDIR += p5-Iterator-File
SUBDIR += p5-Lchown
SUBDIR += p5-Linux-Cpuinfo
SUBDIR += p5-Log-Syslog-Constants
SUBDIR += p5-Log-Syslog-Fast
SUBDIR += p5-MogileFS-Client
SUBDIR += p5-MogileFS-Network
SUBDIR += p5-MogileFS-Server
SUBDIR += p5-MogileFS-Utils
SUBDIR += p5-Monitor-Simple
SUBDIR += p5-Plugtools
SUBDIR += p5-Plugtools-Plugins-HomeOU
SUBDIR += p5-Probe-Perl
SUBDIR += p5-Proc-PidUtil
SUBDIR += p5-Proclet
SUBDIR += p5-Quota
SUBDIR += p5-Rex
SUBDIR += p5-Samba-SIDhelper
SUBDIR += p5-Schedule-At
SUBDIR += p5-Schedule-Cron
SUBDIR += p5-Schedule-Cron-Events
SUBDIR += p5-Schedule-Load
SUBDIR += p5-Schedule-Match
SUBDIR += p5-Shell-Command
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-Load
SUBDIR += p5-Sys-Syslog
SUBDIR += p5-Sys-User-UIDhelper
SUBDIR += p5-Sysadm-Install
SUBDIR += p5-SyslogScan
SUBDIR += p5-Tail-Stat
SUBDIR += p5-Tie-Syslog
SUBDIR += p5-Ubic
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-reslog
SUBDIR += packer
SUBDIR += pacman
SUBDIR += paicc
SUBDIR += paladin
SUBDIR += pam_mount
SUBDIR += panicmail
SUBDIR += parafly
SUBDIR += parallel
SUBDIR += password-store
SUBDIR += passwordsafe
SUBDIR += patchelf
SUBDIR += pax-utils
SUBDIR += pbi-manager
SUBDIR += pbimaker
SUBDIR += pc-networkmanager
SUBDIR += pcapfix
SUBDIR += pcbsd-appweb
SUBDIR += pcbsd-libsh
SUBDIR += pcbsd-syscache
SUBDIR += pcbsd-utils
SUBDIR += pcbsd-utils-qt5
SUBDIR += pciutils
SUBDIR += pcpustat
SUBDIR += pdixtract
SUBDIR += pdumpfs
SUBDIR += pear-Cache
SUBDIR += pear-Cache_Lite
SUBDIR += pear-File
SUBDIR += pear-File_Find
SUBDIR += pear-File_Fstab
SUBDIR += pear-File_Gettext
SUBDIR += pear-Horde_Log
SUBDIR += pear-Horde_Vfs
SUBDIR += pear-I18Nv2
SUBDIR += pear-Log
SUBDIR += pear-Translation2
SUBDIR += pecl-mogilefs
SUBDIR += pecl-proctitle
SUBDIR += pefs-kmod
SUBDIR += personality
SUBDIR += pesign
SUBDIR += pflogx
SUBDIR += pfstat
SUBDIR += pftables
SUBDIR += pftop
SUBDIR += phantom
SUBDIR += php56-fileinfo
SUBDIR += php56-posix
SUBDIR += php70-fileinfo
SUBDIR += php70-posix
SUBDIR += php71-fileinfo
SUBDIR += php71-posix
SUBDIR += php72-fileinfo
SUBDIR += php72-posix
SUBDIR += phybs
SUBDIR += pick
SUBDIR += pidof
SUBDIR += pipemeter
SUBDIR += plconfig
SUBDIR += pmt
SUBDIR += policykit
SUBDIR += policykit-gnome
SUBDIR += policykit-qt
SUBDIR += polkit
SUBDIR += polkit-gnome
SUBDIR += polkit-kde
SUBDIR += polkit-qt
SUBDIR += polkit-qt5
SUBDIR += powerdxx
SUBDIR += powerman
SUBDIR += powermon
SUBDIR += pp
SUBDIR += pprotectd
SUBDIR += prelink
SUBDIR += prips
SUBDIR += procenv
SUBDIR += procmap
SUBDIR += progsreiserfs
SUBDIR += pslist
SUBDIR += psmisc
SUBDIR += pstack
SUBDIR += pstacku
SUBDIR += pstree
SUBDIR += ptools
SUBDIR += puppet-lint
SUBDIR += puppet-mode.el
SUBDIR += puppet4
SUBDIR += puppet5
SUBDIR += puppetserver
SUBDIR += puppetserver5
SUBDIR += pv
SUBDIR += pwd_unmkdb
SUBDIR += pwgen
SUBDIR += pwsafe
SUBDIR += pxattr
SUBDIR += py-XenAPI
SUBDIR += py-analyzemft
SUBDIR += py-bcfg2
SUBDIR += py-cdmi
SUBDIR += py-consul
SUBDIR += py-croniter
SUBDIR += py-crontab
SUBDIR += py-diffoscope
SUBDIR += py-dirsync
SUBDIR += py-dlipower
SUBDIR += py-docker
SUBDIR += py-drmaa
SUBDIR += py-execnet
SUBDIR += py-ezjailremote
SUBDIR += py-filelike
SUBDIR += py-filelock
SUBDIR += py-freenas.cli
SUBDIR += py-glances
SUBDIR += py-gmailfs-fuse
SUBDIR += py-google-compute-engine
SUBDIR += py-halite
SUBDIR += py-honcho
SUBDIR += py-iowait
SUBDIR += py-nagiosplugin
SUBDIR += py-nomad
SUBDIR += py-pkginfo
SUBDIR += py-ploy
SUBDIR += py-ploy_ansible
SUBDIR += py-ploy_ec2
SUBDIR += py-ploy_ezjail
SUBDIR += py-ploy_fabric
SUBDIR += py-plumbum
SUBDIR += py-power
SUBDIR += py-psutil
SUBDIR += py-psutil121
SUBDIR += py-ptyprocess
SUBDIR += py-pytsk
SUBDIR += py-pywatchman
SUBDIR += py-queuelib
SUBDIR += py-ranger
SUBDIR += py-salt
SUBDIR += py-scandir
SUBDIR += py-scriptine
SUBDIR += py-shutilwhich
SUBDIR += py-stdiff
SUBDIR += py-superlance
SUBDIR += py-supervisor
SUBDIR += py-tmuxp
SUBDIR += py-uptime
SUBDIR += py-zdaemon
SUBDIR += py-zfs
SUBDIR += py3-execnet
SUBDIR += py3-pkginfo
SUBDIR += py3-ptyprocess
SUBDIR += pydf
SUBDIR += qchroot
SUBDIR += qjail
SUBDIR += qjail2
SUBDIR += qjail4
SUBDIR += qlogtools
SUBDIR += qpxtool
SUBDIR += qsudo
SUBDIR += qsynergy
SUBDIR += qt5-qtdiag
SUBDIR += qt5-qtpaths
SUBDIR += qt5-qtplugininfo
SUBDIR += qtpass
SUBDIR += quicksynergy
SUBDIR += qzeitgeist
SUBDIR += racktables
SUBDIR += radeontool
SUBDIR += radeontop
SUBDIR += radmind
SUBDIR += rainbarf
SUBDIR += raincoat
SUBDIR += rcadm
SUBDIR += rclean
SUBDIR += rcm
SUBDIR += rdate
SUBDIR += rdiff-backup
SUBDIR += rdiff-backup-devel
SUBDIR += rdup
SUBDIR += read-edid
SUBDIR += realsync
SUBDIR += recoverdm
SUBDIR += reed
SUBDIR += rej
SUBDIR += relaxconf
SUBDIR += rename
SUBDIR += renameutils
SUBDIR += reoback
SUBDIR += reptyr
SUBDIR += respond
SUBDIR += restic
SUBDIR += retail
SUBDIR += rex
SUBDIR += rfstool
SUBDIR += rhc
SUBDIR += riak-cs
SUBDIR += rinse
SUBDIR += rmonitor
SUBDIR += roottail
SUBDIR += rovclock
SUBDIR += rpi-firmware
SUBDIR += rsnapshot
SUBDIR += rsyncbackup
SUBDIR += rsyncrypto
SUBDIR += rsyslog8
SUBDIR += rtty
SUBDIR += rubygem-backup
SUBDIR += rubygem-bosh-gen
SUBDIR += rubygem-bosh_cli
SUBDIR += rubygem-bundler
SUBDIR += rubygem-bundler_ext
SUBDIR += rubygem-capistrano
SUBDIR += rubygem-capistrano-ext
SUBDIR += rubygem-capistrano-harrow
SUBDIR += rubygem-chef
SUBDIR += rubygem-chef-api
SUBDIR += rubygem-chef-config
SUBDIR += rubygem-chef-zero
SUBDIR += rubygem-facter
SUBDIR += rubygem-fluent-mixin-plaintextformatter
SUBDIR += rubygem-fluent-plugin-config-expander
SUBDIR += rubygem-fluent-plugin-file-alternative
SUBDIR += rubygem-fluent-plugin-graylog
SUBDIR += rubygem-fluent-plugin-tail-asis
SUBDIR += rubygem-fluentd
SUBDIR += rubygem-fluentd010
SUBDIR += rubygem-fssm
SUBDIR += rubygem-god
SUBDIR += rubygem-guard
SUBDIR += rubygem-guard-compat
SUBDIR += rubygem-guard-livereload
SUBDIR += rubygem-guard-minitest
SUBDIR += rubygem-guard-rspec
SUBDIR += rubygem-hammer_cli
SUBDIR += rubygem-hammer_cli_foreman
SUBDIR += rubygem-hammer_cli_foreman_bootdisk
SUBDIR += rubygem-hammer_cli_foreman_salt
SUBDIR += rubygem-hammer_cli_foreman_ssh
SUBDIR += rubygem-hiera
SUBDIR += rubygem-hiera-eyaml
SUBDIR += rubygem-hiera-file
SUBDIR += rubygem-hiera1
SUBDIR += rubygem-hieracles
SUBDIR += rubygem-httplog
SUBDIR += rubygem-itamae
SUBDIR += rubygem-librarian-puppet
SUBDIR += rubygem-log4r
SUBDIR += rubygem-logify
SUBDIR += rubygem-mogilefs-client
SUBDIR += rubygem-mothra
SUBDIR += rubygem-murder
SUBDIR += rubygem-ohai
SUBDIR += rubygem-parallel
SUBDIR += rubygem-puppet_forge
SUBDIR += rubygem-r10k
SUBDIR += rubygem-rubyipmi
SUBDIR += rubygem-serverspec
SUBDIR += rubygem-shellany
SUBDIR += rubygem-smart_proxy_chef
SUBDIR += rubygem-smart_proxy_dynflow
SUBDIR += rubygem-smart_proxy_remote_execution_ssh
SUBDIR += rubygem-smart_proxy_salt
SUBDIR += rubygem-specinfra
SUBDIR += rubygem-sys-admin
SUBDIR += rubygem-sys-cpu
SUBDIR += rubygem-sys-filesystem
SUBDIR += rubygem-sys-host
SUBDIR += rubygem-sys-proctable
SUBDIR += rubygem-sys-uname
SUBDIR += rubygem-sys-uptime
SUBDIR += rubygem-syslog-logger
SUBDIR += rubygem-teamocil
SUBDIR += rubygem-tmuxinator
SUBDIR += rubygem-vagrant-bhyve
SUBDIR += rubygem-vagrant-mutate
SUBDIR += rubygem-vagrant-vbguest
SUBDIR += rubygem-vmstat
SUBDIR += rubygem-winrm
SUBDIR += rubygem-winrm-elevated
SUBDIR += rubygem-winrm-fs
SUBDIR += rubygem-yell
SUBDIR += rundeck
SUBDIR += runit
SUBDIR += runwhen
SUBDIR += s6
SUBDIR += s6-rc
SUBDIR += safe-rm
SUBDIR += safecat
SUBDIR += safecopy
SUBDIR += samefile
SUBDIR += samesame
SUBDIR += sample
SUBDIR += sas2ircu
SUBDIR += sas3ircu
SUBDIR += savelogs
SUBDIR += sb16config
SUBDIR += sbsigntool
SUBDIR += scalpel
SUBDIR += scan_ffs
SUBDIR += scanbuttond
SUBDIR += scct
SUBDIR += schedutils
SUBDIR += scprotect
SUBDIR += screen
SUBDIR += screenfetch
SUBDIR += screenie
SUBDIR += scterc
SUBDIR += sd-agent
SUBDIR += sdparm
SUBDIR += searchmonkey
SUBDIR += seatools
SUBDIR += sec
SUBDIR += serf
SUBDIR += setcdboot
SUBDIR += setquota
SUBDIR += sformat
SUBDIR += sg3_utils
SUBDIR += shim
SUBDIR += shlock
SUBDIR += shmcat
SUBDIR += showbeastie
SUBDIR += siegfried
SUBDIR += signon-qt5
SUBDIR += signon-ui
SUBDIR += skill
SUBDIR += slack
SUBDIR += sleuthkit
SUBDIR += sloth
SUBDIR += slst
SUBDIR += slurm-wlm
SUBDIR += smart
SUBDIR += smartmontools
SUBDIR += smenu
SUBDIR += smp_utils
SUBDIR += snap
SUBDIR += snowlog
SUBDIR += socket
SUBDIR += socklog
SUBDIR += solaar
SUBDIR += sortu
SUBDIR += spindown
SUBDIR += spinner
SUBDIR += spiped
SUBDIR += squashfs-tools
SUBDIR += sshsudo
SUBDIR += ssid
SUBDIR += ssync
SUBDIR += stalepid
SUBDIR += stanchion
SUBDIR += stmpclean
SUBDIR += storcli
SUBDIR += stow
SUBDIR += stowES
SUBDIR += stress
SUBDIR += superiotool
SUBDIR += swapd
SUBDIR += swapexd
SUBDIR += swapmon
SUBDIR += sweeper
SUBDIR += symlinks
SUBDIR += symon
SUBDIR += synergy
SUBDIR += sysadm
SUBDIR += sysadm-client
SUBDIR += sysgather
SUBDIR += sysinfo
SUBDIR += syslinux
SUBDIR += syslog-ng
SUBDIR += syslog-ng-incubator
SUBDIR += syslog-ng310
SUBDIR += syslog-ng311
SUBDIR += syslog-ng312
SUBDIR += syslog-ng36
SUBDIR += syslog-ng37
SUBDIR += syslog-ng39
SUBDIR += syslogger
SUBDIR += sysrc
SUBDIR += system-tools-backends
SUBDIR += sysvbanner
SUBDIR += tai64nfrac
SUBDIR += tarsnap
SUBDIR += tarsnap-gui
SUBDIR += tarsnap-periodic
SUBDIR += tartarus
SUBDIR += tbku
SUBDIR += tclsyslog
SUBDIR += tcplist
SUBDIR += tdir
SUBDIR += tenshi
SUBDIR += tentakel
SUBDIR += terraform
SUBDIR += testdisk
SUBDIR += thefish
SUBDIR += timelimit
SUBDIR += timemon
SUBDIR += titlefix
SUBDIR += tkdvd
SUBDIR += tlsdate
SUBDIR += tm
SUBDIR += tmate
SUBDIR += tmate-slave
SUBDIR += tmpreaper
SUBDIR += tmpwatch
SUBDIR += tmux
SUBDIR += tmux-mem-cpu-load
SUBDIR += topless
SUBDIR += torque
SUBDIR += toshctl
SUBDIR += tracker
SUBDIR += tree
SUBDIR += tren
SUBDIR += ts
SUBDIR += tss
SUBDIR += tty-clock
SUBDIR += ttyd
SUBDIR += ttyload
SUBDIR += trueos-libqt5
SUBDIR += tuptime
SUBDIR += tw_cli
SUBDIR += tzdialog
SUBDIR += u-boot-a13-olinuxino
SUBDIR += u-boot-bananapi
SUBDIR += u-boot-bananapim2
SUBDIR += u-boot-beaglebone
SUBDIR += u-boot-chip
SUBDIR += u-boot-cubieboard
SUBDIR += u-boot-cubieboard2
SUBDIR += u-boot-cubox-hummingboard
SUBDIR += u-boot-duovero
SUBDIR += u-boot-imx-serial-loader
SUBDIR += u-boot-master
SUBDIR += u-boot-nanopi-m1plus
SUBDIR += u-boot-nanopi-neo
SUBDIR += u-boot-nanopi-neo-air
SUBDIR += u-boot-olimex-a20-som-evb
SUBDIR += u-boot-olinuxino-lime
SUBDIR += u-boot-orangepi-one
SUBDIR += u-boot-orangepi-plus-2e
SUBDIR += u-boot-pandaboard
SUBDIR += u-boot-pcduino3
SUBDIR += u-boot-pine64
SUBDIR += u-boot-rpi
SUBDIR += u-boot-rpi2
SUBDIR += u-boot-rpi3
SUBDIR += u-boot-sinovoip-bpi-m3
SUBDIR += u-boot-sopine
SUBDIR += u-boot-utilite
SUBDIR += u-boot-wandboard
SUBDIR += u-boot-zedboard
SUBDIR += u-boot-zybo
SUBDIR += ua
SUBDIR += ucspi-ipc
SUBDIR += ucspi-proxy
SUBDIR += ucspi-ssl
SUBDIR += ucspi-tcp
SUBDIR += ucspi-unix
SUBDIR += udfclient
SUBDIR += uefi-edk2-bhyve
SUBDIR += uefi-edk2-bhyve-csm
SUBDIR += ufs_copy
SUBDIR += uhidd
SUBDIR += uif2iso
SUBDIR += unetbootin
SUBDIR += unieject
SUBDIR += uniutils
SUBDIR += unquote
SUBDIR += unstow
SUBDIR += upower
SUBDIR += upsdaemon
SUBDIR += uptimed
SUBDIR += usb_modeswitch
SUBDIR += usbhid-dump
SUBDIR += usbhotkey
SUBDIR += usbutils
SUBDIR += uschedule
SUBDIR += userinfo
SUBDIR += userlist
SUBDIR += usermatic
SUBDIR += usermin
SUBDIR += userneu
SUBDIR += userneu-devel
SUBDIR += usrinfo
SUBDIR += utcount
SUBDIR += vagrant
SUBDIR += vbetool
SUBDIR += vchanger
SUBDIR += vcp
SUBDIR += videogen
SUBDIR += vii
SUBDIR += vils
SUBDIR += vimpager
SUBDIR += virtualmin
SUBDIR += vm-bhyve
SUBDIR += vmdktool
SUBDIR += vmtouch
SUBDIR += vobcopy
SUBDIR += volman
SUBDIR += vordog
SUBDIR += vpnc-scripts
SUBDIR += vstrip
SUBDIR += vttest
SUBDIR += wait_on
SUBDIR += warden
SUBDIR += watchdog
SUBDIR += watchfolder
SUBDIR += watchman
SUBDIR += watchmen
SUBDIR += webjob
SUBDIR += webmin
SUBDIR += weedit
SUBDIR += wemux
SUBDIR += whatpix
SUBDIR += whowatch
SUBDIR += wiimms
SUBDIR += wmapmload
SUBDIR += wmbluecpu
SUBDIR += wmbsdbatt
SUBDIR += wmcpuload
SUBDIR += wmcube
SUBDIR += wmcube-gdk
SUBDIR += wmdiskmon
SUBDIR += wmfire
SUBDIR += wmflame
SUBDIR += wmmemfree
SUBDIR += wmmemload
SUBDIR += wmtop
SUBDIR += wmupmon
SUBDIR += worldtools
SUBDIR += wtail
SUBDIR += wuzzah
SUBDIR += x86info
SUBDIR += xbatt
SUBDIR += xbattbar
SUBDIR += xcdroast
SUBDIR += xcpustate
SUBDIR += xdu
SUBDIR += xe
SUBDIR += xe-guest-utilities
SUBDIR += xen-guest-tools
SUBDIR += xen-tools
SUBDIR += xfburn
SUBDIR += xfce4-battery-plugin
SUBDIR += xfce4-bsdcpufreq-plugin
SUBDIR += xfce4-cpugraph-plugin
SUBDIR += xfce4-diskperf-plugin
SUBDIR += xfce4-fsguard-plugin
SUBDIR += xfce4-genmon-plugin
SUBDIR += xfce4-mount-plugin
SUBDIR += xfce4-netload-plugin
SUBDIR += xfce4-power-manager
SUBDIR += xfce4-settings
SUBDIR += xfce4-systemload-plugin
SUBDIR += xfce4-wavelan-plugin
SUBDIR += xfsm
SUBDIR += xfsprogs
SUBDIR += xin
SUBDIR += xjobs
SUBDIR += xlogmaster
SUBDIR += xmbmon
SUBDIR += xorriso
SUBDIR += xosview
SUBDIR += xstow
SUBDIR += xsysstats
SUBDIR += xvidcap
SUBDIR += yum
SUBDIR += zap
SUBDIR += zbackup
SUBDIR += zeitgeist
SUBDIR += zeroer
SUBDIR += zetaback
SUBDIR += zfs-periodic
SUBDIR += zfs-replicate
SUBDIR += zfs-snap-diff
SUBDIR += zfs-snapshot-clean
SUBDIR += zfs-snapshot-mgmt
SUBDIR += zfs-stats
SUBDIR += zfs-stats-lite
SUBDIR += zfsnap
SUBDIR += zfsnap2
SUBDIR += zfstools
SUBDIR += zidrav
SUBDIR += zisofs-tools
SUBDIR += znapzend
SUBDIR += zogftw
SUBDIR += zrep
SUBDIR += zrepl
SUBDIR += zsd
SUBDIR += zxfer
.include <bsd.port.subdir.mk>
|