forked from freebsd/freebsd-ports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
1707 lines (1705 loc) · 42.4 KB
/
Makefile
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
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 += afflib
SUBDIR += afio
SUBDIR += agedu
SUBDIR += ah-tty
SUBDIR += aimage
SUBDIR += aird
SUBDIR += alfio
SUBDIR += am-utils
SUBDIR += amazon-ssm-agent
SUBDIR += amazon-ssm-plugin
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 += anvil
SUBDIR += apache-mesos
SUBDIR += apachetop
SUBDIR += apcctrl
SUBDIR += apcpwr
SUBDIR += apcupsd
SUBDIR += appjail
SUBDIR += appjail-devel
SUBDIR += apt-mirror-devel
SUBDIR += aptly
SUBDIR += arc_summary
SUBDIR += arcconf
SUBDIR += archey4
SUBDIR += archivemount
SUBDIR += ascpu
SUBDIR += asfsm
SUBDIR += asmctl
SUBDIR += asmem
SUBDIR += asusoled
SUBDIR += async
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 += autorestic
SUBDIR += avfs
SUBDIR += azure-agent
SUBDIR += b2sum
SUBDIR += b3sum
SUBDIR += b43-fwcutter
SUBDIR += backdown
SUBDIR += backuppc
SUBDIR += backuppc-devel
SUBDIR += backuppc4
SUBDIR += backupuser
SUBDIR += bacnet-stack-apps
SUBDIR += bacula-libs3
SUBDIR += bacula11-client
SUBDIR += bacula11-client-static
SUBDIR += bacula11-docs
SUBDIR += bacula11-server
SUBDIR += bacula13-client
SUBDIR += bacula13-client-static
SUBDIR += bacula13-docs
SUBDIR += bacula13-server
SUBDIR += bacula15-client
SUBDIR += bacula15-client-static
SUBDIR += bacula15-docs
SUBDIR += bacula15-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 += bareos20-client
SUBDIR += bareos20-server
SUBDIR += bareos20-traymonitor
SUBDIR += bareos21-client
SUBDIR += bareos21-server
SUBDIR += bareos21-traymonitor
SUBDIR += bareos22-client
SUBDIR += bareos22-server
SUBDIR += bareos22-traymonitor
SUBDIR += barrier
SUBDIR += bashtop
SUBDIR += bastille
SUBDIR += batmon
SUBDIR += batterycat
SUBDIR += battmond
SUBDIR += battray
SUBDIR += bchunk
SUBDIR += beadm
SUBDIR += beadm-devel
SUBDIR += beats7
SUBDIR += beats8
SUBDIR += bfs
SUBDIR += bhyve+
SUBDIR += bhyve-firmware
SUBDIR += bhyve-rc
SUBDIR += biosfont
SUBDIR += bkpupsd
SUBDIR += bksh
SUBDIR += bkt
SUBDIR += blisp
SUBDIR += bmd
SUBDIR += bmd-plugin-avahi
SUBDIR += bmd-plugin-hookcmd
SUBDIR += boot-extract
SUBDIR += bottom
SUBDIR += bpytop
SUBDIR += brasero
SUBDIR += brename
SUBDIR += brut
SUBDIR += bsd-splash-changer
SUBDIR += bsdconfig
SUBDIR += bsdcrashtar
SUBDIR += bsdebfetch
SUBDIR += bsdfan
SUBDIR += bsdhwmon
SUBDIR += bsdinfo
SUBDIR += bsdisks
SUBDIR += bsdstats
SUBDIR += bstack
SUBDIR += btop
SUBDIR += btsixad
SUBDIR += budgie-control-center
SUBDIR += buildah
SUBDIR += bulk_extractor
SUBDIR += bupstash
SUBDIR += burp
SUBDIR += burp-devel
SUBDIR += busybox
SUBDIR += bvm
SUBDIR += byobu
SUBDIR += calamares
SUBDIR += cardano-cli
SUBDIR += catatonit
SUBDIR += catfish
SUBDIR += catsit
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-lts
SUBDIR += cfengine-masterfiles
SUBDIR += cfengine-masterfiles-devel
SUBDIR += cfengine-masterfiles-lts
SUBDIR += cfengine-masterfiles321
SUBDIR += cfengine-masterfiles322
SUBDIR += cfengine-masterfiles323
SUBDIR += cfengine321
SUBDIR += cfengine322
SUBDIR += cfengine323
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 += cloud-nuke
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 += conmon
SUBDIR += conserve
SUBDIR += consolehm
SUBDIR += consolekit2
SUBDIR += consul
SUBDIR += consul-alerts
SUBDIR += consul-replicate
SUBDIR += consul_exporter
SUBDIR += container-diff
SUBDIR += containerd
SUBDIR += containers-common
SUBDIR += contractor
SUBDIR += copytape
SUBDIR += coreos-ct
SUBDIR += coreutils
SUBDIR += cpdup
SUBDIR += cpu-microcode
SUBDIR += cpu-microcode-amd
SUBDIR += cpu-microcode-intel
SUBDIR += cpu-microcode-rc
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 += darling-dmg
SUBDIR += datadog-agent
SUBDIR += datadog-integrations
SUBDIR += dateutils
SUBDIR += dc3dd
SUBDIR += dcfldd
SUBDIR += dd_rescue
SUBDIR += ddh
SUBDIR += ddpt
SUBDIR += ddrescue
SUBDIR += debhelper
SUBDIR += debootstrap
SUBDIR += deltarpm
SUBDIR += deltup
SUBDIR += desktop-installer
SUBDIR += detox
SUBDIR += devctl-jail-kmod
SUBDIR += devd-mount
SUBDIR += devedeng
SUBDIR += devstat
SUBDIR += dfc
SUBDIR += di
SUBDIR += diffoci
SUBDIR += digdag
SUBDIR += dim
SUBDIR += dirdiff
SUBDIR += direnv
SUBDIR += direvent
SUBDIR += dirvish
SUBDIR += discus
SUBDIR += diskcheckd
SUBDIR += diskimage-tools
SUBDIR += diskonaut
SUBDIR += diskscrub
SUBDIR += diskus
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 += dutree
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 += dynamic_motd
SUBDIR += e2fsprogs
SUBDIR += e2fsprogs-core
SUBDIR += e2tools
SUBDIR += ebsnvme-id
SUBDIR += ec2-scripts
SUBDIR += eclat
SUBDIR += edid-decode
SUBDIR += edk2
SUBDIR += egress-monitor
SUBDIR += eject
SUBDIR += eksctl
SUBDIR += endian
SUBDIR += enteruser
SUBDIR += entr
SUBDIR += env4801
SUBDIR += envconsul
SUBDIR += epazote
SUBDIR += equinix-metal-cli
SUBDIR += erdtree
SUBDIR += etcmerge
SUBDIR += ethname
SUBDIR += evhz
SUBDIR += evisum
SUBDIR += evtviewer
SUBDIR += exa
SUBDIR += exfat-utils
SUBDIR += extipl
SUBDIR += eza
SUBDIR += ezjail
SUBDIR += f2
SUBDIR += f3
SUBDIR += facter
SUBDIR += fakertc
SUBDIR += faketty
SUBDIR += fand
SUBDIR += fanout
SUBDIR += fastfetch
SUBDIR += fatback
SUBDIR += fclones
SUBDIR += fcode-utils
SUBDIR += fconfig
SUBDIR += fcron
SUBDIR += fd
SUBDIR += fdupes
SUBDIR += fetchlog
SUBDIR += file
SUBDIR += filedupe
SUBDIR += filelight
SUBDIR += filemon
SUBDIR += fileprune
SUBDIR += fileschanged
SUBDIR += filetype
SUBDIR += filevercmp
SUBDIR += filewatcherd
SUBDIR += finfo
SUBDIR += firstboot-cloudsetup
SUBDIR += firstboot-freebsd-update
SUBDIR += firstboot-pkgs
SUBDIR += flasher
SUBDIR += flashrom
SUBDIR += flexbackup
SUBDIR += flipperbit
SUBDIR += flock
SUBDIR += flog
SUBDIR += flowgger
SUBDIR += fluent-bit
SUBDIR += fluxengine
SUBDIR += fonteditfs
SUBDIR += foremost
SUBDIR += fortunelock
SUBDIR += fpart
SUBDIR += frand
SUBDIR += freebsd-bsdlabel
SUBDIR += freebsd-fdisk
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-nbt
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 += fx
SUBDIR += g15daemon
SUBDIR += gaffitter
SUBDIR += ganglia-monitor-core
SUBDIR += gapcmon
SUBDIR += garcon
SUBDIR += gather
SUBDIR += gconf-editor
SUBDIR += gcp-ops-agent
SUBDIR += gdisk
SUBDIR += gdmap
SUBDIR += gdu
SUBDIR += genimage
SUBDIR += genisoimage
SUBDIR += getdelta
SUBDIR += geteltorito
SUBDIR += getssl
SUBDIR += gh-md-toc
SUBDIR += gigolo
SUBDIR += gitwatch
SUBDIR += gkfreq
SUBDIR += gkleds2
SUBDIR += gkrellflynn
SUBDIR += gkrellm-trayicons
SUBDIR += gkrellm2
SUBDIR += gkrelltop
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-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 += hammer2
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 += httm
SUBDIR += httplog
SUBDIR += hw-probe
SUBDIR += hwstat
SUBDIR += i2c-tools
SUBDIR += i7z
SUBDIR += iat
SUBDIR += imgurbash2
SUBDIR += immortal
SUBDIR += incron
SUBDIR += initool
SUBDIR += inotify-tools
SUBDIR += installwatch
SUBDIR += intel-epct
SUBDIR += intel-nvmupdate-100g
SUBDIR += intel-nvmupdate-10g
SUBDIR += intel-nvmupdate-40g
SUBDIR += intel-pcm
SUBDIR += intel-undervolt
SUBDIR += inxi
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 += ipmi_exporter
SUBDIR += ipmitool
SUBDIR += ipsc
SUBDIR += isc-cron
SUBDIR += isomaster
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 += jps
SUBDIR += jruls
SUBDIR += jstest-gtk
SUBDIR += jtop
SUBDIR += jtopen
SUBDIR += jvmtop
SUBDIR += k3b
SUBDIR += k4dirstat
SUBDIR += k8temp
SUBDIR += k9s
SUBDIR += kapp
SUBDIR += kbackup
SUBDIR += kcron
SUBDIR += kdeadmin
SUBDIR += kdebugsettings
SUBDIR += kdf
SUBDIR += kdialog
SUBDIR += keyboard-daemon
SUBDIR += keyd
SUBDIR += kf5-baloo
SUBDIR += kf5-kwallet
SUBDIR += kf6-baloo
SUBDIR += kf6-kuserfeedback
SUBDIR += kf6-kwallet
SUBDIR += khelpcenter
SUBDIR += kiconvtool
SUBDIR += kio-fuse
SUBDIR += kldfind
SUBDIR += kldpatch
SUBDIR += kopia
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 += libdisplay-info
SUBDIR += libdnf
SUBDIR += libfvde
SUBDIR += libg15
SUBDIR += libg15render
SUBDIR += libieee1284
SUBDIR += libptytty
SUBDIR += libretto-config
SUBDIR += libsunacl
SUBDIR += libsysstat
SUBDIR += libtpms
SUBDIR += libtree
SUBDIR += libudisks
SUBDIR += liburcu
SUBDIR += limine
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 += logstash7
SUBDIR += logstash8
SUBDIR += logtool
SUBDIR += logwatch
SUBDIR += loki
SUBDIR += lookat
SUBDIR += lr
SUBDIR += lsblk
SUBDIR += lscpu
SUBDIR += lsd
SUBDIR += lsof
SUBDIR += lsop
SUBDIR += lsyncd
SUBDIR += ltfs
SUBDIR += ltrace
SUBDIR += lttng-ust
SUBDIR += lua-puremagic
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 += mcron
SUBDIR += mcweject
SUBDIR += mdf2iso
SUBDIR += megacli
SUBDIR += megarc
SUBDIR += memdump
SUBDIR += memfetch
SUBDIR += memtest86
SUBDIR += memtest86+
SUBDIR += memtester
SUBDIR += metalog
SUBDIR += mfid
SUBDIR += minikube
SUBDIR += minimunin
SUBDIR += minipot
SUBDIR += minipro
SUBDIR += minirsyslogd
SUBDIR += mise
SUBDIR += mixer
SUBDIR += mkdesktop
SUBDIR += mkfwimage
SUBDIR += mkjail
SUBDIR += mkntpwd
SUBDIR += mmc-utils
SUBDIR += mmve
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 += mprocs
SUBDIR += mptd
SUBDIR += msiklm
SUBDIR += msktutil
SUBDIR += mstflint
SUBDIR += mtm
SUBDIR += mtpfs
SUBDIR += mtxorbd
SUBDIR += multitail
SUBDIR += munin-common
SUBDIR += munin-contrib
SUBDIR += munin-master
SUBDIR += munin-node
SUBDIR += mxkill
SUBDIR += mybashburn
SUBDIR += myrescue
SUBDIR += n98-magerun
SUBDIR += nagios-statd
SUBDIR += namefix
SUBDIR += nbosd
SUBDIR += ncdu
SUBDIR += ncdu2
SUBDIR += ndmpd
SUBDIR += neofetch
SUBDIR += nerdctl
SUBDIR += netevent
SUBDIR += nfcutils
SUBDIR += nitrogen
SUBDIR += nix
SUBDIR += nmdaemon
SUBDIR += nmrpflash
SUBDIR += no-login
SUBDIR += node_exporter
SUBDIR += nomad
SUBDIR += nomad-pot-driver
SUBDIR += npadmin
SUBDIR += npmount
SUBDIR += nq
SUBDIR += nrg2iso
SUBDIR += nss_ndb
SUBDIR += nsysctl
SUBDIR += ntfs2btrfs
SUBDIR += ntfy
SUBDIR += ntpstat
SUBDIR += nut
SUBDIR += nut-devel
SUBDIR += nut_exporter
SUBDIR += nvclock
SUBDIR += nvimpager
SUBDIR += nvme-cli
SUBDIR += nvramtool
SUBDIR += oak
SUBDIR += obliterate
SUBDIR += oc
SUBDIR += ocijail
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 += opentofu
SUBDIR += openupsd
SUBDIR += openzfs
SUBDIR += openzfs-kmod
SUBDIR += orch
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-Command-Runner
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-POSIX-Run-Capture
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-RundeckAPI
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_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 += pcns
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