blob: a5446c0547390f8cc1a90f22f43b6cd97d098fb7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
|
COMMENT = System utilities
SUBDIR += 3dm
SUBDIR += 3mux
SUBDIR += 44bsd-more
SUBDIR += 915resolution
SUBDIR += LPRng
SUBDIR += LPRngTool
SUBDIR += R-cran-fs
SUBDIR += R-cran-processx
SUBDIR += R-cran-ps
SUBDIR += R-cran-xopen
SUBDIR += UEFITool
SUBDIR += abduco
SUBDIR += abgx360
SUBDIR += accounts-qml-module
SUBDIR += accountsservice
SUBDIR += acerhdf-kmod
SUBDIR += acfgfs
SUBDIR += acltool
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 += alfio
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-qt5
SUBDIR += angrysearch
SUBDIR += ansible
SUBDIR += ansible-iocage
SUBDIR += ansible-kld
SUBDIR += ansible-sshjail
SUBDIR += ansible-sysrc
SUBDIR += ansible2
SUBDIR += ansible4
SUBDIR += anvil
SUBDIR += apache-mesos
SUBDIR += apachetop
SUBDIR += apcctrl
SUBDIR += apcpwr
SUBDIR += apcupsd
SUBDIR += aptly
SUBDIR += arcconf
SUBDIR += archivemount
SUBDIR += ascpu
SUBDIR += asfsm
SUBDIR += asmctl
SUBDIR += asmem
SUBDIR += asusoled
SUBDIR += atf-fvp
SUBDIR += atf-master
SUBDIR += atf-rk3328
SUBDIR += atf-rk3399
SUBDIR += atf-sun50i_a64
SUBDIR += atf-sun50i_h6
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 += backuppc
SUBDIR += backuppc-devel
SUBDIR += backuppc4
SUBDIR += backupuser
SUBDIR += bacula11-client
SUBDIR += bacula11-client-static
SUBDIR += bacula11-docs
SUBDIR += bacula11-server
SUBDIR += bacula9-client
SUBDIR += bacula9-client-static
SUBDIR += bacula9-docs
SUBDIR += bacula9-server
SUBDIR += baloo-widgets
SUBDIR += bamf
SUBDIR += bareos-client
SUBDIR += bareos-server
SUBDIR += bareos-traymonitor
SUBDIR += bareos18-client
SUBDIR += bareos18-server
SUBDIR += bareos18-traymonitor
SUBDIR += bareos19-client
SUBDIR += bareos19-server
SUBDIR += bareos19-traymonitor
SUBDIR += bareos20-client
SUBDIR += bareos20-server
SUBDIR += bareos20-traymonitor
SUBDIR += barrier
SUBDIR += bashtop
SUBDIR += bastille
SUBDIR += batmon
SUBDIR += batterycat
SUBDIR += battmond
SUBDIR += battray
SUBDIR += bchunk
SUBDIR += beadm
SUBDIR += beadm-devel
SUBDIR += beats6
SUBDIR += beats7
SUBDIR += bfs
SUBDIR += bhyve+
SUBDIR += bhyve-firmware
SUBDIR += bhyve-rc
SUBDIR += biosfont
SUBDIR += bkpupsd
SUBDIR += bksh
SUBDIR += bkt
SUBDIR += boot-extract
SUBDIR += boxbackup-devel
SUBDIR += bpytop
SUBDIR += brasero
SUBDIR += brename
SUBDIR += brut
SUBDIR += bsd-splash-changer
SUBDIR += bsdconfig
SUBDIR += bsdcrashtar
SUBDIR += bsdfan
SUBDIR += bsdhwmon
SUBDIR += bsdinfo
SUBDIR += bsdisks
SUBDIR += bsdstats
SUBDIR += bstack
SUBDIR += btsixad
SUBDIR += bulk_extractor
SUBDIR += bupstash
SUBDIR += burp
SUBDIR += burp-devel
SUBDIR += busybox
SUBDIR += bvm
SUBDIR += byobu
SUBDIR += calamares
SUBDIR += catfish
SUBDIR += cbsd
SUBDIR += cbsd-mq-api
SUBDIR += cbsd-mq-router
SUBDIR += ccd2iso
SUBDIR += cciss_vol_status
SUBDIR += ccze
SUBDIR += cdargs
SUBDIR += cdbkup
SUBDIR += cdeploy
SUBDIR += cdircmp
SUBDIR += cdrdao
SUBDIR += cdrkit
SUBDIR += cdroot
SUBDIR += cdrtools
SUBDIR += cfengine
SUBDIR += cfengine-devel
SUBDIR += cfengine-masterfiles
SUBDIR += cfengine-masterfiles-devel
SUBDIR += cfengine-masterfiles316
SUBDIR += cfengine-masterfiles317
SUBDIR += cfengine-masterfiles318
SUBDIR += cfengine-masterfiles319
SUBDIR += cfengine316
SUBDIR += cfengine317
SUBDIR += cfengine318
SUBDIR += cfengine319
SUBDIR += chaoskube
SUBDIR += checkrestart
SUBDIR += chezmoi
SUBDIR += chgrep
SUBDIR += choria
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 += cloudabi-utils
SUBDIR += clsync
SUBDIR += cluster-glue
SUBDIR += cmdwatch
SUBDIR += cmocka
SUBDIR += cmockery2
SUBDIR += cmogstored
SUBDIR += cmospwd
SUBDIR += colorize
SUBDIR += conan
SUBDIR += confctl
SUBDIR += conky
SUBDIR += conky-awesome
SUBDIR += conman
SUBDIR += consolehm
SUBDIR += consolekit2
SUBDIR += consul
SUBDIR += consul-alerts
SUBDIR += consul-replicate
SUBDIR += consul_exporter
SUBDIR += container-diff
SUBDIR += containerd
SUBDIR += contractor
SUBDIR += copytape
SUBDIR += coreos-ct
SUBDIR += coreutils
SUBDIR += cpdup
SUBDIR += cpu-x
SUBDIR += cpuburn
SUBDIR += cpufetch
SUBDIR += cpuid
SUBDIR += cpuid2cpuflags
SUBDIR += cpulimit
SUBDIR += cpupdate
SUBDIR += cramfs
SUBDIR += crashme
SUBDIR += crate
SUBDIR += cronic
SUBDIR += cronolog
SUBDIR += cronolog-devel
SUBDIR += ctop
SUBDIR += currtime
SUBDIR += cw
SUBDIR += czkawka
SUBDIR += daa2iso
SUBDIR += dae
SUBDIR += daemonize
SUBDIR += daemontools
SUBDIR += daemontools-encore
SUBDIR += daggy
SUBDIR += damager
SUBDIR += dar
SUBDIR += datadog-agent
SUBDIR += datadog-integrations
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 += detox
SUBDIR += devcpu-data
SUBDIR += devcpu-data-amd
SUBDIR += devcpu-data-intel
SUBDIR += devstat
SUBDIR += dfc
SUBDIR += di
SUBDIR += digdag
SUBDIR += dim
SUBDIR += dirdiff
SUBDIR += direnv
SUBDIR += direvent
SUBDIR += dirvish
SUBDIR += discus
SUBDIR += diskcheckd
SUBDIR += diskimage-tools
SUBDIR += diskonaut
SUBDIR += diskscrub
SUBDIR += disktype
SUBDIR += dmg2img
SUBDIR += dmidecode
SUBDIR += dnf
SUBDIR += docker
SUBDIR += docker-compose
SUBDIR += docker-credential-pass
SUBDIR += docker-machine
SUBDIR += docker-registry
SUBDIR += doctl
SUBDIR += doinkd
SUBDIR += dolly
SUBDIR += downtimed
SUBDIR += dsbbatmon
SUBDIR += dsbdriverd
SUBDIR += dsblogoutmgr
SUBDIR += dsbmc
SUBDIR += dsbmc-cli
SUBDIR += dsbmd
SUBDIR += dsbsu
SUBDIR += dsbwrtsysctl
SUBDIR += dtc
SUBDIR += dtpstree
SUBDIR += dtrace-toolkit
SUBDIR += du2ps
SUBDIR += dua-cli
SUBDIR += duf
SUBDIR += duff
SUBDIR += dunst
SUBDIR += dupd
SUBDIR += duplicity
SUBDIR += duply
SUBDIR += dupmerge
SUBDIR += dust
SUBDIR += dvd+rw-tools
SUBDIR += dvdbackup
SUBDIR += dvdimagecmp
SUBDIR += dvdisaster
SUBDIR += dvdvideo
SUBDIR += dvtm
SUBDIR += dwatch
SUBDIR += dwatch-gource
SUBDIR += dwatch-json
SUBDIR += dwatch-pwsnoop
SUBDIR += e2fsprogs
SUBDIR += e2tools
SUBDIR += ebsnvme-id
SUBDIR += ec2-scripts
SUBDIR += eclat
SUBDIR += edid-decode
SUBDIR += edk2
SUBDIR += eject
SUBDIR += eksctl
SUBDIR += endian
SUBDIR += enteruser
SUBDIR += entr
SUBDIR += env4801
SUBDIR += envconsul
SUBDIR += epazote
SUBDIR += etc_os-release
SUBDIR += etcmerge
SUBDIR += etcupdate
SUBDIR += ethname
SUBDIR += evhz
SUBDIR += evisum
SUBDIR += evtviewer
SUBDIR += exa
SUBDIR += exfat-utils
SUBDIR += extipl
SUBDIR += ezjail
SUBDIR += f2
SUBDIR += f3
SUBDIR += facter
SUBDIR += fand
SUBDIR += fanout
SUBDIR += fatback
SUBDIR += fcode-utils
SUBDIR += fconfig
SUBDIR += fcron
SUBDIR += fd
SUBDIR += fdupes
SUBDIR += fetchlog
SUBDIR += ffs2recov
SUBDIR += file
SUBDIR += filedupe
SUBDIR += filelight
SUBDIR += fileprune
SUBDIR += fileschanged
SUBDIR += filetype
SUBDIR += filevercmp
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 += fluxengine
SUBDIR += fonteditfs
SUBDIR += foremost
SUBDIR += fortunelock
SUBDIR += fpart
SUBDIR += fpc-syslog
SUBDIR += fpc-users
SUBDIR += fpc-utmp
SUBDIR += fpc-uuid
SUBDIR += frand
SUBDIR += freebsd-snapshot
SUBDIR += freecolor
SUBDIR += freedt
SUBDIR += freeipmi
SUBDIR += freesbie
SUBDIR += froxlor
SUBDIR += fsbackup
SUBDIR += fsc
SUBDIR += fsearch
SUBDIR += fselect
SUBDIR += fstyp
SUBDIR += fswatch-mon
SUBDIR += ftwin
SUBDIR += fusefs-afuse
SUBDIR += fusefs-bindfs
SUBDIR += fusefs-chironfs
SUBDIR += fusefs-cryptofs
SUBDIR += fusefs-curlftpfs
SUBDIR += fusefs-encfs
SUBDIR += fusefs-exfat
SUBDIR += fusefs-ext2
SUBDIR += fusefs-funionfs
SUBDIR += fusefs-fusepak
SUBDIR += fusefs-gitfs
SUBDIR += fusefs-hfsfuse
SUBDIR += fusefs-httpdirfs
SUBDIR += fusefs-httpfs
SUBDIR += fusefs-ifuse
SUBDIR += fusefs-jmtpfs
SUBDIR += fusefs-libs
SUBDIR += fusefs-libs3
SUBDIR += fusefs-lkl
SUBDIR += fusefs-mhddfs
SUBDIR += fusefs-mp3fs
SUBDIR += fusefs-ntfs
SUBDIR += fusefs-ntfs-compression
SUBDIR += fusefs-pod
SUBDIR += fusefs-rar2fs
SUBDIR += fusefs-s3backer
SUBDIR += fusefs-s3fs
SUBDIR += fusefs-sandboxfs
SUBDIR += fusefs-securefs
SUBDIR += fusefs-simple-mtpfs
SUBDIR += fusefs-smbnetfs
SUBDIR += fusefs-sqlfs
SUBDIR += fusefs-squashfuse
SUBDIR += fusefs-sshfs
SUBDIR += fusefs-unionfs
SUBDIR += fusefs-unreliablefs
SUBDIR += fusefs-webdavfs
SUBDIR += fusefs-xfuse
SUBDIR += fusefs-zip
SUBDIR += fvcool
SUBDIR += fwup
SUBDIR += g15daemon
SUBDIR += gaffitter
SUBDIR += ganglia-monitor-core
SUBDIR += ganglia-webfrontend
SUBDIR += gapcmon
SUBDIR += garcon
SUBDIR += gather
SUBDIR += gconf-editor
SUBDIR += gdisk
SUBDIR += gdmap
SUBDIR += gdu
SUBDIR += genisoimage
SUBDIR += geomWatch
SUBDIR += getdelta
SUBDIR += geteltorito
SUBDIR += getssl
SUBDIR += gigolo
SUBDIR += gitwatch
SUBDIR += gkfreq
SUBDIR += gkleds2
SUBDIR += gkrellflynn
SUBDIR += gkrellm-trayicons
SUBDIR += gkrellm2
SUBDIR += gkrelltop
SUBDIR += gksu
SUBDIR += glogg
SUBDIR += glow
SUBDIR += gnome-control-center
SUBDIR += gnome-power-manager
SUBDIR += gnome-settings-daemon
SUBDIR += gnome-system-monitor
SUBDIR += gnome_subr
SUBDIR += go-btfs
SUBDIR += go-wtf
SUBDIR += goaccess
SUBDIR += goawk
SUBDIR += gobi_loader
SUBDIR += gomi
SUBDIR += gomplate
SUBDIR += google-compute-engine-oslogin
SUBDIR += gotop
SUBDIR += govmomi
SUBDIR += gpart
SUBDIR += graffer
SUBDIR += graveman
SUBDIR += graylog
SUBDIR += grub2-bhyve
SUBDIR += grub2-efi
SUBDIR += grub2-pcbsd
SUBDIR += gsh
SUBDIR += gsmartcontrol
SUBDIR += gstat-rs
SUBDIR += gstopd
SUBDIR += gstreamer1-plugins-cdio
SUBDIR += gtk-imonc
SUBDIR += handlr
SUBDIR += hardlink
SUBDIR += hare
SUBDIR += hared
SUBDIR += hatop
SUBDIR += hcloud
SUBDIR += hdrecover
SUBDIR += healthd
SUBDIR += heirloom
SUBDIR += helm
SUBDIR += helmfile
SUBDIR += herbe
SUBDIR += hexpeek
SUBDIR += hextools
SUBDIR += hexyl
SUBDIR += hfsexplorer
SUBDIR += hfsutils
SUBDIR += hid-tools
SUBDIR += highlnk
SUBDIR += hilite
SUBDIR += host-setup
SUBDIR += hostctl
SUBDIR += hourglass
SUBDIR += hpacucli
SUBDIR += hploscripts
SUBDIR += hptcli
SUBDIR += hs-cputype
SUBDIR += hstr
SUBDIR += htop
SUBDIR += httplog
SUBDIR += hw-probe
SUBDIR += hwstat
SUBDIR += i2c-tools
SUBDIR += i7z
SUBDIR += iat
SUBDIR += iichid
SUBDIR += immortal
SUBDIR += incron
SUBDIR += inotify-tools
SUBDIR += installwatch
SUBDIR += intel-nvmupdate
SUBDIR += intel-pcm
SUBDIR += intel-undervolt
SUBDIR += inxi
SUBDIR += ioc
SUBDIR += iocage
SUBDIR += iocage-devel
SUBDIR += iocell
SUBDIR += iograph
SUBDIR += iohyve
SUBDIR += ioping
SUBDIR += ipa
SUBDIR += ipad_charge
SUBDIR += ipdbtools
SUBDIR += ipfs-go
SUBDIR += ipfs-go-fs-repo-migrations
SUBDIR += ipget
SUBDIR += ipmitool
SUBDIR += ipsc
SUBDIR += isc-cron
SUBDIR += isomaster
SUBDIR += istatserver
SUBDIR += istio
SUBDIR += jadm
SUBDIR += jail-primer
SUBDIR += jail_exporter
SUBDIR += jailadmin
SUBDIR += jaildaemon
SUBDIR += jailme
SUBDIR += jailrc
SUBDIR += jailutils
SUBDIR += javaservicewrapper
SUBDIR += jdiskreport
SUBDIR += jdupes
SUBDIR += jest
SUBDIR += jkill
SUBDIR += jobd
SUBDIR += jps
SUBDIR += jruls
SUBDIR += jstest-gtk
SUBDIR += jtop
SUBDIR += jtopen
SUBDIR += jvmtop
SUBDIR += k3b
SUBDIR += k4dirstat
SUBDIR += k8temp
SUBDIR += k9s
SUBDIR += kbackup
SUBDIR += kcron
SUBDIR += kdeadmin
SUBDIR += kdebugsettings
SUBDIR += kdf
SUBDIR += kdialog
SUBDIR += keyboard-daemon
SUBDIR += keyd
SUBDIR += kf5-baloo
SUBDIR += kf5-kwallet
SUBDIR += kfloppy
SUBDIR += khelpcenter
SUBDIR += kiconvtool
SUBDIR += kio-fuse
SUBDIR += kldfind
SUBDIR += kldpatch
SUBDIR += kops
SUBDIR += kpmcore
SUBDIR += krename
SUBDIR += kshutdown
SUBDIR += ksystemlog
SUBDIR += kubectl
SUBDIR += kvmclock-kmod
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 += libdnf
SUBDIR += libfvde
SUBDIR += libg15
SUBDIR += libg15render
SUBDIR += libgksu
SUBDIR += libieee1284
SUBDIR += libptytty
SUBDIR += libretto-config
SUBDIR += libsunacl
SUBDIR += libsysstat
SUBDIR += libtree
SUBDIR += libudisks
SUBDIR += liburcu
SUBDIR += lineak-defaultplugin
SUBDIR += lineak-xosdplugin
SUBDIR += lineakd
SUBDIR += linrename
SUBDIR += linux-c7-dosfstools
SUBDIR += linux-c7-lttng-ust
SUBDIR += linux-c7-numactl-libs
SUBDIR += linux-c7-userspace-rcu
SUBDIR += linux-miniconda-installer
SUBDIR += linux-rkbin
SUBDIR += linuxfdisk
SUBDIR += lizardfs
SUBDIR += lmmon
SUBDIR += lmon
SUBDIR += lnav
SUBDIR += lockfile-progs
SUBDIR += loganalyzer
SUBDIR += logrotate
SUBDIR += logstalgia
SUBDIR += logstash-forwarder
SUBDIR += logstash6
SUBDIR += logstash7
SUBDIR += logtool
SUBDIR += logwatch
SUBDIR += lookat
SUBDIR += lr
SUBDIR += lsblk
SUBDIR += lscpu
SUBDIR += lsd
SUBDIR += lsof
SUBDIR += lsop
SUBDIR += lsyncd
SUBDIR += ltfs
SUBDIR += ltrace
SUBDIR += lttng-tools
SUBDIR += lttng-ust
SUBDIR += luckybackup
SUBDIR += lxinput
SUBDIR += lxqt-admin
SUBDIR += lxqt-config
SUBDIR += lxqt-policykit
SUBDIR += lxqt-powermanagement
SUBDIR += lxqt-qtplugin
SUBDIR += lxsplit
SUBDIR += lxtask
SUBDIR += lxterminal
SUBDIR += mac_nonet
SUBDIR += mac_rtprio
SUBDIR += mackerel-agent
SUBDIR += magicrescue
SUBDIR += manck
SUBDIR += mapchan
SUBDIR += mapdir
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 += mcfly
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 += mdf2iso
SUBDIR += megacli
SUBDIR += megarc
SUBDIR += memdump
SUBDIR += memfetch
SUBDIR += memtest86
SUBDIR += memtest86+
SUBDIR += memtester
SUBDIR += metalog
SUBDIR += mfid
SUBDIR += mgeupsd
SUBDIR += minikube
SUBDIR += minimunin
SUBDIR += minipot
SUBDIR += minipro
SUBDIR += minirsyslogd
SUBDIR += mixer
SUBDIR += mkdesktop
SUBDIR += mkfwimage
SUBDIR += mkjail
SUBDIR += mkntpwd
SUBDIR += mmc-utils
SUBDIR += mmve
SUBDIR += mnrpes
SUBDIR += modman
SUBDIR += modules
SUBDIR += mog
SUBDIR += monit
SUBDIR += monitord
SUBDIR += monitorix
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 += mountsmb2
SUBDIR += mping
SUBDIR += mptd
SUBDIR += msiklm
SUBDIR += msktutil
SUBDIR += mstflint
SUBDIR += mstflint-lite
SUBDIR += msyslog
SUBDIR += mtm
SUBDIR += mtpfs
SUBDIR += mtxorbd
SUBDIR += multitail
SUBDIR += munin-common
SUBDIR += munin-contrib
SUBDIR += munin-master
SUBDIR += munin-node
SUBDIR += muse
SUBDIR += mxkill
SUBDIR += mybashburn
SUBDIR += myrescue
SUBDIR += n98-magerun
SUBDIR += nagios-statd
SUBDIR += namefix
SUBDIR += nbosd
SUBDIR += ncdu
SUBDIR += ndmpd
SUBDIR += neofetch
SUBDIR += netevent
SUBDIR += nfcutils
SUBDIR += nfs-over-tls
SUBDIR += nitrogen
SUBDIR += nix
SUBDIR += nmrpflash
SUBDIR += no-login
SUBDIR += node_exporter
SUBDIR += nomad
SUBDIR += nomad-pot-driver
SUBDIR += npadmin
SUBDIR += nq
SUBDIR += nrg2iso
SUBDIR += nss_ndb
SUBDIR += nsysctl
SUBDIR += ntfy
SUBDIR += nut
SUBDIR += nut-devel
SUBDIR += nvclock
SUBDIR += nvimpager
SUBDIR += nvme-cli
SUBDIR += nvramtool
SUBDIR += oak
SUBDIR += obliterate
SUBDIR += oc
SUBDIR += odo
SUBDIR += ods2
SUBDIR += ohmu
SUBDIR += omnibackup
SUBDIR += onefetch
SUBDIR += opa
SUBDIR += open
SUBDIR += opencorsairlink
SUBDIR += opendircolors
SUBDIR += openipmi
SUBDIR += opensbi
SUBDIR += openseachest
SUBDIR += openshift-install
SUBDIR += openupsd
SUBDIR += openzfs
SUBDIR += openzfs-kmod
SUBDIR += osinfo-db-tools
SUBDIR += p5-App-Regather
SUBDIR += p5-App-RunCron
SUBDIR += p5-App-ZFSCurses
SUBDIR += p5-BSD-Jail-Object
SUBDIR += p5-BSD-Process
SUBDIR += p5-BSD-Sysctl
SUBDIR += p5-BSD-getloadavg
SUBDIR += p5-BackupPC-XS
SUBDIR += p5-Brackup
SUBDIR += p5-Device-RAID-Poller
SUBDIR += p5-Dir-Purge
SUBDIR += p5-File-BackupCopy
SUBDIR += p5-File-Cmp
SUBDIR += p5-File-DirCompare
SUBDIR += p5-File-Listing
SUBDIR += p5-File-Log
SUBDIR += p5-File-Next
SUBDIR += p5-File-Rename
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-Filesys-ZFS
SUBDIR += p5-Filesys-ZFS-Stat
SUBDIR += p5-Fuse
SUBDIR += p5-Fuse-Simple
SUBDIR += p5-Giovanni
SUBDIR += p5-Iterator-File
SUBDIR += p5-Lchown
SUBDIR += p5-Linux-Cpuinfo
SUBDIR += p5-Log-Colorize-Helper
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-Proc-ProcessTable-Colorizer
SUBDIR += p5-Proc-ProcessTable-InfoString
SUBDIR += p5-Proc-ProcessTable-Match
SUBDIR += p5-Proc-ProcessTable-ncps
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-arclog
SUBDIR += p5-reslog
SUBDIR += packer
SUBDIR += packmule
SUBDIR += pacman
SUBDIR += paicc
SUBDIR += paladin
SUBDIR += pam_mount
SUBDIR += pam_xdg
SUBDIR += panicmail
SUBDIR += parafly
SUBDIR += parallel
SUBDIR += parkverbot
SUBDIR += pass-otp
SUBDIR += pass-secrets
SUBDIR += pass-update
SUBDIR += password-store
SUBDIR += passwordsafe
SUBDIR += patchelf
SUBDIR += pax-utils
SUBDIR += pbimaker
SUBDIR += pc-networkmanager
SUBDIR += pcapfix
SUBDIR += pciutils
SUBDIR += pcpustat
SUBDIR += pdixtract
SUBDIR += pdsh
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-proctitle
SUBDIR += pefs-kmod
SUBDIR += perp
SUBDIR += personality
SUBDIR += pesign
SUBDIR += pfetch
SUBDIR += pflogx
SUBDIR += pfstat
SUBDIR += pftables
SUBDIR += pftop
SUBDIR += php74-fileinfo
SUBDIR += php74-posix
SUBDIR += php80-fileinfo
SUBDIR += php80-posix
SUBDIR += php81-fileinfo
SUBDIR += php81-posix
SUBDIR += phybs
SUBDIR += pick
SUBDIR += pidof
SUBDIR += pies
SUBDIR += pipemeter
SUBDIR += plasma-pass
SUBDIR += plasma5-discover
SUBDIR += plasma5-drkonqi
SUBDIR += plasma5-kde-cli-tools
SUBDIR += plasma5-kinfocenter
SUBDIR += plasma5-kmenuedit
SUBDIR += plasma5-ksysguard
SUBDIR += plasma5-ksystemstats
SUBDIR += plasma5-libksysguard
SUBDIR += plasma5-plasma-disks
SUBDIR += plasma5-plasma-systemmonitor
SUBDIR += plasma5-polkit-kde-agent-1
SUBDIR += plasma5-powerdevil
SUBDIR += plasma5-systemsettings
SUBDIR += plconfig
SUBDIR += pmt
SUBDIR += pnscan
SUBDIR += polkit
SUBDIR += polkit-gnome
SUBDIR += polkit-qt
SUBDIR += pot
SUBDIR += potnet
SUBDIR += powerdxx
SUBDIR += powerman
SUBDIR += powermon
SUBDIR += pp
SUBDIR += pprotectd
SUBDIR += prips
SUBDIR += procenv
SUBDIR += procmap
SUBDIR += progsreiserfs
SUBDIR += pslist
SUBDIR += psmisc
SUBDIR += pstack
SUBDIR += pstacku
SUBDIR += pstree
SUBDIR += puppet-lint
SUBDIR += puppet-mode.el
SUBDIR += puppet6
SUBDIR += puppet7
SUBDIR += puppetserver6
SUBDIR += puppetserver7
SUBDIR += pv
SUBDIR += pwd_unmkdb
SUBDIR += pwgen
SUBDIR += pwol
SUBDIR += pwsafe
SUBDIR += pxattr
SUBDIR += pxp-agent
SUBDIR += py-ansible-base
SUBDIR += py-ansible-core
SUBDIR += py-ansible-core211
SUBDIR += py-ansible-lint
SUBDIR += py-ansible-runner
SUBDIR += py-azure-cli
SUBDIR += py-azure-cli-acr
SUBDIR += py-azure-cli-base
SUBDIR += py-azure-cli-core
SUBDIR += py-azure-cli-telemetry
SUBDIR += py-bitrot
SUBDIR += py-borgmatic
SUBDIR += py-concurrent-log-handler
SUBDIR += py-cron-descriptor
SUBDIR += py-croniter
SUBDIR += py-dict-toolbox
SUBDIR += py-diffoscope
SUBDIR += py-dirsync
SUBDIR += py-distro
SUBDIR += py-dlipower
SUBDIR += py-docker
SUBDIR += py-drmaa
SUBDIR += py-execnet
SUBDIR += py-filelike
SUBDIR += py-filelock
SUBDIR += py-focker
SUBDIR += py-glances
SUBDIR += py-google-compute-engine
SUBDIR += py-hared
SUBDIR += py-hcloud
SUBDIR += py-honcho
SUBDIR += py-hpilo
SUBDIR += py-iowait
SUBDIR += py-ioztat
SUBDIR += py-jailconf
SUBDIR += py-leviathan
SUBDIR += py-liquidctl
SUBDIR += py-mitogen
SUBDIR += py-mqttwarn
SUBDIR += py-nagiosplugin
SUBDIR += py-packet-python
SUBDIR += py-pkginfo
SUBDIR += py-ploy
SUBDIR += py-ploy_ezjail
SUBDIR += py-plumbum
SUBDIR += py-power
SUBDIR += py-prometheus-zfs
SUBDIR += py-psutil
SUBDIR += py-psutil121
SUBDIR += py-ptyprocess
SUBDIR += py-puremagic
SUBDIR += py-py-cpuinfo
SUBDIR += py-python-consul
SUBDIR += py-python-consul2
SUBDIR += py-python-crontab
SUBDIR += py-python-nomad
SUBDIR += py-pytsk
SUBDIR += py-pywatchman
SUBDIR += py-pyznap
SUBDIR += py-qmk
SUBDIR += py-queuelib
SUBDIR += py-ranger
SUBDIR += py-rdiff-backup
SUBDIR += py-resolve-march-native
SUBDIR += py-salt
SUBDIR += py-scandir
SUBDIR += py-scarab
SUBDIR += py-supervisor
SUBDIR += py-tarsnapper
SUBDIR += py-tmuxp
SUBDIR += py-upt
SUBDIR += py-upt-cpan
SUBDIR += py-upt-freebsd
SUBDIR += py-upt-pypi
SUBDIR += py-upt-rubygems
SUBDIR += py-uptime
SUBDIR += py-zdaemon
SUBDIR += py-zfs-autobackup
SUBDIR += pydf
SUBDIR += qchroot
SUBDIR += qdirstat
SUBDIR += qjail
SUBDIR += qjail54
SUBDIR += qlogtools
SUBDIR += qsudo
SUBDIR += qt5-qtdiag
SUBDIR += qt5-qtpaths
SUBDIR += qt5-qtplugininfo
SUBDIR += qtpass
SUBDIR += quickjail
SUBDIR += quicksynergy
SUBDIR += racktables
SUBDIR += radeontool
SUBDIR += radeontop
SUBDIR += radmind
SUBDIR += rainbarf
SUBDIR += raincoat
SUBDIR += rcadm
SUBDIR += rclean
SUBDIR += rcm
SUBDIR += rdate
SUBDIR += rdup
SUBDIR += read-edid
SUBDIR += recoverdm
SUBDIR += reed
SUBDIR += reggae
SUBDIR += rej
SUBDIR += relaxconf
SUBDIR += rename
SUBDIR += renameutils
SUBDIR += reoback
SUBDIR += reptyr
SUBDIR += respond
SUBDIR += rest-server
SUBDIR += restic
SUBDIR += retail
SUBDIR += rex
SUBDIR += rhc
SUBDIR += rinse
SUBDIR += rmlint
SUBDIR += rocinante
SUBDIR += rocr
SUBDIR += roct
SUBDIR += root-tail
SUBDIR += rovclock
SUBDIR += rpi-firmware
SUBDIR += rset
SUBDIR += rsfetch
SUBDIR += rshim-user-space
SUBDIR += rsnapshot
SUBDIR += rsyncbackup
SUBDIR += rsyncrypto
SUBDIR += rsyslog8
SUBDIR += rtsx-kmod
SUBDIR += rtty
SUBDIR += rubygem-backup
SUBDIR += rubygem-bolt
SUBDIR += rubygem-bosh-gen
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-bin
SUBDIR += rubygem-chef-cleanroom
SUBDIR += rubygem-chef-config
SUBDIR += rubygem-chef-telemetry
SUBDIR += rubygem-chef-utils
SUBDIR += rubygem-chef-vault
SUBDIR += rubygem-chef-zero
SUBDIR += rubygem-choria-mcorpc-support
SUBDIR += rubygem-facter
SUBDIR += rubygem-fluent-mixin-plaintextformatter
SUBDIR += rubygem-fluent-plugin-config-expander
SUBDIR += rubygem-fluent-plugin-file-alternative
SUBDIR += rubygem-fluent-plugin-tail-asis
SUBDIR += rubygem-fluentd
SUBDIR += rubygem-fssm
SUBDIR += rubygem-god
SUBDIR += rubygem-guard
SUBDIR += rubygem-guard-compat
SUBDIR += rubygem-guard-cucumber
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-hieracles
SUBDIR += rubygem-httplog
SUBDIR += rubygem-itamae
SUBDIR += rubygem-librarian-puppet
SUBDIR += rubygem-license-acceptance
SUBDIR += rubygem-license_scout
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-puppetfile-resolver
SUBDIR += rubygem-puppetserver-ca
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-vagrant_cloud
SUBDIR += rubygem-vmstat
SUBDIR += rubygem-win32-file
SUBDIR += rubygem-win32-file-security
SUBDIR += rubygem-win32-file-stat
SUBDIR += rubygem-winrm
SUBDIR += rubygem-winrm-elevated
SUBDIR += rubygem-winrm-fs
SUBDIR += rubygem-yell
SUBDIR += rundeck2
SUBDIR += rundeck3
SUBDIR += runit
SUBDIR += runit-faster
SUBDIR += runj
SUBDIR += runwhen
SUBDIR += rush
SUBDIR += rw
SUBDIR += s-tui
SUBDIR += s6
SUBDIR += s6-rc
SUBDIR += safe-rm
SUBDIR += safecat
SUBDIR += safecopy
SUBDIR += samdruckerclientshell
SUBDIR += samefile
SUBDIR += samesame
SUBDIR += sanoid
SUBDIR += sanoid-devel
SUBDIR += sas2ircu
SUBDIR += sas3ircu
SUBDIR += savelogs
SUBDIR += scalpel
SUBDIR += scan_ffs
SUBDIR += scanbuttond
SUBDIR += scanmem
SUBDIR += scct
SUBDIR += schedutils
SUBDIR += schilyutils
SUBDIR += screen
SUBDIR += screenfetch
SUBDIR += screenfetch-nox11
SUBDIR += screenie
SUBDIR += scterc
SUBDIR += sd-agent
SUBDIR += sdparm
SUBDIR += seatd
SUBDIR += seatools
SUBDIR += sec
SUBDIR += sensu-go
SUBDIR += serf
SUBDIR += setcdboot
SUBDIR += setsid
SUBDIR += sg3_utils
SUBDIR += shim
SUBDIR += shlock
SUBDIR += shmcat
SUBDIR += shuf
SUBDIR += siegfried
SUBDIR += signon-kwallet-extension
SUBDIR += signon-plugin-oauth2
SUBDIR += signon-qt5
SUBDIR += signon-ui
SUBDIR += slack
SUBDIR += sleuthkit
SUBDIR += slst
SUBDIR += slurm-wlm
SUBDIR += smart
SUBDIR += smartmontools
SUBDIR += smenu
SUBDIR += smp_utils
SUBDIR += smug
SUBDIR += snap
SUBDIR += snapraid
SUBDIR += snmp_exporter
SUBDIR += snooze
SUBDIR += sockaddr
SUBDIR += socket
SUBDIR += socklog
SUBDIR += solaar
SUBDIR += spcm
SUBDIR += spindown
SUBDIR += spinner
SUBDIR += spiped
SUBDIR += squashfs-tools
SUBDIR += ssd_report
SUBDIR += sshsudo
SUBDIR += ssync
SUBDIR += stalepid
SUBDIR += stepsync
SUBDIR += storcli
SUBDIR += stow
SUBDIR += stowES
SUBDIR += stress
SUBDIR += stressdisk
SUBDIR += superiotool
SUBDIR += swapd
SUBDIR += swapexd
SUBDIR += swapmon
SUBDIR += swapusage
SUBDIR += sweeper
SUBDIR += symlinks
SUBDIR += symon
SUBDIR += synergy
SUBDIR += sysctlbyname-improved-kmod
SUBDIR += sysctlinfo-kmod
SUBDIR += sysgather
SUBDIR += sysinfo
SUBDIR += syslinux
SUBDIR += syslog-ng
SUBDIR += syslogger
SUBDIR += sysrc
SUBDIR += sysvbanner
SUBDIR += tai64nfrac
SUBDIR += tarsnap
SUBDIR += tarsnap-gui
SUBDIR += tarsnap-periodic
SUBDIR += tartarus
SUBDIR += tbku
SUBDIR += tclsyslog
SUBDIR += tcplist
SUBDIR += tdir
SUBDIR += tealdeer
SUBDIR += tenshi
SUBDIR += terraform
SUBDIR += terraform-docs
SUBDIR += terraform-provider-gridscale
SUBDIR += terraform-provider-vultr
SUBDIR += terraform-switcher
SUBDIR += terragrunt
SUBDIR += testdisk
SUBDIR += tflint
SUBDIR += thefish
SUBDIR += timelimit
SUBDIR += timemon
SUBDIR += tiramisu
SUBDIR += titlefix
SUBDIR += tkdvd
SUBDIR += tlsdate
SUBDIR += tm
SUBDIR += tmate
SUBDIR += tmate-ssh-server
SUBDIR += tmpreaper
SUBDIR += tmpwatch
SUBDIR += tmux
SUBDIR += tmux-mem-cpu-load
SUBDIR += tmux23
SUBDIR += topless
SUBDIR += torque
SUBDIR += toshctl
SUBDIR += toybox
SUBDIR += tracker
SUBDIR += tracker-miners
SUBDIR += tracker3
SUBDIR += tree
SUBDIR += triton
SUBDIR += trueos-libqt5
SUBDIR += ts
SUBDIR += tty-clock
SUBDIR += ttyd
SUBDIR += ttyload
SUBDIR += tuptime
SUBDIR += turbostat
SUBDIR += tw_cli
SUBDIR += twmn
SUBDIR += tzdialog
SUBDIR += u-boot-a13-olinuxino
SUBDIR += u-boot-a64-olinuxino
SUBDIR += u-boot-bananapi
SUBDIR += u-boot-bananapim2
SUBDIR += u-boot-beaglebone
SUBDIR += u-boot-chip
SUBDIR += u-boot-clearfog
SUBDIR += u-boot-cubieboard
SUBDIR += u-boot-cubieboard2
SUBDIR += u-boot-cubox-hummingboard
SUBDIR += u-boot-firefly-rk3399
SUBDIR += u-boot-imx-serial-loader
SUBDIR += u-boot-master
SUBDIR += u-boot-nanopi-a64
SUBDIR += u-boot-nanopi-m1plus
SUBDIR += u-boot-nanopi-neo
SUBDIR += u-boot-nanopi-neo-air
SUBDIR += u-boot-nanopi-neo2
SUBDIR += u-boot-nanopi-r4s
SUBDIR += u-boot-olimex-a20-som-evb
SUBDIR += u-boot-olinuxino-lime
SUBDIR += u-boot-olinuxino-lime2
SUBDIR += u-boot-olinuxino-lime2-emmc
SUBDIR += u-boot-orangepi-one
SUBDIR += u-boot-orangepi-pc
SUBDIR += u-boot-orangepi-pc-plus
SUBDIR += u-boot-orangepi-pc2
SUBDIR += u-boot-orangepi-plus-2e
SUBDIR += u-boot-orangepi-r1
SUBDIR += u-boot-orangepi-zero
SUBDIR += u-boot-orangepi-zero-plus
SUBDIR += u-boot-pandaboard
SUBDIR += u-boot-pcduino3
SUBDIR += u-boot-pine-h64
SUBDIR += u-boot-pine64
SUBDIR += u-boot-pine64-lts
SUBDIR += u-boot-pinebook
SUBDIR += u-boot-pinebookpro
SUBDIR += u-boot-qemu-arm
SUBDIR += u-boot-qemu-arm64
SUBDIR += u-boot-qemu-riscv64
SUBDIR += u-boot-riotboard
SUBDIR += u-boot-rock-pi-4
SUBDIR += u-boot-rock64
SUBDIR += u-boot-rockpro64
SUBDIR += u-boot-rpi
SUBDIR += u-boot-rpi-0-w
SUBDIR += u-boot-rpi-arm64
SUBDIR += u-boot-rpi2
SUBDIR += u-boot-rpi3
SUBDIR += u-boot-rpi3-32
SUBDIR += u-boot-rpi4
SUBDIR += u-boot-sifive-fu540
SUBDIR += u-boot-sinovoip-bpi-m3
SUBDIR += u-boot-sopine
SUBDIR += u-boot-sopine-spi
SUBDIR += u-boot-tools
SUBDIR += u-boot-utilite
SUBDIR += u-boot-wandboard
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 += uefi-edk2-qemu
SUBDIR += ufetch
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 += usbtop
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 += vector
SUBDIR += viddy
SUBDIR += videogen
SUBDIR += vii
SUBDIR += vils
SUBDIR += vimpager
SUBDIR += virt-what
SUBDIR += virtualmin
SUBDIR += vivid
SUBDIR += vm-bhyve
SUBDIR += vmdktool
SUBDIR += vmtouch
SUBDIR += vobcopy
SUBDIR += volman
SUBDIR += vordog
SUBDIR += vpnc-scripts
SUBDIR += vttest
SUBDIR += vzvol
SUBDIR += wait_on
SUBDIR += watchfolder
SUBDIR += watchman
SUBDIR += watchmen
SUBDIR += webjob
SUBDIR += webmin
SUBDIR += weedit
SUBDIR += wemux
SUBDIR += whatpix
SUBDIR += whowatch
SUBDIR += wiimms
SUBDIR += wimlib
SUBDIR += wmapmload
SUBDIR += wmbluecpu
SUBDIR += wmbsdbatt
SUBDIR += wmcpuload
SUBDIR += wmcube
SUBDIR += wmdiskmon
SUBDIR += wmflame
SUBDIR += wmmemfree
SUBDIR += wmmemload
SUBDIR += wmscript
SUBDIR += wmtop
SUBDIR += wmupmon
SUBDIR += worldtools
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-places-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 += xmbmon
SUBDIR += xorriso
SUBDIR += xosview
SUBDIR += xpipe
SUBDIR += xstow
SUBDIR += xsysstats
SUBDIR += xvidcap
SUBDIR += yadm
SUBDIR += yank
SUBDIR += z
SUBDIR += zap
SUBDIR += zbackup
SUBDIR += zeitgeist
SUBDIR += zellij
SUBDIR += zeroer
SUBDIR += zetaback
SUBDIR += zetaback-devel
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 += zoxide
SUBDIR += zpool-iostat-viz
SUBDIR += zrep
SUBDIR += zrepl
SUBDIR += zsd
SUBDIR += zsm
SUBDIR += ztop
SUBDIR += zxfer
.include <bsd.port.subdir.mk>
|