Page MenuHomeFreeBSD

D56474.diff
No OneTemporary

D56474.diff

This file is larger than 256 KB, so syntax highlighting was skipped.
diff --git a/Makefile.inc1 b/Makefile.inc1
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -774,6 +774,7 @@
MK_HTML=no \
MK_MAN=no \
MK_RETPOLINE=no \
+ MK_SBOM=no \
MK_SSP=no \
MK_TESTS=no \
MK_UBSAN=no \
@@ -3065,10 +3066,17 @@
_ar=usr.bin/ar
.endif
+.if ${MK_PKGCONF} != "no"
+_sbom= lib/libpkgconf \
+ usr.bin/bomtool \
+ usr.bin/spdxtool
+.endif
+
cross-tools: .MAKE .PHONY
.for _tool in \
${LOCAL_XTOOL_DIRS} \
${_ar} \
+ ${_sbom} \
${_clang_libs} \
${_clang} \
${_lld} \
@@ -3960,7 +3968,7 @@
NOFUN=-DNO_FSCHG MK_HTML=no \
MK_MAN=no MK_NLS=no \
- MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no MK_WERROR=no \
+ MK_KERBEROS=no MK_RESCUE=no MK_SBOM=no MK_TESTS=no MK_WERROR=no \
TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
CPUTYPE=${XDEV_CPUTYPE}
diff --git a/etc/mtree/BSD.usr.dist b/etc/mtree/BSD.usr.dist
--- a/etc/mtree/BSD.usr.dist
+++ b/etc/mtree/BSD.usr.dist
@@ -837,6 +837,12 @@
triggers
..
..
+ sbom
+ spdx-2.2
+ ..
+ spdx-3.0.1
+ ..
+ ..
security
..
sendmail
diff --git a/lib/libpkgconf/Makefile b/lib/libpkgconf/Makefile
--- a/lib/libpkgconf/Makefile
+++ b/lib/libpkgconf/Makefile
@@ -42,6 +42,11 @@
CFLAGS+= -DSYSTEM_INCLUDEDIR=\"/usr/include\"
CFLAGS+= -DSYSTEM_LIBDIR=\"/usr/lib\"
CFLAGS+= -I${SRCTOP}/lib/libpkgconf -I${PKGCONFDIR}
+.if defined(TOOLS_PREFIX)
+# for sane defaults when cross-compiling for bomtool(1) and spdxtool(1)
+CFLAGS+= -DPERSONALITY_PATH=\"/usr/share/pkgconfig/personality.d:/etc/pkgconfig/personality.d:${LOCALBASE:U/usr/local}/etc/pkgconfig/personality.d\"
+CFLAGS+= -DPKG_DEFAULT_PATH=\"${LOCALBASE:U/usr/local}/libdata/pkgconfig:/usr/libdata/pkgconfig:${LOCALBASE:U/usr/local}/share/pkgconfig\"
+.endif
.PATH: ${PKGCONFDIR}/libpkgconf
.PATH: ${PKGCONFDIR}/man
diff --git a/share/mk/bsd.README b/share/mk/bsd.README
--- a/share/mk/bsd.README
+++ b/share/mk/bsd.README
@@ -43,6 +43,7 @@
bsd.port.subdir.mk - targets for building subdirectories for ports
bsd.prog.mk - building programs from source files
bsd.progs.mk - build multiple programs from sources
+bsd.sbom.mk - generate SBOM artefacts from pkg-config definitions
bsd.snmpmod.mk - building modules for the SNMP daemon bsnmpd
bsd.subdir.mk - targets for building subdirectories
bsd.sys.mk - common settings used for building FreeBSD sources
diff --git a/share/mk/bsd.lib.mk b/share/mk/bsd.lib.mk
--- a/share/mk/bsd.lib.mk
+++ b/share/mk/bsd.lib.mk
@@ -527,3 +527,4 @@
.include <bsd.clang-analyze.mk>
.include <bsd.obj.mk>
.include <bsd.sys.mk>
+.include <bsd.sbom.mk>
diff --git a/share/mk/bsd.prog.mk b/share/mk/bsd.prog.mk
--- a/share/mk/bsd.prog.mk
+++ b/share/mk/bsd.prog.mk
@@ -364,3 +364,4 @@
.include <bsd.clang-analyze.mk>
.include <bsd.obj.mk>
.include <bsd.sys.mk>
+.include <bsd.sbom.mk>
diff --git a/share/mk/bsd.sbom.mk b/share/mk/bsd.sbom.mk
new file mode 100644
--- /dev/null
+++ b/share/mk/bsd.sbom.mk
@@ -0,0 +1,67 @@
+# Generate SBOM files from definitions in the pkg-config format
+#
+# +++ variables +++
+#
+# BOMTOOL Tool converting pkg-config files into SPDX version 2 files
+# JSONLDDIR Destination directory for the SPDX version 3 files
+# SBOMDIR Source directory for the pkg-config files
+# SPDXDIR Destination directory for the SPDX version 2 files
+# SPDXTOOL Tool converting pkg-config files into SPDX version 3 files
+
+.if ${MK_SBOM} != "no"
+
+BOMTOOL?= bomtool --define-variable=FREEBSD_VERSION=${OS_REVISION}
+JSONLDDIR?= /usr/share/sbom/spdx-3.0.1
+SBOMDIR?= ${SRCTOP}/share/sbom/pkgconfig
+SPDXDIR?= /usr/share/sbom/spdx-2.2
+SPDXTOOL?= spdxtool --define-variable=FREEBSD_VERSION=${OS_REVISION}
+
+. if defined(LIB)
+SBOMNAME?= lib${LIB}
+SBOMTAGS= package=${PACKAGE:Uutilities},lib
+. elif defined(PROG)
+SBOMNAME?= ${PROG}
+SBOMTAGS= package=${PACKAGE:Uutilities}
+. else
+SBOMNAME=
+SBOMTAGS=
+. endif # defined(PROG) || defined(LIB)
+
+. if !empty(SBOMNAME)
+SBOMFILE?= ${SBOMNAME}.pc
+. endif # !empty(SBOMNAME)
+SBOM_TAG_ARGS= -T ${SBOMTAGS:ts,:[*]}
+
+. if !empty(SBOMFILE) && exists(${SBOMDIR}/${SBOMFILE})
+
+. if !defined(NO_JSONLD_SBOM)
+all: ${SBOMNAME}.jsonld
+
+${SBOMNAME}.jsonld: ${SBOMDIR}/${SBOMFILE}
+ ${SPDXTOOL} ${SBOMDIR}/${SBOMFILE} > ${.TARGET}
+
+jsonldinstall: .PHONY ${SBOMNAME}.jsonld
+ ${INSTALL} ${SBOM_TAG_ARGS} -m 0644 ${SBOMNAME}.jsonld \
+ ${DESTDIR}${JSONLDDIR}/${SBOMNAME}.jsonld
+
+realinstall: jsonldinstall
+.ORDER: beforeinstall jsonldinstall
+. endif # !defined(NO_JSONLD_SBOM)
+
+. if !defined(NO_SPDX_SBOM)
+all: ${SBOMNAME}.spdx
+
+${SBOMNAME}.spdx: ${SBOMDIR}/${SBOMFILE}
+ ${BOMTOOL} ${SBOMDIR}/${SBOMFILE} > ${.TARGET}
+
+spdxinstall: .PHONY ${SBOMNAME}.spdx
+ ${INSTALL} ${SBOM_TAG_ARGS} -m 0644 ${SBOMNAME}.spdx \
+ ${DESTDIR}${SPDXDIR}/${SBOMFILE:R}.spdx
+
+realinstall: spdxinstall
+.ORDER: beforeinstall spdxinstall
+. endif # !defined(NO_SPDX_SBOM)
+
+. endif # exists(${SBOMDIR}/${SBOMFILE})
+
+.endif # ${MK_SBOM}
diff --git a/share/mk/src.opts.mk b/share/mk/src.opts.mk
--- a/share/mk/src.opts.mk
+++ b/share/mk/src.opts.mk
@@ -168,6 +168,7 @@
RBOOTD \
RESCUE \
ROUTED \
+ SBOM \
SENDMAIL \
SERVICESDB \
SETUID_LOGIN \
diff --git a/share/sbom/pkgconfig/CC.pc b/share/sbom/pkgconfig/CC.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/CC.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: CC
+Description: The Clang C, C++, and Objective-C compiler
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libclang, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libexecinfo, libthr, libz, libzstd, msun, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/FreeBSD.pc b/share/sbom/pkgconfig/FreeBSD.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/FreeBSD.pc
@@ -0,0 +1,12 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: FreeBSD
+Description: Power to serve
+URL: https://www.freebsd.org/
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/
+License: NOASSERTION
+Requires: addr2line, adjkerntz, alias, apply, apropos, ar, asa, at, atq, atrm, awk, b64decode, b64encode, backlight, banner, base64, basename, batch, bc, bectl, beep, bg, biff, bintrans, bmake, brandelf, bsdcat, bsdcpio, bsddialog, bsdiff, bsdlabel, bsdtar, bsdunzip, bsnmpget, bsnmpset, bsnmpwalk, bspatch, bthost, btsockstat, bunzip2, byacc, bzcat, bzegrep, bzfgrep, bzgrep, bzip2, bzip2recover, bzless, c++, c89, c99, caesar, cal, calendar, camcontrol, cap_mkdb, captoinfo, cat, cc, CC, ccdconfig, cd, certctl, c++filt, chat, chflags, chfn, chgrp, chio, chkgrp, chkprintcap, chmod, chown, chpass, chroot, chsh, ckdist, cksum, clang, clang++, clang-cpp, clang-scan-deps, clear, clear_locks, clri, cmp, col, colrm, column, comcontrol, comm, command, compile_et, compress, config, conscontrol, cp, cpio, cpp, cpucontrol, cpuset, crashinfo, cron, crontab, crunchgen, crunchide, crypt, csh, csplit, ctags, ctfconvert, ctfdump, ctfmerge, ctladm, ctld, ctlstat, cu, cut, cxgbetool, daemon, date, dc, dconschat, dd, ddb, decryptcore, devctl, devd, devfs, devinfo, devmatch, df, dhclient, dhclient-script, diff, diff3, dirname, diskinfo, disklabel, dmesg, dnctl, domainname, drill, dtc, dtrace, du, dump, dumpcis, dumpfs, dumpon, dwatch, echo, ed, edit, editmap, edquota, ee, efibootmgr, efidp, efitable, efivar, efiwake, egrep, elfcopy, elfctl, elfdump, enigma, env, etcupdate, etdump, etherswitchcfg, ex, expand, expr, extattrctl, factor, false, fastboot, fasthalt, fc, fdcontrol, fdformat, fdisk, fdread, fdwrite, fetch, ffsinfo, fg, fgrep, fifolog_create, fifolog_reader, fifolog_writer, file, file2c, find, finger, flex, flex++, flowctl, fmt, fold, fortune, freebsd-update, freebsd-version, from, fsck, fsck_4.2bsd, fsck_ffs, fsck_msdosfs, fsck_ufs, fsdb, fsirand, fstat, fstyp, fsync, ftp, ftp-proxy, fuser, fwcontrol, gate-ftp, gcache, gconcat, gcore, gcov, geli, gencat, genl, geom, getaddrinfo, getconf, getent, getfacl, getopt, getopts, ggatec, ggated, ggatel, gjournal, glabel, gmirror, gmountver, gmultipath, gnop, gpart, gprof, graid, graid3, grdc, grep, groups, growfs, gshsec, gss-client, gstripe, gunion, gunzip, gvirstor, gzcat, gzexe, gzip, halt, hash, hastctl, hastd, hd, head, hexdump, host, hostname, ibstat, ibv_asyncwatch, ibv_devices, ibv_devinfo, ibv_rc_pingpong, ibv_srq_pingpong, ibv_uc_pingpong, ibv_ud_pingpong, iconv, id, ident, ifconfig, indent, infocmp, infotocap, init, install, ipcrm, ipcs, ipf, ipfs, ipfstat, ipfw, ipmon, ipnat, ippool, iscsictl, jobs, join, jot, k5srvutil, kadmin, kdestroy, kdump, kenv, kill, killall, kinit, kldconfig, kldload, kldstat, kldunload, klist, kpasswd, krb5-config, ksu, kswitch, ktrace, ktrdump, ktutil, kvno, kyua, lam, last, lastcomm, ld, ldconfig, ldd, ldd32, ld.lld, leave, less, lessecho, lesskey, lesspipe.sh, lex, lex++, limits, link, lldb, lldb-server, llvm-addr2line, llvm-ar, llvm-cov, llvm-cxxfilt, llvm-nm, llvm-objcopy, llvm-objdump, llvm-profdata, llvm-ranlib, llvm-readelf, llvm-readobj, llvm-size, llvm-strings, llvm-strip, llvm-symbolizer, ln, locale, localedef, locate, lock, lockf, logger, login, logins, logname, look, lorder, lp, lpq, lpr, lprm, ls, lsvfs, lzcat, lzdec, lzegrep, lzfgrep, lzgrep, lzless, lzma, lzmainfo, m4, mail, Mail, mailq, mailx, make, makewhatis, man, mandoc, manpath, mckey, md5, md5sum, mdconfig, mdmfs, mdo, mesg, mididump, ministat, mkcsmapper, mkdep, mkdir, mkesdb, mkfifo, mkimg, mknod, mksnap_ffs, mkstr, mktemp, mkuzip, more, morse, mount, mount_cd9660, mount_fusefs, mount_mfs, mount_msdosfs, mount_nfs, mount_nullfs, mount_udf, mount_unionfs, msgs, mt, mv, natd, nawk, nc, ncal, netstat, newaliases, newfs, newfs_msdos, newgrp, nex, nextboot, nfsiod, nfsstat, nice, nl, nm, nohup, nologin, nos-tun, nproc, ntpq, number, nvi, nview, nvmecontrol, objcopy, objdump, od, openssl, pagesize, pargs, passwd, paste, patch, pathchk, pax, penv, perror, pfctl, pfilctl, pflogd, pflowctl, pftp, pgrep, ping, ping6, pkill, pmcstudy, pom, posixmqcontrol, posixshmcontrol, poweroff, pr, primes, printenv, printf, proccontrol, procstat, protect, ps, pwait, pwd, pwdx, quota, quotacheck, random, ranlib, rcorder, rctl, rdump, read, readelf, readlink, realpath, reboot, recoverdisk, red, ree, renice, reset, resizewin, resolvconf, restore, rev, revoke, rfcomm_sppd, rgrep, rm, rmail, rmd160, rmd160sum, rmdir, rot13, route, routed, rpcgen, rpcinfo, rping, rrestore, rs, rtquery, rtsol, runat, rup, ruptime, rusers, rwall, rwho, savecore, sclient, scp, script, sdiff, sed, seq, setfacl, setfsmac, setkey, setpmac, sftp, sh, sha1, sha1sum, sha224, sha224sum, sha256, sha256sum, sha384, sha384sum, sha512, sha512sum, sha512t224, sha512t224sum, sha512t256, sha512t256sum, showmount, shutdown, sim_server, size, skein1024, skein1024sum, skein256, skein256sum, skein512, skein512sum, sleep, slogin, smbmsg, smbutil, snapinfo, sndctl, sntp, sockstat, soelim, sort, spi, spkrtest, split, spray, ssh, ssh-add, ssh-agent, ssh-copy-id, sshd, ssh-keygen, ssh-keyscan, stat, stdbuf, strfile, strings, strip, stty, su, sum, swapctl, swapinfo, swapoff, swapon, sync, sysctl, syslogd, sysrc, systat, tabs, tail, talk, tar, tcopy, tcpdchk, tcpdmatch, tcpdrop, tcpdump, tcpsso, tcsh, tee, telnet, test, tftp, tic, time, timeout, tip, toe, top, touch, tput, tr, traceroute, traceroute6, trim, true, truncate, truss, ts, tset, tsort, tty, tunefs, type, tzsetup, uathload, ucmatose, udaddy, uefisign, ugidfw, uhsoctl, ul, ulimit, umask, umbctl, umount, unalias, uname, uncompress, unexpand, unifdef, unifdefall, uniq, units, unlink, unlzma, unstr, unvis, unxz, unzip, unzstd, uptime, usbconfig, usbdump, usbhidaction, usbhidctl, users, utx, uudecode, uuencode, uuidgen, vacation, valectl, vi, vidcontrol, vidfont, view, vigr, vipw, virtual_bt_speaker, virtual_oss, virtual_oss_cmd, vis, vmstat, vtfontcvt, w, wait, wake, wall, watch, watchdog, watchdogd, wc, wg, what, whatis, whereis, which, who, whoami, whois, wlandebug, wlanstat, wpa_cli, wpa_passphrase, wpa_supplicant, write, xargs, xo, xstr, xz, xzcat, xzdec, xzdiff, xzegrep, xzfgrep, xzgrep, xzless, yacc, yes, ypbind, ypcat, ypchfn, ypchpass, ypchsh, ypinit, ypldap, ypmatch, yp_mkdb, yppasswd, yppoll, yppush, ypserv, ypset, ypwhich, zcat, zcmp, zdb, zdiff, zdump, zegrep, zfgrep, zforce, zfs, zfsbootcfg, zfsd, zgrep, zhack, zic, zinject, zless, zmore, znew, zonectl, zpool, zstd, zstdcat, zstdegrep, zstdfgrep, zstdgrep, zstdless, zstdmt, zstream, zstreamdump, ztest, zzz
diff --git a/share/sbom/pkgconfig/Mail.pc b/share/sbom/pkgconfig/Mail.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/Mail.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: Mail
+Description: Send and receive mail
+URL: https://man.freebsd.org/cgi/man.cgi?query=mail(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/mail
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1993 The Regents of the University of California, 1992, 1993 The Regents of the University of California, 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/[.pc b/share/sbom/pkgconfig/[.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/[.pc
@@ -0,0 +1,12 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: [
+Description: Condition evaluation utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=[(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/test
+License: LicenseRef-Public-Domain
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/addr2line.pc b/share/sbom/pkgconfig/addr2line.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/addr2line.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: addr2line
+Description: A drop-in replacement for addr2line
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libthr, libz, msun, libncursesw
diff --git a/share/sbom/pkgconfig/adjkerntz.pc b/share/sbom/pkgconfig/adjkerntz.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/adjkerntz.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: adjkerntz
+Description: Adjust real-time clock (rtc) and kernel timezone offset
+URL: https://man.freebsd.org/cgi/man.cgi?query=adjkerntz(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/adjkerntz
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.c570f536.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.c78f08b5.txt
+Copyright: 1993-1998 by Andrey A. Chernov, Moscow, Russia, 1993 by Andrew A. Chernov, Moscow, Russia
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/alias.pc b/share/sbom/pkgconfig/alias.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/alias.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: alias
+Description: Define aliases
+URL: https://man.freebsd.org/cgi/man.cgi?query=sh(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/sh
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California, 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>, 2010-2015 Jilles Tjoelker <jilles@stack.nl>, 1993 The Regents of the University of California, Copyright 1989 by Kenneth Almquist, 1995 The Regents of the University of California, 2002 Herbert Xu, 2007 Herbert Xu <herbert@gondor.apana.org.au>
+Requires: csu, libc, libcompiler_rt, libedit
diff --git a/share/sbom/pkgconfig/apply.pc b/share/sbom/pkgconfig/apply.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/apply.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: apply
+Description: Apply a command to a set of arguments
+URL: https://man.freebsd.org/cgi/man.cgi?query=apply(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/apply
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libsbuf
diff --git a/share/sbom/pkgconfig/apropos.pc b/share/sbom/pkgconfig/apropos.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/apropos.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: apropos
+Description: Utilities query manual page databases generated by makewhatis evaluating
+URL: https://mandoc.bsd.lv
+Version: 2025-09-26
+License: BSD-3-Clause AND BSD-2-Clause AND 0BSD
diff --git a/share/sbom/pkgconfig/ar.pc b/share/sbom/pkgconfig/ar.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ar.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ar
+Description: Manage archives
+URL: https://man.freebsd.org/cgi/man.cgi?query=ar(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/ar
+License: BSD-2-Clause AND BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 2008 Kai Wang, 2007 Kai Wang, 2007 Tim Kientzle, 2007 Joseph Koshy, 1990, 1993, 1994 The Regents of the University of California, 2003-2007 Tim Kientzle
+Requires: csu, libarchive, libc, libcompiler_rt, libelf
diff --git a/share/sbom/pkgconfig/asa.pc b/share/sbom/pkgconfig/asa.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/asa.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: asa
+Description: Interpret carriage-control characters
+URL: https://man.freebsd.org/cgi/man.cgi?query=asa(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/asa
+License: BSD-4-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause.d4eb499e.txt
+Copyright: 1993,94 Winning Strategies, Inc.
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/at.pc b/share/sbom/pkgconfig/at.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/at.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: at
+Description: Queue, examine or delete jobs for later execution
+URL: https://man.freebsd.org/cgi/man.cgi?query=at(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/at
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-Source-Code.423108f0.txt
+Copyright: 1993 Thomas Koenig, 1994 Thomas Koenig, 1993, 1994 Thomas Koenig, 1993 David Parsons
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/atq.pc b/share/sbom/pkgconfig/atq.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/atq.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: atq
+Description: Queue, examine or delete jobs for later execution
+URL: https://man.freebsd.org/cgi/man.cgi?query=at(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/at
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-Source-Code.423108f0.txt
+Copyright: 1993 Thomas Koenig, 1994 Thomas Koenig, 1993, 1994 Thomas Koenig, 1993 David Parsons
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/atrm.pc b/share/sbom/pkgconfig/atrm.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/atrm.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: atrm
+Description: Queue, examine or delete jobs for later execution
+URL: https://man.freebsd.org/cgi/man.cgi?query=at(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/at
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-Source-Code.423108f0.txt
+Copyright: 1993 Thomas Koenig, 1994 Thomas Koenig, 1993, 1994 Thomas Koenig, 1993 David Parsons
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/awk.pc b/share/sbom/pkgconfig/awk.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/awk.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: awk
+Description: One true awk
+URL: https://github.com/onetrueawk/awk
+Version: 20250804
+Source: https://github.com/onetrueawk/awk/tree/d7f37646965ee26214da0e1d97f3c1d54349ae2d
+License: SMLNJ
diff --git a/share/sbom/pkgconfig/b64decode.pc b/share/sbom/pkgconfig/b64decode.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/b64decode.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: b64decode
+Description: Encode / decode a binary file
+URL: https://man.freebsd.org/cgi/man.cgi?query=b64decode(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/bintrans
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.4c6ac0a5.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1983, 1993 The Regents of the University of California, 2022 The FreeBSD Foundation, 2020 Baptiste Daroussin <bapt@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/b64encode.pc b/share/sbom/pkgconfig/b64encode.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/b64encode.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: b64encode
+Description: Encode / decode a binary file
+URL: https://man.freebsd.org/cgi/man.cgi?query=b64encode(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/bintrans
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.4c6ac0a5.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1983, 1993 The Regents of the University of California, 2022 The FreeBSD Foundation, 2020 Baptiste Daroussin <bapt@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/backlight.pc b/share/sbom/pkgconfig/backlight.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/backlight.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: backlight
+Description: Configure backlight hardware
+URL: https://man.freebsd.org/cgi/man.cgi?query=backlight(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/backlight
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2020 Emmanuel Vadot <manu@FreeBSD.org>
diff --git a/share/sbom/pkgconfig/banner.pc b/share/sbom/pkgconfig/banner.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/banner.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: banner
+Description: Print large banner on printer
+URL: https://man.freebsd.org/cgi/man.cgi?query=banner(6)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/banner
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/base64.pc b/share/sbom/pkgconfig/base64.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/base64.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: base64
+Description: Encode / decode a binary file
+URL: https://man.freebsd.org/cgi/man.cgi?query=base64(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/bintrans
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.4c6ac0a5.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1983, 1993 The Regents of the University of California, 2022 The FreeBSD Foundation, 2020 Baptiste Daroussin <bapt@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/basename.pc b/share/sbom/pkgconfig/basename.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/basename.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: basename
+Description: Return filename or directory portion of pathname
+URL: https://man.freebsd.org/cgi/man.cgi?query=basename(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/basename
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/batch.pc b/share/sbom/pkgconfig/batch.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/batch.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: batch
+Description: Queue, examine or delete jobs for later execution
+URL: https://man.freebsd.org/cgi/man.cgi?query=at(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/at
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-Source-Code.423108f0.txt
+Copyright: 1993 Thomas Koenig, 1994 Thomas Koenig, 1993, 1994 Thomas Koenig, 1993 David Parsons
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/bc.pc b/share/sbom/pkgconfig/bc.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bc.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bc
+Description: Implementation of the POSIX bc calculator with GNU extensions and dc
+URL: https://gavinhoward.com/tag/bc/
+Version: 7.1.0
+Source: https://github.com/gavinhoward/bc/tree/7.1.0
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/bectl.pc b/share/sbom/pkgconfig/bectl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bectl.pc
@@ -0,0 +1,13 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: bectl
+Description: Manage ZFS boot environments
+URL: https://man.freebsd.org/cgi/man.cgi?query=bectl(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/bectl
+License: Beerware AND BSD-2-Clause
+Copyright: 2017 Kyle J. Kneitinger <kyle@kneit.in>, 2018 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, libbe, libc, libcompiler_rt, libjail, libutil
diff --git a/share/sbom/pkgconfig/beep.pc b/share/sbom/pkgconfig/beep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/beep.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: beep
+Description: Play a beep sound
+URL: https://man.freebsd.org/cgi/man.cgi?query=beep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/beep
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2021 Hans Petter Selasky <hselasky@freebsd.org>
diff --git a/share/sbom/pkgconfig/bg.pc b/share/sbom/pkgconfig/bg.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bg.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bg
+Description: Background PID
+URL: https://man.freebsd.org/cgi/man.cgi?query=sh(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/sh
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California, 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>, 2010-2015 Jilles Tjoelker <jilles@stack.nl>, 1993 The Regents of the University of California, Copyright 1989 by Kenneth Almquist, 1995 The Regents of the University of California, 2002 Herbert Xu, 2007 Herbert Xu <herbert@gondor.apana.org.au>
+Requires: csu, libc, libcompiler_rt, libedit
diff --git a/share/sbom/pkgconfig/biff.pc b/share/sbom/pkgconfig/biff.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/biff.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: biff
+Description: Be notified if mail arrives and who it is from
+URL: https://man.freebsd.org/cgi/man.cgi?query=biff(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/biff
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/bintrans.pc b/share/sbom/pkgconfig/bintrans.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bintrans.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bintrans
+Description: Encode / decode a binary file
+URL: https://man.freebsd.org/cgi/man.cgi?query=bintrans(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/bintrans
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.4c6ac0a5.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1983, 1993 The Regents of the University of California, 2022 The FreeBSD Foundation, 2020 Baptiste Daroussin <bapt@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/bmake.pc b/share/sbom/pkgconfig/bmake.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bmake.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bmake
+Description: Program designed to simplify the maintenance of other programs
+URL: https://www.NetBSD.org
+Version: 20250804
+Source: https://cvsweb.netbsd.org/bsdweb.cgi/src/usr.bin/make/
+License: BSD-3-Clause
diff --git a/share/sbom/pkgconfig/brandelf.pc b/share/sbom/pkgconfig/brandelf.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/brandelf.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: brandelf
+Description: Mark an ELF binary for a specific ABI
+URL: https://man.freebsd.org/cgi/man.cgi?query=brandelf(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/brandelf
+License: LicenseRef-scancode-bsd-unchanged
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-bsd-unchanged.e00db836.txt
+Copyright: 2000, 2001 David O'Brien, 1996 Soren Schmidt
+Requires: csu, libc, libcapsicum, libcompiler_rt
diff --git a/share/sbom/pkgconfig/bsdcat.pc b/share/sbom/pkgconfig/bsdcat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bsdcat.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bsdcat
+Description: Multi-format archive and compression library
+URL: https://libarchive.org
+Version: 3.8.2
+Source: https://github.com/libarchive/libarchive/tree/v3.8.2
+License: BSD-3-Clause AND BSD-2-Clause AND CC0-1.0 AND openssl AND Apache-2.0
diff --git a/share/sbom/pkgconfig/bsdcpio.pc b/share/sbom/pkgconfig/bsdcpio.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bsdcpio.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bsdcpio
+Description: Multi-format archive and compression library
+URL: https://libarchive.org
+Version: 3.8.2
+Source: https://github.com/libarchive/libarchive/tree/v3.8.2
+License: BSD-3-Clause AND BSD-2-Clause AND CC0-1.0 AND openssl AND Apache-2.0
diff --git a/share/sbom/pkgconfig/bsddialog.pc b/share/sbom/pkgconfig/bsddialog.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bsddialog.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bsddialog
+Description: Utility and a library to build scripts and tools with TUI dialogs and widgets
+URL: https://gitlab.com/alfix/bsddialog
+Version: 1.1
+Source: https://gitlab.com/alfix/bsddialog/-/tree/1.1
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/bsdiff.pc b/share/sbom/pkgconfig/bsdiff.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bsdiff.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bsdiff
+Description: Generate a patch between two binary files
+URL: https://man.freebsd.org/cgi/man.cgi?query=bsdiff(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/bsdiff/bsdiff
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/MIT.d52bc048.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.cb59cf40.txt
+Copyright: 2003-2008 Yuta Mori, Copyright 2003-2005 Colin Percival
+Requires: csu, bzip2, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/bsdlabel.pc b/share/sbom/pkgconfig/bsdlabel.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bsdlabel.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: bsdlabel
+Description: Read and write BSD label
+URL: https://man.freebsd.org/cgi/man.cgi?query=bsdlabel(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/bsdlabel
+License: BSD-4-Clause AND BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause-UC.95e04bcc.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1994, 1995 Gordon W. Ross, 1994 Theo de Raadt, 1987, 1993 The Regents of the University of California, 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libgeom
diff --git a/share/sbom/pkgconfig/bsdtar.pc b/share/sbom/pkgconfig/bsdtar.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bsdtar.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bsdtar
+Description: Multi-format archive and compression library
+URL: https://libarchive.org
+Version: 3.8.2
+Source: https://github.com/libarchive/libarchive/tree/v3.8.2
+License: BSD-3-Clause AND BSD-2-Clause AND CC0-1.0 AND openssl AND Apache-2.0
diff --git a/share/sbom/pkgconfig/bsdunzip.pc b/share/sbom/pkgconfig/bsdunzip.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bsdunzip.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bsdunzip
+Description: Multi-format archive and compression library
+URL: https://libarchive.org
+Version: 3.8.2
+Source: https://github.com/libarchive/libarchive/tree/v3.8.2
+License: BSD-3-Clause AND BSD-2-Clause AND CC0-1.0 AND openssl AND Apache-2.0
diff --git a/share/sbom/pkgconfig/bsnmpget.pc b/share/sbom/pkgconfig/bsnmpget.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bsnmpget.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bsnmpget
+Description: Simple tools for querying SNMP agents
+URL: https://man.freebsd.org/cgi/man.cgi?query=bsnmpget(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/bsnmpd/tools/bsnmptools
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.3317ee62.txt
+Copyright: 2005-2006 The FreeBSD Project
+Requires: csu, libbsnmp, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/bsnmpset.pc b/share/sbom/pkgconfig/bsnmpset.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bsnmpset.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bsnmpset
+Description: Simple tools for querying SNMP agents
+URL: https://man.freebsd.org/cgi/man.cgi?query=bsnmpget(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/bsnmpd/tools/bsnmptools
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.3317ee62.txt
+Copyright: 2005-2006 The FreeBSD Project
+Requires: csu, libbsnmp, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/bsnmpwalk.pc b/share/sbom/pkgconfig/bsnmpwalk.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bsnmpwalk.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bsnmpwalk
+Description: Simple tools for querying SNMP agents
+URL: https://man.freebsd.org/cgi/man.cgi?query=bsnmpget(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/bsnmpd/tools/bsnmptools
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.3317ee62.txt
+Copyright: 2005-2006 The FreeBSD Project
+Requires: csu, libbsnmp, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/bspatch.pc b/share/sbom/pkgconfig/bspatch.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bspatch.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bspatch
+Description: Apply a patch built with bsdiff(1)
+URL: https://man.freebsd.org/cgi/man.cgi?query=bspatch(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/bsdiff/bspatch
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.cb59cf40.txt
+Copyright: Copyright 2003-2005 Colin Percival
+Requires: csu, bzip2, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/bthost.pc b/share/sbom/pkgconfig/bthost.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bthost.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bthost
+Description: Look up Bluetooth host names and Protocol Service Multiplexor values
+URL: https://man.freebsd.org/cgi/man.cgi?query=bthost(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/bluetooth/bthost
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2003 Maksim Yevmenkin <m_evmenkin@yahoo.com>
+Requires: csu, libbluetooth, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/btsockstat.pc b/share/sbom/pkgconfig/btsockstat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/btsockstat.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: btsockstat
+Description: Show Bluetooth sockets information
+URL: https://man.freebsd.org/cgi/man.cgi?query=btsockstat(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/bluetooth/btsockstat
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2001-2002 Maksim Yevmenkin <m_evmenkin@yahoo.com>
+Requires: csu, libbluetooth, libc, libcompiler_rt, libkvm
diff --git a/share/sbom/pkgconfig/bunzip2.pc b/share/sbom/pkgconfig/bunzip2.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bunzip2.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bunzip2
+Description: High-quality data compressor
+URL: https://sourceware.org/bzip2/
+Version: 1.0.8
+Source: https://sourceware.org/git/?p=bzip2.git;a=commit;h=6a8690fc8d26c815e798c588f796eabe9d684cf0
+License: bzip2-1.0.6
diff --git a/share/sbom/pkgconfig/byacc.pc b/share/sbom/pkgconfig/byacc.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/byacc.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: byacc
+Description: Parser generator designed to be compatible with Yacc
+URL: https://invisible-island.net/byacc/
+Version: 20240109
+Source: https://invisible-island.net/datafiles/release/byacc.tar.gz
+License: LicenseRef-scancode-public-domain
diff --git a/share/sbom/pkgconfig/bzcat.pc b/share/sbom/pkgconfig/bzcat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bzcat.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bzcat
+Description: High-quality data compressor
+URL: https://sourceware.org/bzip2/
+Version: 1.0.8
+Source: https://sourceware.org/git/?p=bzip2.git;a=commit;h=6a8690fc8d26c815e798c588f796eabe9d684cf0
+License: bzip2-1.0.6
diff --git a/share/sbom/pkgconfig/bzegrep.pc b/share/sbom/pkgconfig/bzegrep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bzegrep.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bzegrep
+Description: Grep compressed files
+URL: https://man.freebsd.org/cgi/man.cgi?query=bzegrep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/grep
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999 James Howard and Dag-Erling Smorgrav, 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org>, 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>, 2017 Kyle Evans <kevans@FreeBSD.org>, 2010 Dimitry Andric <dimitry@andric.com>, 2020 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, libbz2, libc, libcompiler_rt, libregex, libz
diff --git a/share/sbom/pkgconfig/bzfgrep.pc b/share/sbom/pkgconfig/bzfgrep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bzfgrep.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bzfgrep
+Description: Grep compressed files
+URL: https://man.freebsd.org/cgi/man.cgi?query=bzfgrep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/grep
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999 James Howard and Dag-Erling Smorgrav, 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org>, 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>, 2017 Kyle Evans <kevans@FreeBSD.org>, 2010 Dimitry Andric <dimitry@andric.com>, 2020 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, libbz2, libc, libcompiler_rt, libregex, libz
diff --git a/share/sbom/pkgconfig/bzgrep.pc b/share/sbom/pkgconfig/bzgrep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bzgrep.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bzgrep
+Description: Grep compressed files
+URL: https://man.freebsd.org/cgi/man.cgi?query=bzgrep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/grep
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999 James Howard and Dag-Erling Smorgrav, 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org>, 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>, 2017 Kyle Evans <kevans@FreeBSD.org>, 2010 Dimitry Andric <dimitry@andric.com>, 2020 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, libbz2, libc, libcompiler_rt, libregex, libz
diff --git a/share/sbom/pkgconfig/bzip2.pc b/share/sbom/pkgconfig/bzip2.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bzip2.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bzip2
+Description: High-quality data compressor
+URL: https://sourceware.org/bzip2/
+Version: 1.0.8
+Source: https://sourceware.org/git/?p=bzip2.git;a=commit;h=6a8690fc8d26c815e798c588f796eabe9d684cf0
+License: bzip2-1.0.6
diff --git a/share/sbom/pkgconfig/bzip2recover.pc b/share/sbom/pkgconfig/bzip2recover.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bzip2recover.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bzip2recover
+Description: High-quality data compressor
+URL: https://sourceware.org/bzip2/
+Version: 1.0.8
+Source: https://sourceware.org/git/?p=bzip2.git;a=commit;h=6a8690fc8d26c815e798c588f796eabe9d684cf0
+License: bzip2-1.0.6
diff --git a/share/sbom/pkgconfig/bzless.pc b/share/sbom/pkgconfig/bzless.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/bzless.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: bzless
+Description: High-quality data compressor
+URL: https://sourceware.org/bzip2/
+Version: 1.0.8
+Source: https://sourceware.org/git/?p=bzip2.git;a=commit;h=6a8690fc8d26c815e798c588f796eabe9d684cf0
+License: bzip2-1.0.6
diff --git a/share/sbom/pkgconfig/c++.pc b/share/sbom/pkgconfig/c++.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/c++.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: c++
+Description: The Clang C, C++, and Objective-C compiler
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libclang, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libexecinfo, libthr, libz, libzstd, msun, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/c++filt.pc b/share/sbom/pkgconfig/c++filt.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/c++filt.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: c++filt
+Description: LLVM symbol name demangler
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libthr, libz, msun, libncursesw
diff --git a/share/sbom/pkgconfig/c89.pc b/share/sbom/pkgconfig/c89.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/c89.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: c89
+Description: POSIX.2 C language compiler
+URL: https://man.freebsd.org/cgi/man.cgi?query=c89(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/c89
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.0e4c86ca.txt
+Copyright: 2001 by Jens Schweikhardt
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/c99.pc b/share/sbom/pkgconfig/c99.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/c99.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: c99
+Description: Standard C language compiler
+URL: https://man.freebsd.org/cgi/man.cgi?query=c99(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/c99
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2002 Tim J. Robbins
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/caesar.pc b/share/sbom/pkgconfig/caesar.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/caesar.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: caesar
+Description: Decrypt caesar ciphers
+URL: https://man.freebsd.org/cgi/man.cgi?query=caesar(6)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/caesar
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, msun
diff --git a/share/sbom/pkgconfig/cal.pc b/share/sbom/pkgconfig/cal.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/cal.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: cal
+Description: Displays a calendar and the date of Easter
+URL: https://man.freebsd.org/cgi/man.cgi?query=ncal(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/ncal
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1997 Wolfgang Helbig
+Requires: csu, libc, libcalendar, libcompiler_rt, libtinfo
diff --git a/share/sbom/pkgconfig/calendar.pc b/share/sbom/pkgconfig/calendar.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/calendar.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: calendar
+Description: Reminder service
+URL: https://man.freebsd.org/cgi/man.cgi?query=calendar(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/calendar
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.c570f536.txt
+Copyright: 1996 Wolfram Schneider <wosch@FreeBSD.org> Berlin, 1989, 1993 The Regents of the University of California, 1993-1996 by Andrey A. Chernov, Moscow, Russia, 1992-2009 Edwin Groothuis <edwin@FreeBSD.org>, 1989, 1993, 1994 The Regents of the University of California, 2009-2010 Edwin Groothuis <edwin@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libutil, msun
diff --git a/share/sbom/pkgconfig/camcontrol.pc b/share/sbom/pkgconfig/camcontrol.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/camcontrol.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: camcontrol
+Description: CAM control program
+URL: https://man.freebsd.org/cgi/man.cgi?query=camcontrol(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/camcontrol
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.5bebe47e.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.28d55d07.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-intel-bsd-2-clause.8230435b.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-unknown-license-reference.ad4a9bb5.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.d3db918d.txt
+Copyright: 1998 Kenneth D. Merry, 2000 Kelly Yancey <kbyanc@posi.net>, 2016 Spectra Logic Corporation, 1997-2012 The NetBSD Foundation, Inc., 1997-2007 Kenneth D. Merry, 2011 Sandvine Incorporated, 2002-2011 Andre Albsmeier <andre@albsmeier.net>, 2013 Spectra Logic Corporation, 2015, 2016 Spectra Logic Corporation, Copyright julian Elischer 1993, 1994 HD Associates (contact dufault@hda.com), 2021 Netflix, Inc., 2014 Spectra Logic Corporation, 1997-2009 The NetBSD Foundation, Inc.
+Requires: csu, libc, libcam, libcompiler_rt, libnvmf, libsbuf, libutil
diff --git a/share/sbom/pkgconfig/cap_mkdb.pc b/share/sbom/pkgconfig/cap_mkdb.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/cap_mkdb.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: cap_mkdb
+Description: Create capability database
+URL: https://man.freebsd.org/cgi/man.cgi?query=cap_mkdb(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/cap_mkdb
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1992, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/captoinfo.pc b/share/sbom/pkgconfig/captoinfo.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/captoinfo.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: captoinfo
+Description: clone of System V curses form library
+URL: https://invisible-island.net/ncurses
+Version: 6.5
+Source: https://invisible-island.net/archives/ncurses/ncurses-6.5.tar.gz
+License: X11
+Requires: csu, libc, libcompiler_rt, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/cat.pc b/share/sbom/pkgconfig/cat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/cat.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: cat
+Description: Concatenate and print files
+URL: https://man.freebsd.org/cgi/man.cgi?query=cat(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/cat
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcasper.services.cap_net, libcompiler_rt
diff --git a/share/sbom/pkgconfig/cc.pc b/share/sbom/pkgconfig/cc.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/cc.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: cc
+Description: The Clang C, C++, and Objective-C compiler
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libclang, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libexecinfo, libthr, libz, libzstd, msun, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/ccdconfig.pc b/share/sbom/pkgconfig/ccdconfig.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ccdconfig.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: ccdconfig
+Description: Configuration utility for the concatenated disk driver
+URL: https://man.freebsd.org/cgi/man.cgi?query=ccdconfig(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/ccdconfig
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.55f3eace.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt
+Copyright: 2003 Poul-Henning Kamp, 1996 The NetBSD Foundation, Inc.
+Requires: csu, libc, libcompiler_rt, libgeom
diff --git a/share/sbom/pkgconfig/cd.pc b/share/sbom/pkgconfig/cd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/cd.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: cd
+Description: Change dir
+URL: https://man.freebsd.org/cgi/man.cgi?query=sh(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/sh
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California, 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>, 2010-2015 Jilles Tjoelker <jilles@stack.nl>, 1993 The Regents of the University of California, Copyright 1989 by Kenneth Almquist, 1995 The Regents of the University of California, 2002 Herbert Xu, 2007 Herbert Xu <herbert@gondor.apana.org.au>
+Requires: csu, libc, libcompiler_rt, libedit
diff --git a/share/sbom/pkgconfig/certctl.pc b/share/sbom/pkgconfig/certctl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/certctl.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: certctl
+Description: Tool for managing trusted and untrusted TLS certificates
+URL: https://man.freebsd.org/cgi/man.cgi?query=certctl(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/certctl
+License: BSD-2-Clause
+Copyright: 2023-2025 Dag-Erling Smorgrav <des@FreeBSD.org>
diff --git a/share/sbom/pkgconfig/chat.pc b/share/sbom/pkgconfig/chat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/chat.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: chat
+Description: Automated conversational script with a modem
+URL: https://man.freebsd.org/cgi/man.cgi?query=chat(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/chat
+License: LicenseRef-scancode-public-domain-disclaimer
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain-disclaimer.89faa3c1.txt
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/chflags.pc b/share/sbom/pkgconfig/chflags.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/chflags.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: chflags
+Description: Change file flags
+URL: https://man.freebsd.org/cgi/man.cgi?query=chflags(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/chflags
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1992, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/chfn.pc b/share/sbom/pkgconfig/chfn.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/chfn.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: chfn
+Description: Add or change user database information
+URL: https://man.freebsd.org/cgi/man.cgi?query=chfn(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/chpass
+License: BSD-4-Clause AND BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause-UC.06c1e96a.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1993, 1994 The Regents of the University of California, 2002 Networks Associates Technology, Inc., 1990, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libcrypt, libutil
diff --git a/share/sbom/pkgconfig/chgrp.pc b/share/sbom/pkgconfig/chgrp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/chgrp.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: chgrp
+Description: Change group
+URL: https://man.freebsd.org/cgi/man.cgi?query=chgrp(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/chown
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/chio.pc b/share/sbom/pkgconfig/chio.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/chio.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: chio
+Description: Medium changer control utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=chio(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/chio
+License: BSD-4-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause.bcc5ab4d.txt
+Copyright: 1996 Jason R. Thorpe <thorpej@and.com>, 1997, by Matthew Jacob, for NASA/Ames Research Ctr, 2000, by C. Stephen Gunn, Waterspout Communications
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/chkgrp.pc b/share/sbom/pkgconfig/chkgrp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/chkgrp.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: chkgrp
+Description: Check the syntax of the group file
+URL: https://man.freebsd.org/cgi/man.cgi?query=chkgrp(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/chkgrp
+License: LicenseRef-scancode-bsd-unchanged
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-bsd-unchanged.e00db836.txt
+Copyright: 1998 Dag-Erling Smorgrav
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/chkprintcap.pc b/share/sbom/pkgconfig/chkprintcap.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/chkprintcap.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: chkprintcap
+Description: Check validity of entries in the print spooler database
+URL: https://man.freebsd.org/cgi/man.cgi?query=chkprintcap(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/lpr/chkprintcap
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-mit-license-1998.efd275e2.txt, ${pcfiledir}/LICENSES/BSD-2-Clause-Views.fb8744a6.txt
+Copyright: Copyright 1997 Massachusetts Institute of Technology, 1997, Massachusetts Institute of Technology, 2001 - Garance Alistair Drosehn <gad@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/chmod.pc b/share/sbom/pkgconfig/chmod.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/chmod.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: chmod
+Description: Change file modes
+URL: https://man.freebsd.org/cgi/man.cgi?query=chmod(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/chmod
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/chown.pc b/share/sbom/pkgconfig/chown.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/chown.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: chown
+Description: Change file owner and group
+URL: https://man.freebsd.org/cgi/man.cgi?query=chown(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/chown
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/chpass.pc b/share/sbom/pkgconfig/chpass.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/chpass.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: chpass
+Description: Add or change user database information
+URL: https://man.freebsd.org/cgi/man.cgi?query=chpass(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/chpass
+License: BSD-4-Clause AND BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause-UC.06c1e96a.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1993, 1994 The Regents of the University of California, 2002 Networks Associates Technology, Inc., 1990, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libcrypt, libutil
diff --git a/share/sbom/pkgconfig/chroot.pc b/share/sbom/pkgconfig/chroot.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/chroot.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: chroot
+Description: Change root directory
+URL: https://man.freebsd.org/cgi/man.cgi?query=chroot(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/chroot
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/chsh.pc b/share/sbom/pkgconfig/chsh.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/chsh.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: chsh
+Description: Add or change user database information
+URL: https://man.freebsd.org/cgi/man.cgi?query=chsh(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/chpass
+License: BSD-4-Clause AND BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause-UC.06c1e96a.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1993, 1994 The Regents of the University of California, 2002 Networks Associates Technology, Inc., 1990, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libcrypt, libutil
diff --git a/share/sbom/pkgconfig/ckdist.pc b/share/sbom/pkgconfig/ckdist.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ckdist.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ckdist
+Description: Check software distributions
+URL: https://man.freebsd.org/cgi/man.cgi?query=ckdist(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/ckdist
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.0bb055ab.txt
+Copyright: 1997 Robert Nordier
+Requires: csu, libc, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/cksum.pc b/share/sbom/pkgconfig/cksum.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/cksum.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: cksum
+Description: Display file checksums and block counts
+URL: https://man.freebsd.org/cgi/man.cgi?query=cksum(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/cksum
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/clang++.pc b/share/sbom/pkgconfig/clang++.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/clang++.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: clang++
+Description: The Clang C, C++, and Objective-C compiler
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libclang, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libexecinfo, libthr, libz, libzstd, msun, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/clang-cpp.pc b/share/sbom/pkgconfig/clang-cpp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/clang-cpp.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: clang-cpp
+Description: The Clang C, C++, and Objective-C compiler
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libclang, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libexecinfo, libthr, libz, libzstd, msun, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/clang-scan-deps.pc b/share/sbom/pkgconfig/clang-scan-deps.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/clang-scan-deps.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: clang-scan-deps
+Description: The Clang C, C++, and Objective-C compiler
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libclang, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libexecinfo, libthr, libz, libzstd, msun, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/clang.pc b/share/sbom/pkgconfig/clang.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/clang.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: clang
+Description: The Clang C, C++, and Objective-C compiler
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libclang, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libexecinfo, libthr, libz, libzstd, msun, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/clear.pc b/share/sbom/pkgconfig/clear.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/clear.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: clear
+Description: clone of System V curses form library
+URL: https://invisible-island.net/ncurses
+Version: 6.5
+Source: https://invisible-island.net/archives/ncurses/ncurses-6.5.tar.gz
+License: X11
+Requires: csu, libc, libcompiler_rt, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/clear_locks.pc b/share/sbom/pkgconfig/clear_locks.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/clear_locks.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: clear_locks
+Description: Clear locks held on behalf of an NFS client
+URL: https://man.freebsd.org/cgi/man.cgi?query=clear_locks(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/clear_locks
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2008 Isilon Inc http://www.isilon.com
+Requires: csu, libc, libcompiler_rt, librpcsvc
diff --git a/share/sbom/pkgconfig/clri.pc b/share/sbom/pkgconfig/clri.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/clri.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: clri
+Description: Clear an inode
+URL: https://man.freebsd.org/cgi/man.cgi?query=clri(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/clri
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1990, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libufs
diff --git a/share/sbom/pkgconfig/cmp.pc b/share/sbom/pkgconfig/cmp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/cmp.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: cmp
+Description: Compare two files
+URL: https://man.freebsd.org/cgi/man.cgi?query=cmp(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/cmp
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1987, 1990, 1993, 1994 The Regents of the University of California, 2005 Brian Somers <brian@FreeBSD.org>, 1991, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/col.pc b/share/sbom/pkgconfig/col.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/col.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: col
+Description: Filter reverse line feeds from input
+URL: https://man.freebsd.org/cgi/man.cgi?query=col(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/col
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1990, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/colrm.pc b/share/sbom/pkgconfig/colrm.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/colrm.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: colrm
+Description: Remove columns from a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=colrm(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/colrm
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/column.pc b/share/sbom/pkgconfig/column.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/column.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: column
+Description: Columnate lists
+URL: https://man.freebsd.org/cgi/man.cgi?query=column(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/column
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/comcontrol.pc b/share/sbom/pkgconfig/comcontrol.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/comcontrol.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: comcontrol
+Description: Control a special tty device
+URL: https://man.freebsd.org/cgi/man.cgi?query=comcontrol(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/comcontrol
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.343bcf06.txt
+Copyright: 1992 Christopher G. Demetriou
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/comm.pc b/share/sbom/pkgconfig/comm.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/comm.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: comm
+Description: Select or reject lines common to two files
+URL: https://man.freebsd.org/cgi/man.cgi?query=comm(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/comm
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/command.pc b/share/sbom/pkgconfig/command.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/command.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: command
+Description: Run command
+URL: https://man.freebsd.org/cgi/man.cgi?query=sh(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/sh
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California, 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>, 2010-2015 Jilles Tjoelker <jilles@stack.nl>, 1993 The Regents of the University of California, Copyright 1989 by Kenneth Almquist, 1995 The Regents of the University of California, 2002 Herbert Xu, 2007 Herbert Xu <herbert@gondor.apana.org.au>
+Requires: csu, libc, libcompiler_rt, libedit
diff --git a/share/sbom/pkgconfig/compile_et.pc b/share/sbom/pkgconfig/compile_et.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/compile_et.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: compile_et
+Description: Common error display library
+URL: https://www.heimdal.software
+Version: 1.5.2
+License: BSD-3-Clause
+Requires: csu, libc, libcompiler_rt, libcom_err
diff --git a/share/sbom/pkgconfig/compress.pc b/share/sbom/pkgconfig/compress.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/compress.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: compress
+Description: Compress and expand data
+URL: https://man.freebsd.org/cgi/man.cgi?query=compress(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/compress
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.becf44a3.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1996 FreeBSD Inc., 1985, 1986, 1992, 1993 The Regents of the University of California, 1992, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/config.pc b/share/sbom/pkgconfig/config.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/config.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: config
+Description: Build system configuration files
+URL: https://man.freebsd.org/cgi/man.cgi?query=config(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/config
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.d51808e0.txt
+Copyright: 1995 Peter Wemm, 1980, 1993 The Regents of the University of California, 1980, 1990, 1993 The Regents of the University of California
+Requires: csu, libc, libc++, libcompiler_rt, libcxxrt, msun
diff --git a/share/sbom/pkgconfig/conscontrol.pc b/share/sbom/pkgconfig/conscontrol.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/conscontrol.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: conscontrol
+Description: Control physical system video console devices
+URL: https://man.freebsd.org/cgi/man.cgi?query=conscontrol(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/conscontrol
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2001 Jonathan Lemon <jlemon@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/cp.pc b/share/sbom/pkgconfig/cp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/cp.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: cp
+Description: Copy files
+URL: https://man.freebsd.org/cgi/man.cgi?query=cp(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/cp
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993, 1994 The Regents of the University of California, 1988, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/cpio.pc b/share/sbom/pkgconfig/cpio.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/cpio.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: cpio
+Description: Multi-format archive and compression library
+URL: https://libarchive.org
+Version: 3.8.2
+Source: https://github.com/libarchive/libarchive/tree/v3.8.2
+License: BSD-3-Clause AND BSD-2-Clause AND CC0-1.0 AND openssl AND Apache-2.0
diff --git a/share/sbom/pkgconfig/cpp.pc b/share/sbom/pkgconfig/cpp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/cpp.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: cpp
+Description: The Clang C, C++, and Objective-C compiler
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libclang, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libexecinfo, libthr, libz, libzstd, msun, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/cpucontrol.pc b/share/sbom/pkgconfig/cpucontrol.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/cpucontrol.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: cpucontrol
+Description: Control utility for the cpuctl(4) device
+URL: https://man.freebsd.org/cgi/man.cgi?query=cpucontrol(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/cpucontrol
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt
+Copyright: 2008 Stanislav Sedov <stas@FreeBSD.org>, 2011 Fabien Thomas <fabient@FreeBSD.org>, 2006, 2008 Stanislav Sedov <stas@FreeBSD.org>, 2012 Andriy Gapon <avg@FreeBSD.org>, 2008-2011 Stanislav Sedov <stas@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/cpuset.pc b/share/sbom/pkgconfig/cpuset.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/cpuset.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: cpuset
+Description: Configure processor sets
+URL: https://man.freebsd.org/cgi/man.cgi?query=cpuset(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/cpuset
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.da76510e.txt
+Copyright: 2007, 2008 Jeffrey Roberson <jeff@freebsd.org>, 2008 Nokia Corporation
+Requires: csu, libc, libcompiler_rt, libjail
diff --git a/share/sbom/pkgconfig/crashinfo.pc b/share/sbom/pkgconfig/crashinfo.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/crashinfo.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: crashinfo
+Description: Analyze a core dump of the operating system
+URL: https://man.freebsd.org/cgi/man.cgi?query=crashinfo(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/crashinfo
+License: BSD-3-Clause
diff --git a/share/sbom/pkgconfig/cron.pc b/share/sbom/pkgconfig/cron.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/cron.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: cron
+Description: Daemon to execute scheduled commands (Vixie Cron)
+URL: https://man.freebsd.org/cgi/man.cgi?query=cron(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/cron/cron
+License: BSD-4.3TAHOE AND BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/ISC.a9fefede.txt, ${pcfiledir}/LICENSES/BSD-4.3TAHOE.5b7a4e5a.txt
+Copyright: 1997 by Internet Software Consortium, Copyright 1993,1994 by Paul Vixie, Copyright 1988,1990,1993,1994 by Paul Vixie, 1988 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libpam, libutil
diff --git a/share/sbom/pkgconfig/crontab.pc b/share/sbom/pkgconfig/crontab.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/crontab.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: crontab
+Description: Maintain crontab files for individual users (V3)
+URL: https://man.freebsd.org/cgi/man.cgi?query=crontab(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/cron/crontab
+License: ISC
+License.file: ${pcfiledir}/LICENSES/ISC.a9fefede.txt
+Copyright: Copyright 1988,1990,1993,1994 by Paul Vixie, 1997 by Internet Software Consortium
+Requires: csu, libc, libcompiler_rt, libmd, libutil
diff --git a/share/sbom/pkgconfig/crunchgen.pc b/share/sbom/pkgconfig/crunchgen.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/crunchgen.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: crunchgen
+Description: Generates build environment for a crunched binary
+URL: https://man.freebsd.org/cgi/man.cgi?query=crunchgen(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/crunch/crunchgen
+License: BSD-2-Clause AND HPND-sell-variant
+License.file: ${pcfiledir}/LICENSES/HPND-sell-variant.aa138118.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1994 University of Maryland, Copyright 2020 Alex Richardson <arichardson@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/crunchide.pc b/share/sbom/pkgconfig/crunchide.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/crunchide.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: crunchide
+Description: Hides symbol names from ld, for crunching programs together
+URL: https://man.freebsd.org/cgi/man.cgi?query=crunchide(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/crunch/crunchide
+License: BSD-4-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause.f43bb5a1.txt, ${pcfiledir}/LICENSES/HPND-sell-variant.aa138118.txt
+Copyright: 1997 Christopher G. Demetriou, 1994 University of Maryland
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/crypt.pc b/share/sbom/pkgconfig/crypt.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/crypt.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: crypt
+Description: Very simple file encryption
+URL: https://man.freebsd.org/cgi/man.cgi?query=crypt(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/enigma
+License: LicenseRef-Public-Domain
+Requires: csu, libc, libcompiler_rt, libcrypt
diff --git a/share/sbom/pkgconfig/csh.pc b/share/sbom/pkgconfig/csh.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/csh.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: csh
+Description: C shell with file name completion and command line editing
+URL: https://man.freebsd.org/cgi/man.cgi?query=csh(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/csh
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2006 Hajimu UMEMOTO <ume@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/csplit.pc b/share/sbom/pkgconfig/csplit.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/csplit.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: csplit
+Description: Split files based on context
+URL: https://man.freebsd.org/cgi/man.cgi?query=csplit(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/csplit
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2002 Tim J. Robbins
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/csu.pc b/share/sbom/pkgconfig/csu.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/csu.pc
@@ -0,0 +1,10 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: csu
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/csu
+License: BSD-4-Clause AND BSD-2-Clause AND BSD-1-Clause
diff --git a/share/sbom/pkgconfig/ctags.pc b/share/sbom/pkgconfig/ctags.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ctags.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ctags
+Description: Create a tags file
+URL: https://man.freebsd.org/cgi/man.cgi?query=ctags(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/ctags
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1987, 1993, 1994 The Regents of the University of California, 1987, 1993, 1994, 1995 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ctfconvert.pc b/share/sbom/pkgconfig/ctfconvert.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ctfconvert.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ctfconvert
+Description: Utility dumps the contents of the CTF data section present in an ELF binary file.
+URL: https://github.com/openbsd/src/tree/master/usr.bin/ts
+Version: r178481
+Source: https://cgit.freebsd.org/src/tree/cddl/contrib/opensolaris/tools/ctf/cvt
+License: CDDL-1.1
diff --git a/share/sbom/pkgconfig/ctfdump.pc b/share/sbom/pkgconfig/ctfdump.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ctfdump.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ctfdump
+Description: Dump the SUNW_ctf section of an ELF file
+URL: https://github.com/openbsd/src/tree/master/usr.bin/ts
+Version: r178481
+Source: https://cgit.freebsd.org/src/tree/cddl/contrib/opensolaris/tools/ctf/cvt
+License: CDDL-1.1
diff --git a/share/sbom/pkgconfig/ctfmerge.pc b/share/sbom/pkgconfig/ctfmerge.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ctfmerge.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ctfmerge
+Description: Dump the SUNW_ctf section of an ELF file
+URL: https://github.com/openbsd/src/tree/master/usr.bin/ts
+Version: r178481
+Source: https://cgit.freebsd.org/src/tree/cddl/contrib/opensolaris/tools/ctf/cvt
+License: CDDL-1.1
diff --git a/share/sbom/pkgconfig/ctladm.pc b/share/sbom/pkgconfig/ctladm.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ctladm.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ctladm
+Description: CAM Target Layer control utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=ctladm(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/ctladm
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-intel-bsd-2-clause.b794004b.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-unknown-license-reference.ad4a9bb5.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.d3db918d.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.5bebe47e.txt
+Copyright: 2003, 2004 Silicon Graphics International Corp., 1997-2007 Kenneth D. Merry, 2012 The FreeBSD Foundation, 2018 Marcelo Araujo <araujo@FreeBSD.org>, Copyright julian Elischer 1993, 1994 HD Associates (contact dufault@hda.com), 1998 Kenneth D. Merry
+Requires: csu, libc, libcam, libcompiler_rt, libexpat, libnv, libsbuf, libutil
diff --git a/share/sbom/pkgconfig/ctld.pc b/share/sbom/pkgconfig/ctld.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ctld.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ctld
+Description: CAM Target Layer / iSCSI target daemon
+URL: https://man.freebsd.org/cgi/man.cgi?query=ctld(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/ctld
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-intel-bsd-2-clause.b794004b.txt
+Copyright: 2014 Alexander Motin <mav@FreeBSD.org>, 2012 The FreeBSD Foundation, 2003, 2004 Silicon Graphics International Corp., 1997-2007 Kenneth D. Merry, 2017 Jakub Wojciech Klama <jceel@FreeBSD.org>, 2025 Chelsio Communications, Inc., 2015 iXsystems Inc., 2023-2025 Chelsio Communications, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt, libexpat, libiscsiutil, libmd, libnv, libsbuf, libucl, libutil, msun
diff --git a/share/sbom/pkgconfig/ctlstat.pc b/share/sbom/pkgconfig/ctlstat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ctlstat.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ctlstat
+Description: CAM Target Layer statistics utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=ctlstat(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/ctlstat
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-intel-bsd-2-clause.b794004b.txt
+Copyright: 2004, 2008, 2009 Silicon Graphics International Corp., 2017 Alexander Motin <mav@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libexpat, libsbuf
diff --git a/share/sbom/pkgconfig/cu.pc b/share/sbom/pkgconfig/cu.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/cu.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: cu
+Description: Call UNIX over a serial line
+URL: https://man.freebsd.org/cgi/man.cgi?query=cu(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/tip/tip
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1983, 1993 The Regents of the University of California, 1992, 1993 The Regents of the University of California, 1989, 1993 The Regents of the University of California, 1988, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/cut.pc b/share/sbom/pkgconfig/cut.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/cut.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: cut
+Description: Cut out selected portions of each line of a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=cut(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/cut
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/cxgbetool.pc b/share/sbom/pkgconfig/cxgbetool.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/cxgbetool.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: cxgbetool
+Description: Userspace companion to Chelsio cxgbe Ethernet driver
+URL: https://man.freebsd.org/cgi/man.cgi?query=cxgbetool(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/cxgbetool
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2018 Chelsio Communications, Inc., 2011, 2025 Chelsio Communications
+Requires: csu, libc, libcompiler_rt, libpcap
diff --git a/share/sbom/pkgconfig/daemon.pc b/share/sbom/pkgconfig/daemon.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/daemon.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: daemon
+Description: Run detached from the controlling terminal
+URL: https://man.freebsd.org/cgi/man.cgi?query=daemon(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/daemon
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.dfb2e1d4.txt
+Copyright: 1999 Berkeley Software Design, Inc.
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/date.pc b/share/sbom/pkgconfig/date.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/date.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: date
+Description: Display or set date and time
+URL: https://man.freebsd.org/cgi/man.cgi?query=date(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/date
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1997 Brian Somers <brian@Awfulhak.org>, 1985, 1987, 1988, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/dc.pc b/share/sbom/pkgconfig/dc.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/dc.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: dc
+Description: Arbitrary-precision decimal reverse-Polish notation calculator
+URL: https://gavinhoward.com/tag/bc/
+Version: 7.1.0
+Source: https://github.com/gavinhoward/bc/tree/7.1.0
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/dconschat.pc b/share/sbom/pkgconfig/dconschat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/dconschat.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: dconschat
+Description: User interface to dcons(4)
+URL: https://man.freebsd.org/cgi/man.cgi?query=dconschat(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/dconschat
+License: BSD-4-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause-UC.15290ac5.txt
+Copyright: 2003 Hidetoshi Shimokawa
+Requires: csu, libc, libcompiler_rt, libkvm
diff --git a/share/sbom/pkgconfig/dd.pc b/share/sbom/pkgconfig/dd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/dd.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: dd
+Description: Convert and copy a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=dd(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/dd
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.121f252d.txt
+Copyright: 1991, 1993, 1994 The Regents of the University of California, 1991, 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/ddb.pc b/share/sbom/pkgconfig/ddb.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ddb.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: ddb
+Description: Configure DDB kernel debugger properties
+URL: https://man.freebsd.org/cgi/man.cgi?query=ddb(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/ddb
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2007 Robert N. M. Watson, 2008 Robert N. M. Watson
+Requires: csu, libc, libcompiler_rt, libkvm
diff --git a/share/sbom/pkgconfig/decryptcore.pc b/share/sbom/pkgconfig/decryptcore.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/decryptcore.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: decryptcore
+Description: Decrypt a core dump of the operating system
+URL: https://man.freebsd.org/cgi/man.cgi?query=decryptcore(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/decryptcore
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2016 Konrad Witaszczyk <def@FreeBSD.org>
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt, libpjdlog
diff --git a/share/sbom/pkgconfig/devctl.pc b/share/sbom/pkgconfig/devctl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/devctl.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: devctl
+Description: Device control utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=devctl(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/devctl
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2014 John Baldwin <jhb@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libdevctl
diff --git a/share/sbom/pkgconfig/devd.pc b/share/sbom/pkgconfig/devd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/devd.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: devd
+Description: Device state change daemon
+URL: https://man.freebsd.org/cgi/man.cgi?query=devd(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/devd
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 2002 M. Warner Losh <imp@FreeBSD.org>, 2002-2003 M. Warner Losh <imp@FreeBSD.org>, 2002-2010 M. Warner Losh <imp@FreeBSD.org>, 1988, 1993 The Regents of the University of California
+Requires: csu, libc, libc++, libcompiler_rt, libcxxrt, libutil, msun
diff --git a/share/sbom/pkgconfig/devfs.pc b/share/sbom/pkgconfig/devfs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/devfs.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: devfs
+Description: DEVFS control
+URL: https://man.freebsd.org/cgi/man.cgi?query=devfs(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/devfs
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.df18d8a7.txt
+Copyright: 2001, 2002 Dima Dorfman, 2002 Dima Dorfman, 2003 The FreeBSD Project
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/devinfo.pc b/share/sbom/pkgconfig/devinfo.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/devinfo.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: devinfo
+Description: Print information about system device configuration
+URL: https://man.freebsd.org/cgi/man.cgi?query=devinfo(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/devinfo
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2000, 2001 Michael Smith, 2000 BSDi
+Requires: csu, libc, libcompiler_rt, libdevinfo
diff --git a/share/sbom/pkgconfig/devmatch.pc b/share/sbom/pkgconfig/devmatch.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/devmatch.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: devmatch
+Description: Print information about unattached devices
+URL: https://man.freebsd.org/cgi/man.cgi?query=devmatch(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/devmatch
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2017 Netflix, Inc.
+Requires: csu, libc, libcompiler_rt, libdevinfo
diff --git a/share/sbom/pkgconfig/df.pc b/share/sbom/pkgconfig/df.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/df.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: df
+Description: Display free disk space
+URL: https://man.freebsd.org/cgi/man.cgi?query=df(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/df
+License: BSD-3-Clause AND LicenseRef-scancode-unknown-license-reference
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-unknown-license-reference.39686fea.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1990, 1993, 1994 The Regents of the University of California, (c) UNIX System Laboratories, Inc.
+Requires: csu, libc, libcompiler_rt, libutil, libxo
diff --git a/share/sbom/pkgconfig/dhclient-script.pc b/share/sbom/pkgconfig/dhclient-script.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/dhclient-script.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: dhclient-script
+Description: DHCP client network configuration script
+URL: https://man.freebsd.org/cgi/man.cgi?query=dhclient-script(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/dhclient
+License: BSD-3-Clause AND ISC
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.07d9d3ee.txt, ${pcfiledir}/LICENSES/ISC.65a17f42.txt, ${pcfiledir}/LICENSES/ISC.11e6b90c.txt
+Copyright: 1995, 1996 The Internet Software Consortium, Copyright 2004 Henning Brauer <henning@openbsd.org>, 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium, 2004 Henning Brauer <henning@openbsd.org>, 1995, 1996, 1997 The Internet Software Consortium, 1996 The Internet Software Consortium, 1995, 1996, 1997, 1998 The Internet Software Consortium, 1995, 1996, 1998 The Internet Software Consortium, 1995 RadioMail Corporation, 1995 The Internet Software Consortium, 2003 Kenneth R Westerback <krw@openbsd.org>, 2021 Franco Fichtner <franco@opnsense.org>, 1995, 1996, 1998, 1999 The Internet Software Consortium, 1995, 1996, 1999 The Internet Software Consortium, 1997 The Internet Software Consortium
+Requires: csu, libc, libcapsicum, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/dhclient.pc b/share/sbom/pkgconfig/dhclient.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/dhclient.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: dhclient
+Description: Dynamic Host Configuration Protocol (DHCP) client
+URL: https://man.freebsd.org/cgi/man.cgi?query=dhclient(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/dhclient
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.07d9d3ee.txt, ${pcfiledir}/LICENSES/ISC.65a17f42.txt, ${pcfiledir}/LICENSES/ISC.11e6b90c.txt
+Copyright: 1995, 1996 The Internet Software Consortium, Copyright 2004 Henning Brauer <henning@openbsd.org>, 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium, 2004 Henning Brauer <henning@openbsd.org>, 1995, 1996, 1997 The Internet Software Consortium, 1996 The Internet Software Consortium, 1995, 1996, 1997, 1998 The Internet Software Consortium, 1995, 1996, 1998 The Internet Software Consortium, 1995 RadioMail Corporation, 1995 The Internet Software Consortium, 2003 Kenneth R Westerback <krw@openbsd.org>, 2021 Franco Fichtner <franco@opnsense.org>, 1995, 1996, 1998, 1999 The Internet Software Consortium, 1995, 1996, 1999 The Internet Software Consortium, 1997 The Internet Software Consortium
+Requires: csu, libc, libcapsicum, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/diff.pc b/share/sbom/pkgconfig/diff.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/diff.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: diff
+Description: GNU diffutils are comprised of diff, diff3, sdiff, and cmp, utilities for showing differences between files
+URL: https://www.gnu.org/software/diffutils/
+Version: 2.8.7
+Source: https://cgit.git.savannah.gnu.org/cgit/diffutils.git/tag/?h=v2.8.7
+License: GPL-2.0
diff --git a/share/sbom/pkgconfig/diff3.pc b/share/sbom/pkgconfig/diff3.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/diff3.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: diff3
+Description: 3-way differential file comparison
+URL: https://man.freebsd.org/cgi/man.cgi?query=diff3(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/diff3
+License: BSD-3-Clause AND Caldera-no-preamble
+License.file: ${pcfiledir}/LICENSES/Caldera-no-preamble.cecc855a.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: Caldera International Inc. 2001-2002, 1991, 1993 The Regents of the University of California
diff --git a/share/sbom/pkgconfig/dirname.pc b/share/sbom/pkgconfig/dirname.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/dirname.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: dirname
+Description: Return filename or directory portion of pathname
+URL: https://man.freebsd.org/cgi/man.cgi?query=dirname(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/dirname
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/diskinfo.pc b/share/sbom/pkgconfig/diskinfo.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/diskinfo.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: diskinfo
+Description: Get information about disk device
+URL: https://man.freebsd.org/cgi/man.cgi?query=diskinfo(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/diskinfo
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.9136516b.txt
+Copyright: 2003 Poul-Henning Kamp, 2015 Spectra Logic Corporation, 2017 Alexander Motin <mav@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/disklabel.pc b/share/sbom/pkgconfig/disklabel.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/disklabel.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: disklabel
+Description: Read and write BSD label
+URL: https://man.freebsd.org/cgi/man.cgi?query=bsdlabel(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/bsdlabel
+License: BSD-4-Clause AND BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause-UC.95e04bcc.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1994, 1995 Gordon W. Ross, 1994 Theo de Raadt, 1987, 1993 The Regents of the University of California, 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libgeom
diff --git a/share/sbom/pkgconfig/dmesg.pc b/share/sbom/pkgconfig/dmesg.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/dmesg.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: dmesg
+Description: Display the system message buffer
+URL: https://man.freebsd.org/cgi/man.cgi?query=dmesg(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/dmesg
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libkvm
diff --git a/share/sbom/pkgconfig/dnctl.pc b/share/sbom/pkgconfig/dnctl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/dnctl.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: dnctl
+Description: User interface for firewall, traffic shaper, packet scheduler, in-kernel NAT.
+URL: https://man.freebsd.org/cgi/man.cgi?query=dnctl(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/ipfw
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-other-permissive.ce7c2bce.txt
+Copyright: 2015-2019 Yandex LLC, 2015-2019 Andrey V. Elsukov <ae@FreeBSD.org>, 2002-2003 Luigi Rizzo, 1996 Alex Nash, Paul Traina, Poul-Henning Kamp, 1994 Ugen, 1993 Daniel Boulet, 2019 Yandex LLC, 2019 Andrey V. Elsukov <ae@FreeBSD.org>, 2019 Boris N. Lytochkin <lytboris@gmail.com>, 2014 Yandex LLC, 2014 Alexander V. Chernikov, 2015-2016 Alexander V. Chernikov <melifaro@FreeBSD.org>, 2002-2003,2010 Luigi Rizzo, 2016 Yandex LLC, 2016 Andrey V. Elsukov <ae@FreeBSD.org>, 2016 Centre for Advanced Internet Architectures, Swinburne University of Technology, Melbourne, Australia
+Requires: csu, libalias, libc, libcompiler_rt, libjail, libutil
diff --git a/share/sbom/pkgconfig/domainname.pc b/share/sbom/pkgconfig/domainname.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/domainname.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: domainname
+Description: Set or print name of current YP/NIS domain
+URL: https://man.freebsd.org/cgi/man.cgi?query=domainname(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/domainname
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/drill.pc b/share/sbom/pkgconfig/drill.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/drill.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: drill
+Description: LDNS is a DNS library that facilitates DNS tool programming
+URL: https://github.com/NLnetLabs/ldns
+Version: 1.8.3
+License: BSD-3-Clause
diff --git a/share/sbom/pkgconfig/dtc.pc b/share/sbom/pkgconfig/dtc.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/dtc.pc
@@ -0,0 +1,15 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: dtc
+Description: FreeBSD Device Tree Compiler
+URL: https://github.com/davidchisnall/dtc
+Version: 23387dd
+Source: https://github.com/davidchisnall/dtc/tree/23387dd5462d38bf2e7301e2811913d82e167efc
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2013 David Chisnall
+Maintainer: jrtc27@, kevans@, theraven@
+Requires: libcxxrt
diff --git a/share/sbom/pkgconfig/dtrace.pc b/share/sbom/pkgconfig/dtrace.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/dtrace.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: dtrace
+Description: Dynamic tracing compiler and tracing utility
+URL: https://cgit.freebsd.org/src/tree/cddl/contrib/opensolaris/cmd/dtrace
+Version: r178481
+Source: https://cgit.freebsd.org/src/tree/cddl/contrib/opensolaris/cmd/dtrace
+License: CDDL-1.1
diff --git a/share/sbom/pkgconfig/du.pc b/share/sbom/pkgconfig/du.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/du.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: du
+Description: Display disk usage statistics
+URL: https://man.freebsd.org/cgi/man.cgi?query=du(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/du
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libutil, libxo
diff --git a/share/sbom/pkgconfig/dump.pc b/share/sbom/pkgconfig/dump.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/dump.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: dump
+Description: File system backup
+URL: https://man.freebsd.org/cgi/man.cgi?query=dump(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/dump
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993 The Regents of the University of California, 1980, 1988, 1993 The Regents of the University of California, 1980, 1988, 1991, 1993 The Regents of the University of California, 1980, 1993 The Regents of the University of California, 1980, 1991, 1993, 1994 The Regents of the University of California, 1980, 1991, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libufs
diff --git a/share/sbom/pkgconfig/dumpcis.pc b/share/sbom/pkgconfig/dumpcis.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/dumpcis.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: dumpcis
+Description: PC Card and Cardbus (PCMCIA) CIS display tool
+URL: https://man.freebsd.org/cgi/man.cgi?query=dumpcis(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/dumpcis
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.b5add324.txt
+Copyright: 2006 M. Warner Losh <imp@FreeBSD.org>, 1995 Andrew McRae
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/dumpfs.pc b/share/sbom/pkgconfig/dumpfs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/dumpfs.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: dumpfs
+Description: Dump UFS file system information
+URL: https://man.freebsd.org/cgi/man.cgi?query=dumpfs(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/dumpfs
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 2009 Robert N. M. Watson, 2002 Networks Associates Technology, Inc., 1983, 1992, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libufs
diff --git a/share/sbom/pkgconfig/dumpon.pc b/share/sbom/pkgconfig/dumpon.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/dumpon.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: dumpon
+Description: Specify a device for crash dumps
+URL: https://man.freebsd.org/cgi/man.cgi?query=dumpon(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/dumpon
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/dwatch.pc b/share/sbom/pkgconfig/dwatch.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/dwatch.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: dwatch
+Description: Watch processes as they trigger a particular DTrace probe.
+URL: https://cgit.freebsd.org/src/tree/cddl/usr.sbin/dwatch
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/cddl/usr.sbin/dwatch
+License: CDDL-1.1
diff --git a/share/sbom/pkgconfig/echo.pc b/share/sbom/pkgconfig/echo.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/echo.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: echo
+Description: Write arguments to the standard output
+URL: https://man.freebsd.org/cgi/man.cgi?query=echo(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/echo
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ed.pc b/share/sbom/pkgconfig/ed.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ed.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: ed
+Description: Text editor
+URL: https://man.freebsd.org/cgi/man.cgi?query=ed(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/ed
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.da76510e.txt
+Copyright: 1993 Andrew Moore, Talke Studio, 1993 Andrew Moore
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/edit.pc b/share/sbom/pkgconfig/edit.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/edit.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: edit
+Description: Easy Editor
+Version: 1.5.0
+License: BSD-2-Clause
+Requires: libncurses
diff --git a/share/sbom/pkgconfig/editmap.pc b/share/sbom/pkgconfig/editmap.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/editmap.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: editmap
+Description: General purpose internetwork email routing application
+URL: https://ftp.sendmail.org
+Version: 8.18.1
+Source: https://ftp.sendmail.org/sendmail.8.18.1.tar.gz
+License: Sendmail
+Requires: openssl
diff --git a/share/sbom/pkgconfig/edquota.pc b/share/sbom/pkgconfig/edquota.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/edquota.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: edquota
+Description: Edit user quotas
+URL: https://man.freebsd.org/cgi/man.cgi?query=edquota(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/edquota
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993 The Regents of the University of California, 1980, 1990, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/ee.pc b/share/sbom/pkgconfig/ee.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ee.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ee
+Description: Arbitrary TCP and UDP connections and listens
+URL: https://github.com/NetBSD/pkgsrc/tree/trunk/editors/ee/
+Version: 1.5.2
+Source: https://archive.netbsd.org/pub/pkgsrc-archive/distfiles/2023Q2/ee-1.5.2/ee-1.5.2.src.tgz
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/efibootmgr.pc b/share/sbom/pkgconfig/efibootmgr.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/efibootmgr.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: efibootmgr
+Description: Manipulate the EFI Boot Manager
+URL: https://man.freebsd.org/cgi/man.cgi?query=efibootmgr(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/efibootmgr
+License: LicenseRef-scancode-bsd-unchanged
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-bsd-unchanged.fad7b6fb.txt
+Copyright: 2017-2018 Netflix, Inc.
+Requires: csu, libc, libcompiler_rt, libefivar, libgeom
diff --git a/share/sbom/pkgconfig/efidp.pc b/share/sbom/pkgconfig/efidp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/efidp.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: efidp
+Description: UEFI Device Path manipulation
+URL: https://man.freebsd.org/cgi/man.cgi?query=efidp(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/efidp
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2016 Netflix, Inc.
+Requires: csu, libc, libcompiler_rt, libefivar, libgeom
diff --git a/share/sbom/pkgconfig/efitable.pc b/share/sbom/pkgconfig/efitable.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/efitable.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: efitable
+Description: Dump UEFI tables
+URL: https://man.freebsd.org/cgi/man.cgi?query=efitable(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/efitable
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2021 3mdeb Embedded Systems Consulting <contact@3mdeb.com>
+Requires: csu, libc, libcompiler_rt, libxo
diff --git a/share/sbom/pkgconfig/efivar.pc b/share/sbom/pkgconfig/efivar.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/efivar.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: efivar
+Description: UEFI environment variable interaction
+URL: https://man.freebsd.org/cgi/man.cgi?query=efivar(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/efivar
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2017-2019 Netflix, Inc., 2017 Netflix, Inc., 2016-2021 Netflix, Inc.
+Requires: csu, libc, libcompiler_rt, libefivar, libgeom
diff --git a/share/sbom/pkgconfig/efiwake.pc b/share/sbom/pkgconfig/efiwake.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/efiwake.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: efiwake
+Description: Manipulate the EFI wake timer
+URL: https://man.freebsd.org/cgi/man.cgi?query=efiwake(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/efiwake
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2023 Johannes Totz
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/egrep.pc b/share/sbom/pkgconfig/egrep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/egrep.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: egrep
+Description: File pattern searcher
+URL: https://man.freebsd.org/cgi/man.cgi?query=egrep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/grep
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999 James Howard and Dag-Erling Smorgrav, 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org>, 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>, 2017 Kyle Evans <kevans@FreeBSD.org>, 2010 Dimitry Andric <dimitry@andric.com>, 2020 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, libbz2, libc, libcompiler_rt, libregex, libz
diff --git a/share/sbom/pkgconfig/elfcopy.pc b/share/sbom/pkgconfig/elfcopy.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/elfcopy.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: elfcopy
+Description: BSD licensed ELF toolchain
+URL: https://sourceforge.net/projects/elftoolchain/
+Version: r4912
+Source: https://sourceforge.net/p/elftoolchain/code/
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/elfctl.pc b/share/sbom/pkgconfig/elfctl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/elfctl.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: elfctl
+Description: Change an ELF binary's feature control note
+URL: https://man.freebsd.org/cgi/man.cgi?query=elfctl(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/elfctl
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2019 The FreeBSD Foundation
diff --git a/share/sbom/pkgconfig/elfdump.pc b/share/sbom/pkgconfig/elfdump.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/elfdump.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: elfdump
+Description: Display information about ELF files
+URL: https://man.freebsd.org/cgi/man.cgi?query=elfdump(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/elfdump
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2003 David O'Brien, 2001 Jake Burkholder
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/enigma.pc b/share/sbom/pkgconfig/enigma.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/enigma.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: enigma
+Description: Very simple file encryption
+URL: https://man.freebsd.org/cgi/man.cgi?query=enigma(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/enigma
+License: LicenseRef-Public-Domain
+Requires: csu, libc, libcompiler_rt, libcrypt
diff --git a/share/sbom/pkgconfig/env.pc b/share/sbom/pkgconfig/env.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/env.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: env
+Description: Set environment and execute command, or print environment
+URL: https://man.freebsd.org/cgi/man.cgi?query=env(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/env
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-2-Clause-Views.fb8744a6.txt
+Copyright: 1988, 1993, 1994 The Regents of the University of California, 2005 - Garance Alistair Drosehn <gad@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/etcupdate.pc b/share/sbom/pkgconfig/etcupdate.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/etcupdate.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: etcupdate
+Description: Manage updates to system files not updated by installworld
+URL: https://man.freebsd.org/cgi/man.cgi?query=etcupdate(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/etcupdate
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/etdump.pc b/share/sbom/pkgconfig/etdump.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/etdump.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: etdump
+Description: Dump ISO-9660 El Torito boot catalog information
+URL: https://man.freebsd.org/cgi/man.cgi?query=etdump(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/etdump
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2018 iXsystems, Inc.
diff --git a/share/sbom/pkgconfig/etherswitchcfg.pc b/share/sbom/pkgconfig/etherswitchcfg.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/etherswitchcfg.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: etherswitchcfg
+Description: Configure a built-in Ethernet switch
+URL: https://man.freebsd.org/cgi/man.cgi?query=etherswitchcfg(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/etherswitchcfg
+License: BSD-4-Clause AND BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause.2311d4ed.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.e289d4bf.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1997 Jason R. Thorpe, 1983, 1993 The Regents of the University of California, 2011-2012 Stefan Bethke
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ex.pc b/share/sbom/pkgconfig/ex.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ex.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ex
+Description: Multibyte fork of the nvi editor for BSD
+URL: https://github.com/lichray/nvi2
+Version: 2.2.2
+Source: https://github.com/lichray/nvi2/tree/v2.2.2
+License: BSD-3-Clause
+Requires: csu, libc, libutil, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/expand.pc b/share/sbom/pkgconfig/expand.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/expand.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: expand
+Description: Expand tabs to spaces, and vice versa
+URL: https://man.freebsd.org/cgi/man.cgi?query=expand(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/expand
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/expr.pc b/share/sbom/pkgconfig/expr.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/expr.pc
@@ -0,0 +1,13 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: expr
+Description: Evaluate expression
+URL: https://man.freebsd.org/cgi/man.cgi?query=expr(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/expr
+License: LicenseRef-scancode-public-domain
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.0bdbfda1.txt
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/extattrctl.pc b/share/sbom/pkgconfig/extattrctl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/extattrctl.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: extattrctl
+Description: Manage UFS1 extended attributes
+URL: https://man.freebsd.org/cgi/man.cgi?query=extattrctl(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/extattrctl
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999-2002 Robert N. M. Watson
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/factor.pc b/share/sbom/pkgconfig/factor.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/factor.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: factor
+Description: Factor a number, generate primes
+URL: https://man.freebsd.org/cgi/man.cgi?query=factor(6)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/factor
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libthr
diff --git a/share/sbom/pkgconfig/false.pc b/share/sbom/pkgconfig/false.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/false.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: false
+Description: Return false value
+URL: https://man.freebsd.org/cgi/man.cgi?query=false(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/false
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/fastboot.pc b/share/sbom/pkgconfig/fastboot.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fastboot.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: fastboot
+Description: Stopping and restarting the system
+URL: https://man.freebsd.org/cgi/man.cgi?query=fastboot(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/reboot
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1986, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/fasthalt.pc b/share/sbom/pkgconfig/fasthalt.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fasthalt.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: fasthalt
+Description: Stopping and restarting the system
+URL: https://man.freebsd.org/cgi/man.cgi?query=fasthalt(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/reboot
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1986, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/fc.pc b/share/sbom/pkgconfig/fc.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fc.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: fc
+Description: List, edit and reexecute command from history
+URL: https://man.freebsd.org/cgi/man.cgi?query=sh(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/sh
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California, 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>, 2010-2015 Jilles Tjoelker <jilles@stack.nl>, 1993 The Regents of the University of California, Copyright 1989 by Kenneth Almquist, 1995 The Regents of the University of California, 2002 Herbert Xu, 2007 Herbert Xu <herbert@gondor.apana.org.au>
+Requires: csu, libc, libcompiler_rt, libedit
diff --git a/share/sbom/pkgconfig/fdcontrol.pc b/share/sbom/pkgconfig/fdcontrol.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fdcontrol.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: fdcontrol
+Description: Display and modify floppy disk parameters
+URL: https://man.freebsd.org/cgi/man.cgi?query=fdcontrol(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/fdcontrol
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.0bb055ab.txt
+Copyright: 1994, 2001 by Joerg Wunsch, Dresden
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/fdformat.pc b/share/sbom/pkgconfig/fdformat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fdformat.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: fdformat
+Description: Format floppy disks
+URL: https://man.freebsd.org/cgi/man.cgi?query=fdformat(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/fdformat
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.0bb055ab.txt
+Copyright: 1992-1994,2001 by Joerg Wunsch, Dresden
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/fdisk.pc b/share/sbom/pkgconfig/fdisk.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fdisk.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: fdisk
+Description: PC slice table maintenance utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=fdisk(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/fdisk
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/CMU-Mach.22826b3a.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1992 Carnegie Mellon University, 1989 Robert. V. Baron Created, 2019 Conrad Meyer <cem@FreeBSD.org>, 2003 Poul-Henning Kamp
+Requires: csu, libc, libcompiler_rt, libgeom
diff --git a/share/sbom/pkgconfig/fdread.pc b/share/sbom/pkgconfig/fdread.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fdread.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: fdread
+Description: Read floppy disks
+URL: https://man.freebsd.org/cgi/man.cgi?query=fdread(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/fdread
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.3fce2f6f.txt
+Copyright: 2001 Joerg Wunsch
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/fdwrite.pc b/share/sbom/pkgconfig/fdwrite.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fdwrite.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: fdwrite
+Description: Format and write floppy disks
+URL: https://man.freebsd.org/cgi/man.cgi?query=fdwrite(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/fdwrite
+License: Beerware
+License.file: ${pcfiledir}/LICENSES/Beerware.6aa5c23c.txt
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/fetch.pc b/share/sbom/pkgconfig/fetch.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fetch.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: fetch
+Description: Retrieve a file by Uniform Resource Locator
+URL: https://man.freebsd.org/cgi/man.cgi?query=fetch(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/fetch
+License: LicenseRef-scancode-bsd-unchanged
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-bsd-unchanged.e00db836.txt
+Copyright: 2000-2014 Dag-Erling Smorgrav, 2013 Michael Gmelin <freebsd@grem.de>
+Requires: csu, libc, libcompiler_rt, libfetch
diff --git a/share/sbom/pkgconfig/ffsinfo.pc b/share/sbom/pkgconfig/ffsinfo.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ffsinfo.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: ffsinfo
+Description: Dump all meta information of an existing ufs file system
+URL: https://man.freebsd.org/cgi/man.cgi?query=ffsinfo(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/ffsinfo
+License: BSD-4-Clause AND BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause-UC.5d40a3e4.txt
+Copyright: 2000 Christoph Herrmann, Thomas-Henning von Kamptz, 1980, 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libufs
diff --git a/share/sbom/pkgconfig/fg.pc b/share/sbom/pkgconfig/fg.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fg.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: fg
+Description: Foreground PID
+URL: https://man.freebsd.org/cgi/man.cgi?query=sh(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/sh
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California, 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>, 2010-2015 Jilles Tjoelker <jilles@stack.nl>, 1993 The Regents of the University of California, Copyright 1989 by Kenneth Almquist, 1995 The Regents of the University of California, 2002 Herbert Xu, 2007 Herbert Xu <herbert@gondor.apana.org.au>
+Requires: csu, libc, libcompiler_rt, libedit
diff --git a/share/sbom/pkgconfig/fgrep.pc b/share/sbom/pkgconfig/fgrep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fgrep.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: fgrep
+Description: File pattern searcher
+URL: https://man.freebsd.org/cgi/man.cgi?query=fgrep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/grep
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999 James Howard and Dag-Erling Smorgrav, 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org>, 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>, 2017 Kyle Evans <kevans@FreeBSD.org>, 2010 Dimitry Andric <dimitry@andric.com>, 2020 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, libbz2, libc, libcompiler_rt, libregex, libz
diff --git a/share/sbom/pkgconfig/fifolog_create.pc b/share/sbom/pkgconfig/fifolog_create.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fifolog_create.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: fifolog_create
+Description: Initialize, write, seek and extract data from a fifolog
+URL: https://man.freebsd.org/cgi/man.cgi?query=fifolog_create(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/fifolog/fifolog_create
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2005-2008 Poul-Henning Kamp
+Requires: csu, libc, libcompiler_rt, libutil, libz
diff --git a/share/sbom/pkgconfig/fifolog_reader.pc b/share/sbom/pkgconfig/fifolog_reader.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fifolog_reader.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: fifolog_reader
+Description: Initialize, write, seek and extract data from a fifolog
+URL: https://man.freebsd.org/cgi/man.cgi?query=fifolog_reader(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/fifolog/fifolog_reader
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2005-2008 Poul-Henning Kamp
+Requires: csu, libc, libcompiler_rt, libutil, libz
diff --git a/share/sbom/pkgconfig/fifolog_writer.pc b/share/sbom/pkgconfig/fifolog_writer.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fifolog_writer.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: fifolog_writer
+Description: Initialize, write, seek and extract data from a fifolog
+URL: https://man.freebsd.org/cgi/man.cgi?query=fifolog_writer(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/fifolog/fifolog_writer
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2005-2008 Poul-Henning Kamp
+Requires: csu, libc, libcompiler_rt, libutil, libz
diff --git a/share/sbom/pkgconfig/file.pc b/share/sbom/pkgconfig/file.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/file.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: file
+Description: Open source implementation of the file(1) command
+URL: https://www.darwinsys.com/file/
+Version: 5.46
+Source: https://github.com/file/file/tree/FILE5_46
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/file2c.pc b/share/sbom/pkgconfig/file2c.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/file2c.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: file2c
+Description: Convert file to c-source
+URL: https://man.freebsd.org/cgi/man.cgi?query=file2c(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/file2c
+License: Beerware
+License.file: ${pcfiledir}/LICENSES/Beerware.6aa5c23c.txt
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/find.pc b/share/sbom/pkgconfig/find.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/find.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: find
+Description: Walk a file hierarchy
+URL: https://man.freebsd.org/cgi/man.cgi?query=find(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/find
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.a01f78e1.txt
+Copyright: 1990, 1993 The Regents of the University of California, 1989, 1993 The Regents of the University of California, 1991, 1993, 1994 The Regents of the University of California, 1990, 1993, 1994 The Regents of the University of California, 2023, Netflix, Inc
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/finger.pc b/share/sbom/pkgconfig/finger.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/finger.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: finger
+Description: User information lookup program
+URL: https://man.freebsd.org/cgi/man.cgi?query=finger(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/finger
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1989, 1993 The Regents of the University of California, 1991, 1993 The Regents of the University of California, 2000 Mark Knight <markk@knigma.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/flex++.pc b/share/sbom/pkgconfig/flex++.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/flex++.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: flex++
+Description: Fast lexical analyzer generator
+URL: https://github.com/westes/flex
+Version: 2.6.4
+Source: https://github.com/westes/flex/tree/v2.6.4
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/flex.pc b/share/sbom/pkgconfig/flex.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/flex.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: flex
+Description: Fast lexical analyzer generator
+URL: https://github.com/westes/flex
+Version: 2.6.4
+Source: https://github.com/westes/flex/tree/v2.6.4
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/flowctl.pc b/share/sbom/pkgconfig/flowctl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/flowctl.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: flowctl
+Description: Ng_netflow(4) control utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=flowctl(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/flowctl
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2004-2005 Gleb Smirnoff <glebius@FreeBSD.org>, 2001-2003 Roman V. Palagin <romanp@unshadow.net>
+Requires: csu, libc, libcompiler_rt, libnetgraph
diff --git a/share/sbom/pkgconfig/fmt.pc b/share/sbom/pkgconfig/fmt.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fmt.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: fmt
+Description: Simple text formatter
+URL: https://man.freebsd.org/cgi/man.cgi?query=fmt(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/fmt
+License: LicenseRef-scancode-other-permissive
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-other-permissive.916af215.txt
+Copyright: 1997 Gareth McCaughan
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/fold.pc b/share/sbom/pkgconfig/fold.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fold.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: fold
+Description: Fold long lines for finite width output device
+URL: https://man.freebsd.org/cgi/man.cgi?query=fold(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/fold
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1990, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/fortune.pc b/share/sbom/pkgconfig/fortune.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fortune.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: fortune
+Description: Print a random, hopefully interesting, adage
+URL: https://man.freebsd.org/cgi/man.cgi?query=fortune(6)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/fortune/fortune
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California, 1986, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/freebsd-update.pc b/share/sbom/pkgconfig/freebsd-update.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/freebsd-update.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: freebsd-update
+Description: Fetch and install binary updates to FreeBSD
+URL: https://man.freebsd.org/cgi/man.cgi?query=freebsd-update(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/freebsd-update
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/freebsd-version.pc b/share/sbom/pkgconfig/freebsd-version.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/freebsd-version.pc
@@ -0,0 +1,13 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: freebsd-version
+Description: Print the version and patch level of the installed system
+URL: https://man.freebsd.org/cgi/man.cgi?query=freebsd-version(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/freebsd-version
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2013 Dag-Erling Smorgrav
diff --git a/share/sbom/pkgconfig/from.pc b/share/sbom/pkgconfig/from.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/from.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: from
+Description: Print names of those who have sent mail
+URL: https://man.freebsd.org/cgi/man.cgi?query=from(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/from
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1988, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/fsck.pc b/share/sbom/pkgconfig/fsck.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fsck.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: fsck
+Description: File system consistency check and interactive repair
+URL: https://man.freebsd.org/cgi/man.cgi?query=fsck(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/fsck
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt
+Copyright: 1990, 1993 The Regents of the University of California, 1996 Christos Zoulas, 1980, 1989, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/fsck_4.2bsd.pc b/share/sbom/pkgconfig/fsck_4.2bsd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fsck_4.2bsd.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: fsck_4.2bsd
+Description: File system consistency check and interactive repair
+URL: https://man.freebsd.org/cgi/man.cgi?query=fsck_ffs(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/fsck_ffs
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.f6424733.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1980, 1986, 1993 The Regents of the University of California, 2006 Pawel Jakub Dawidek <pjd@FreeBSD.org>, 1982, 1986, 1989, 1993 The Regents of the University of California, 2002 Poul-Henning Kamp, 2002 Networks Associates Technology, Inc., Copyright 2009, 2010 Jeffrey W. Roberson <jeff@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libufs
diff --git a/share/sbom/pkgconfig/fsck_ffs.pc b/share/sbom/pkgconfig/fsck_ffs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fsck_ffs.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: fsck_ffs
+Description: File system consistency check and interactive repair
+URL: https://man.freebsd.org/cgi/man.cgi?query=fsck_ffs(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/fsck_ffs
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.f6424733.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1980, 1986, 1993 The Regents of the University of California, 2006 Pawel Jakub Dawidek <pjd@FreeBSD.org>, 1982, 1986, 1989, 1993 The Regents of the University of California, 2002 Poul-Henning Kamp, 2002 Networks Associates Technology, Inc., Copyright 2009, 2010 Jeffrey W. Roberson <jeff@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libufs
diff --git a/share/sbom/pkgconfig/fsck_msdosfs.pc b/share/sbom/pkgconfig/fsck_msdosfs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fsck_msdosfs.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: fsck_msdosfs
+Description: DOS/Windows (FAT) file system consistency checker
+URL: https://man.freebsd.org/cgi/man.cgi?query=fsck_msdosfs(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/fsck_msdosfs
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.89712200.txt
+Copyright: 1995, 1997 Wolfgang Solfrank, 1995 Martin Husemann, 1995, 1996, 1997 Wolfgang Solfrank, 1995 Wolfgang Solfrank, 2019 Google LLC
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/fsck_ufs.pc b/share/sbom/pkgconfig/fsck_ufs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fsck_ufs.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: fsck_ufs
+Description: File system consistency check and interactive repair
+URL: https://man.freebsd.org/cgi/man.cgi?query=fsck_ufs(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/fsck_ffs
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.f6424733.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1980, 1986, 1993 The Regents of the University of California, 2006 Pawel Jakub Dawidek <pjd@FreeBSD.org>, 1982, 1986, 1989, 1993 The Regents of the University of California, 2002 Poul-Henning Kamp, 2002 Networks Associates Technology, Inc., Copyright 2009, 2010 Jeffrey W. Roberson <jeff@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libufs
diff --git a/share/sbom/pkgconfig/fsdb.pc b/share/sbom/pkgconfig/fsdb.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fsdb.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: fsdb
+Description: FFS debugging/editing tool
+URL: https://man.freebsd.org/cgi/man.cgi?query=fsdb(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/fsdb
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.fbf19e8e.txt
+Copyright: 1995 John T. Kohl
+Requires: csu, libc, libcompiler_rt, libedit, libufs
diff --git a/share/sbom/pkgconfig/fsirand.pc b/share/sbom/pkgconfig/fsirand.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fsirand.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: fsirand
+Description: Randomize inode generation numbers
+URL: https://man.freebsd.org/cgi/man.cgi?query=fsirand(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/fsirand
+License: BSD-4-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause.94311660.txt
+Copyright: 1997 Todd C. Miller <Todd.Miller@courtesan.com>
+Requires: csu, libc, libcompiler_rt, libufs
diff --git a/share/sbom/pkgconfig/fstat.pc b/share/sbom/pkgconfig/fstat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fstat.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: fstat
+Description: Identify active files
+URL: https://man.freebsd.org/cgi/man.cgi?query=fstat(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/fstat
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.da76510e.txt
+Copyright: 2005-2009 Stanislav Sedov <stas@FreeBSD.org>, 2009 Stanislav Sedov <stas@FreeBSD.org>, 1988, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libprocstat
diff --git a/share/sbom/pkgconfig/fstyp.pc b/share/sbom/pkgconfig/fstyp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fstyp.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: fstyp
+Description: Determine filesystem type
+URL: https://man.freebsd.org/cgi/man.cgi?query=fstyp(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/fstyp
+License: BSD-2-Clause AND BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.bdacc9d5.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2019 Conrad Meyer <cem@FreeBSD.org>, 2014 The FreeBSD Foundation, 2011-2018 The DragonFly Project, 2016-2019 The DragonFly Project, 2016-2019 Tomohiro Kusumi <tkusumi@netbsd.org>, 2005 Takanori Watanabe, 2004 Pawel Jakub Dawidek <pjd@FreeBSD.org>, 2006 Tobias Reifenberger, 2017-2019 The DragonFly Project, 2017-2019 Tomohiro Kusumi <tkusumi@netbsd.org>, 2007 The DragonFly Project, 2002, 2003 Gordon Tetlow, 2006 Pawel Jakub Dawidek <pjd@FreeBSD.org>, 2015 Allan Jude <allanjude@FreeBSD.org>, 2015 Xin LI <delphij@FreeBSD.org>, 2021 Miguel Gocobachi, 2005 Stanislav Sedov, 2017 Conrad Meyer <cem@FreeBSD.org>
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt, libgeom, libmd, libufs
diff --git a/share/sbom/pkgconfig/fsync.pc b/share/sbom/pkgconfig/fsync.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fsync.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: fsync
+Description: Synchronize a file's in-core state with that on disk
+URL: https://man.freebsd.org/cgi/man.cgi?query=fsync(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/fsync
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.da76510e.txt
+Copyright: 2000 Paul Saab <ps@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ftp-proxy.pc b/share/sbom/pkgconfig/ftp-proxy.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ftp-proxy.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ftp-proxy
+Description: Pf logging daemon
+URL: https://openbsd.org
+Version: ${FREEBSD_VERSION}
+Source: https://github.com/openbsd/src/tree/master/usr.sbin/ftp-proxy
+License: 0BSD
diff --git a/share/sbom/pkgconfig/ftp.pc b/share/sbom/pkgconfig/ftp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ftp.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ftp
+Description: Enhanced FTP client for Unix-like operating systems
+URL: https://ftp.netbsd.org/pub/NetBSD/misc/tnftp/
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/contrib/tnftp/
+License: BSD-3-Clause AND BSD-2-Clause
+Requires: csu, libc, libcompiler_rt, libedit
diff --git a/share/sbom/pkgconfig/fuser.pc b/share/sbom/pkgconfig/fuser.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fuser.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: fuser
+Description: List IDs of all processes that have one or more files open
+URL: https://man.freebsd.org/cgi/man.cgi?query=fuser(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/fstat
+License: BSD-2-Clause AND BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.da76510e.txt
+Copyright: 2005-2009 Stanislav Sedov <stas@FreeBSD.org>, 2009 Stanislav Sedov <stas@FreeBSD.org>, 1988, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libprocstat
diff --git a/share/sbom/pkgconfig/fwcontrol.pc b/share/sbom/pkgconfig/fwcontrol.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/fwcontrol.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: fwcontrol
+Description: FireWire control utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=fwcontrol(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/fwcontrol
+License: BSD-4-Clause
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.c41c780a.txt, ${pcfiledir}/LICENSES/BSD-4-Clause-UC.15290ac5.txt
+Copyright: 2003 Hidetoshi Shimokawa, 2002 Hidetoshi Shimokawa, 2005 Petr Holub, Hidetoshi Shimokawa
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/gate-ftp.pc b/share/sbom/pkgconfig/gate-ftp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gate-ftp.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: gate-ftp
+Description: Enhanced FTP client for Unix-like operating systems
+URL: https://ftp.netbsd.org/pub/NetBSD/misc/tnftp/
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/contrib/tnftp/
+License: BSD-3-Clause AND BSD-2-Clause
+Requires: csu, libc, libcompiler_rt, libedit
diff --git a/share/sbom/pkgconfig/gcache.pc b/share/sbom/pkgconfig/gcache.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gcache.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: gcache
+Description: Control utility for CACHE GEOM class
+URL: https://man.freebsd.org/cgi/man.cgi?query=gcache(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/geom/cache
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2006 Ruslan Ermilov <ru@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libgeom
diff --git a/share/sbom/pkgconfig/gconcat.pc b/share/sbom/pkgconfig/gconcat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gconcat.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: gconcat
+Description: Disk concatenation control utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=gconcat(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/geom/concat
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2004-2005 Pawel Jakub Dawidek <pjd@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libgeom
diff --git a/share/sbom/pkgconfig/gcore.pc b/share/sbom/pkgconfig/gcore.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gcore.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: gcore
+Description: Get core images of running process
+URL: https://man.freebsd.org/cgi/man.cgi?query=gcore(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/gcore
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1992, 1993 The Regents of the University of California, 2017 Dell EMC, 2007 Sandvine Incorporated, 1998 John D. Polstra
+Requires: csu, libc, libcompiler_rt, libsbuf, libutil
diff --git a/share/sbom/pkgconfig/gcov.pc b/share/sbom/pkgconfig/gcov.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gcov.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: gcov
+Description: Emit coverage information
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+Requires: csu, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libthr, libz, msun, libncursesw
diff --git a/share/sbom/pkgconfig/geli.pc b/share/sbom/pkgconfig/geli.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/geli.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: geli
+Description: Control utility for the cryptographic GEOM class
+URL: https://man.freebsd.org/cgi/man.cgi?query=geli(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/geom/eli
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2004-2019 Pawel Jakub Dawidek <pawel@dawidek.net>
+Requires: csu, libc, libcompiler_rt, libgeom, libmd
diff --git a/share/sbom/pkgconfig/gencat.pc b/share/sbom/pkgconfig/gencat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gencat.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: gencat
+Description: NLS catalog compiler
+URL: https://man.freebsd.org/cgi/man.cgi?query=gencat(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/gencat
+License: ISC AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt, ${pcfiledir}/LICENSES/HPND.7fa74d16.txt
+Copyright: 1996 The NetBSD Foundation, Inc., Copyright 1990, by Alfalfa Software Incorporated, Cambridge, Massachusetts
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/genl.pc b/share/sbom/pkgconfig/genl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/genl.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: genl
+Description: Generic netlink
+URL: https://man.freebsd.org/cgi/man.cgi?query=genl(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/genl
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.3c0ceec3.txt
+Copyright: Copyright 2025 Gleb Smirnoff <glebius@FreeBSD.org>, Copyright 2023 Baptiste Daroussin <bapt@FreeBSD.org>
diff --git a/share/sbom/pkgconfig/geom.pc b/share/sbom/pkgconfig/geom.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/geom.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: geom
+Description: Universal control utility for GEOM classes
+URL: https://man.freebsd.org/cgi/man.cgi?query=geom(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/geom/core
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2004-2009 Pawel Jakub Dawidek <pjd@FreeBSD.org>, 2004 Pawel Jakub Dawidek <pjd@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libexpat, libgeom, libsbuf, libutil
diff --git a/share/sbom/pkgconfig/getaddrinfo.pc b/share/sbom/pkgconfig/getaddrinfo.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/getaddrinfo.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: getaddrinfo
+Description: Resolve names to socket addresses
+URL: https://man.freebsd.org/cgi/man.cgi?query=getaddrinfo(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/getaddrinfo
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt
+Copyright: 2013 The NetBSD Foundation, Inc.
+Requires: csu, libc, libcompiler_rt, libnetbsd, libutil
diff --git a/share/sbom/pkgconfig/getconf.pc b/share/sbom/pkgconfig/getconf.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/getconf.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: getconf
+Description: Retrieve standard configuration variables
+URL: https://man.freebsd.org/cgi/man.cgi?query=getconf(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/getconf
+License: LicenseRef-scancode-mit-license-1998
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-mit-license-1998.efd275e2.txt
+Copyright: Copyright 2000 Massachusetts Institute of Technology
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/getent.pc b/share/sbom/pkgconfig/getent.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/getent.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: getent
+Description: Get entries from administrative database
+URL: https://man.freebsd.org/cgi/man.cgi?query=getent(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/getent
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt
+Copyright: 2004 The NetBSD Foundation, Inc.
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/getfacl.pc b/share/sbom/pkgconfig/getfacl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/getfacl.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: getfacl
+Description: Get ACL information
+URL: https://man.freebsd.org/cgi/man.cgi?query=getfacl(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/getfacl
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999, 2001, 2002 Robert N M Watson
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/getopt.pc b/share/sbom/pkgconfig/getopt.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/getopt.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: getopt
+Description: Parse command options
+URL: https://man.freebsd.org/cgi/man.cgi?query=getopt(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/getopt
+License: LicenseRef-scancode-public-domain
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.d873e449.txt
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/getopts.pc b/share/sbom/pkgconfig/getopts.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/getopts.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: getopts
+Description: Parse commandline options
+URL: https://man.freebsd.org/cgi/man.cgi?query=sh(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/sh
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California, 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>, 2010-2015 Jilles Tjoelker <jilles@stack.nl>, 1993 The Regents of the University of California, Copyright 1989 by Kenneth Almquist, 1995 The Regents of the University of California, 2002 Herbert Xu, 2007 Herbert Xu <herbert@gondor.apana.org.au>
+Requires: csu, libc, libcompiler_rt, libedit
diff --git a/share/sbom/pkgconfig/ggatec.pc b/share/sbom/pkgconfig/ggatec.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ggatec.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: ggatec
+Description: GEOM Gate network client and control utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=ggatec(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/ggate/ggatec
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2004 Pawel Jakub Dawidek <pjd@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libgeom, libthr, libutil
diff --git a/share/sbom/pkgconfig/ggated.pc b/share/sbom/pkgconfig/ggated.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ggated.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: ggated
+Description: GEOM Gate network daemon
+URL: https://man.freebsd.org/cgi/man.cgi?query=ggated(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/ggate/ggated
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2004 Pawel Jakub Dawidek <pjd@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libgeom, libthr, libutil
diff --git a/share/sbom/pkgconfig/ggatel.pc b/share/sbom/pkgconfig/ggatel.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ggatel.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: ggatel
+Description: GEOM Gate local control utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=ggatel(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/ggate/ggatel
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2004 Pawel Jakub Dawidek <pjd@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libgeom, libutil
diff --git a/share/sbom/pkgconfig/gjournal.pc b/share/sbom/pkgconfig/gjournal.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gjournal.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: gjournal
+Description: Control utility for journaled devices
+URL: https://man.freebsd.org/cgi/man.cgi?query=gjournal(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/geom/journal
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2006 Pawel Jakub Dawidek <pjd@FreeBSD.org>, 2005-2006 Pawel Jakub Dawidek <pjd@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libgeom, libmd, libufs
diff --git a/share/sbom/pkgconfig/glabel.pc b/share/sbom/pkgconfig/glabel.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/glabel.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: glabel
+Description: Disk labelization control utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=glabel(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/geom/label
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2004-2005 Pawel Jakub Dawidek <pjd@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libgeom
diff --git a/share/sbom/pkgconfig/gmirror.pc b/share/sbom/pkgconfig/gmirror.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gmirror.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: gmirror
+Description: Control utility for mirrored devices
+URL: https://man.freebsd.org/cgi/man.cgi?query=gmirror(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/geom/mirror
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2004-2009 Pawel Jakub Dawidek <pjd@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libgeom, libmd
diff --git a/share/sbom/pkgconfig/gmountver.pc b/share/sbom/pkgconfig/gmountver.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gmountver.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: gmountver
+Description: Control utility for disk mount verification GEOM class
+URL: https://man.freebsd.org/cgi/man.cgi?query=gmountver(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/geom/mountver
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2010 Edward Tomasz Napierala <trasz@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libgeom
diff --git a/share/sbom/pkgconfig/gmultipath.pc b/share/sbom/pkgconfig/gmultipath.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gmultipath.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: gmultipath
+Description: Disk multipath control utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=gmultipath(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/geom/multipath
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2006 Mathew Jacob <mjacob@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libgeom
diff --git a/share/sbom/pkgconfig/gnop.pc b/share/sbom/pkgconfig/gnop.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gnop.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: gnop
+Description: Control utility for NOP GEOM class
+URL: https://man.freebsd.org/cgi/man.cgi?query=gnop(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/geom/nop
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2004-2006 Pawel Jakub Dawidek <pjd@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libgeom
diff --git a/share/sbom/pkgconfig/gpart.pc b/share/sbom/pkgconfig/gpart.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gpart.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: gpart
+Description: Control utility for the disk partitioning GEOM class
+URL: https://man.freebsd.org/cgi/man.cgi?query=gpart(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/geom/part
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2007, 2008 Marcel Moolenaar
+Requires: csu, libc, libcompiler_rt, libgeom, libutil
diff --git a/share/sbom/pkgconfig/gprof.pc b/share/sbom/pkgconfig/gprof.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gprof.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: gprof
+Description: Display call graph profile data
+URL: https://man.freebsd.org/cgi/man.cgi?query=gprof(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/gprof
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1983, 1993 The Regents of the University of California, 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/graid.pc b/share/sbom/pkgconfig/graid.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/graid.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: graid
+Description: Control utility for software RAID devices
+URL: https://man.freebsd.org/cgi/man.cgi?query=graid(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/geom/raid
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2010 Alexander Motin <mav@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libgeom, libmd
diff --git a/share/sbom/pkgconfig/graid3.pc b/share/sbom/pkgconfig/graid3.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/graid3.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: graid3
+Description: Control utility for RAID3 devices
+URL: https://man.freebsd.org/cgi/man.cgi?query=graid3(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/geom/raid3
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2004-2005 Pawel Jakub Dawidek <pjd@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libgeom, libmd
diff --git a/share/sbom/pkgconfig/grdc.pc b/share/sbom/pkgconfig/grdc.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/grdc.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: grdc
+Description: Grand digital clock (curses)
+URL: https://man.freebsd.org/cgi/man.cgi?query=grdc(6)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/grdc
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/grep.pc b/share/sbom/pkgconfig/grep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/grep.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: grep
+Description: File pattern searcher
+URL: https://man.freebsd.org/cgi/man.cgi?query=grep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/grep
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999 James Howard and Dag-Erling Smorgrav, 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org>, 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>, 2017 Kyle Evans <kevans@FreeBSD.org>, 2010 Dimitry Andric <dimitry@andric.com>, 2020 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, bzip2, libc, libcompiler_rt, libregex, libz
diff --git a/share/sbom/pkgconfig/groups.pc b/share/sbom/pkgconfig/groups.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/groups.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: groups
+Description: Show group memberships
+URL: https://man.freebsd.org/cgi/man.cgi?query=groups(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/id
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/growfs.pc b/share/sbom/pkgconfig/growfs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/growfs.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: growfs
+Description: Expand an existing UFS file system
+URL: https://man.freebsd.org/cgi/man.cgi?query=growfs(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/growfs
+License: BSD-4-Clause AND BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause-UC.5d40a3e4.txt
+Copyright: 2000 Christoph Herrmann, Thomas-Henning von Kamptz, 1980, 1989, 1993 The Regents of the University of California, 2012 The FreeBSD Foundation
+Requires: csu, libc, libcompiler_rt, libufs, libutil
diff --git a/share/sbom/pkgconfig/gshsec.pc b/share/sbom/pkgconfig/gshsec.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gshsec.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: gshsec
+Description: Control utility for shared secret devices
+URL: https://man.freebsd.org/cgi/man.cgi?query=gshsec(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/geom/shsec
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2004-2005 Pawel Jakub Dawidek <pjd@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libgeom
diff --git a/share/sbom/pkgconfig/gss-client.pc b/share/sbom/pkgconfig/gss-client.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gss-client.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: gss-client
+Description: MIT implementation of Kerberos stack
+URL: https://web.mit.edu/kerberos/krb5-latest/doc/
+Version: 1.2.2
+Source: https://github.com/krb5/krb5/tree/krb5-1.22-final
+License: MIT
diff --git a/share/sbom/pkgconfig/gstripe.pc b/share/sbom/pkgconfig/gstripe.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gstripe.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: gstripe
+Description: Control utility for striped devices
+URL: https://man.freebsd.org/cgi/man.cgi?query=gstripe(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/geom/stripe
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2004-2005 Pawel Jakub Dawidek <pjd@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libgeom
diff --git a/share/sbom/pkgconfig/gunion.pc b/share/sbom/pkgconfig/gunion.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gunion.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: gunion
+Description: Control utility for UNION GEOM class
+URL: https://man.freebsd.org/cgi/man.cgi?query=gunion(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/geom/union
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2022 Marshall Kirk McKusick <mckusick@mckusick.com>
+Requires: csu, libc, libcompiler_rt, libgeom
diff --git a/share/sbom/pkgconfig/gunzip.pc b/share/sbom/pkgconfig/gunzip.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gunzip.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: gunzip
+Description: Compression/decompression tool using Lempel-Ziv coding (LZ77)
+URL: https://man.freebsd.org/cgi/man.cgi?query=gzip(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/gzip
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.2e42e2d8.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.88f437cf.txt, ${pcfiledir}/LICENSES/ISC.a506e8a5.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-sudo.e5838632.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt, ${pcfiledir}/LICENSES/Zlib.83bd71d4.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.715ec2cd.txt
+Copyright: 2018 The NetBSD Foundation, Inc., 2013-2018 Antonio Diaz Diaz, 2009 Xin LI <delphij@FreeBSD.org>, 2011 The NetBSD Foundation, Inc., 2003 Otto Moerbeek <otto@drijf.net>, 2022 Klara, Inc., 1985, 1986, 1992, 1993 The Regents of the University of California, 2003 Todd C. Miller <Todd.Miller@courtesan.com>, 2010 Joerg Sonnenberger <joerg@NetBSD.org>, 2006 The NetBSD Foundation, Inc., 1997, 1998, 2003, 2004, 2006, 2008, 2009, 2010, 2011, 2015, 2017 Matthew R. Green, 1997, 1998, 2003, 2004, 2006 Matthew R. Green
+Requires: csu, libc, libcompiler_rt, liblzma, libz, libzstd
diff --git a/share/sbom/pkgconfig/gvirstor.pc b/share/sbom/pkgconfig/gvirstor.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gvirstor.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: gvirstor
+Description: Control utility for virtual data storage devices
+URL: https://man.freebsd.org/cgi/man.cgi?query=gvirstor(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/geom/virstor
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2005 Ivan Voras <ivoras@freebsd.org>
+Requires: csu, libc, libcompiler_rt, libgeom
diff --git a/share/sbom/pkgconfig/gzcat.pc b/share/sbom/pkgconfig/gzcat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gzcat.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: gzcat
+Description: Compression/decompression tool using Lempel-Ziv coding (LZ77)
+URL: https://man.freebsd.org/cgi/man.cgi?query=gzip(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/gzip
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.2e42e2d8.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.88f437cf.txt, ${pcfiledir}/LICENSES/ISC.a506e8a5.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-sudo.e5838632.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt, ${pcfiledir}/LICENSES/Zlib.83bd71d4.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.715ec2cd.txt
+Copyright: 2018 The NetBSD Foundation, Inc., 2013-2018 Antonio Diaz Diaz, 2009 Xin LI <delphij@FreeBSD.org>, 2011 The NetBSD Foundation, Inc., 2003 Otto Moerbeek <otto@drijf.net>, 2022 Klara, Inc., 1985, 1986, 1992, 1993 The Regents of the University of California, 2003 Todd C. Miller <Todd.Miller@courtesan.com>, 2010 Joerg Sonnenberger <joerg@NetBSD.org>, 2006 The NetBSD Foundation, Inc., 1997, 1998, 2003, 2004, 2006, 2008, 2009, 2010, 2011, 2015, 2017 Matthew R. Green, 1997, 1998, 2003, 2004, 2006 Matthew R. Green
+Requires: csu, libc, libcompiler_rt, liblzma, libz, libzstd
diff --git a/share/sbom/pkgconfig/gzexe.pc b/share/sbom/pkgconfig/gzexe.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gzexe.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: gzexe
+Description: Create auto-decompressing executables
+URL: https://man.freebsd.org/cgi/man.cgi?query=gzexe(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/gzip
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.2e42e2d8.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.88f437cf.txt, ${pcfiledir}/LICENSES/ISC.a506e8a5.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-sudo.e5838632.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt, ${pcfiledir}/LICENSES/Zlib.83bd71d4.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.715ec2cd.txt
+Copyright: 2018 The NetBSD Foundation, Inc., 2013-2018 Antonio Diaz Diaz, 2009 Xin LI <delphij@FreeBSD.org>, 2011 The NetBSD Foundation, Inc., 2003 Otto Moerbeek <otto@drijf.net>, 2022 Klara, Inc., 1985, 1986, 1992, 1993 The Regents of the University of California, 2003 Todd C. Miller <Todd.Miller@courtesan.com>, 2010 Joerg Sonnenberger <joerg@NetBSD.org>, 2006 The NetBSD Foundation, Inc., 1997, 1998, 2003, 2004, 2006, 2008, 2009, 2010, 2011, 2015, 2017 Matthew R. Green, 1997, 1998, 2003, 2004, 2006 Matthew R. Green
+Requires: csu, libc, libcompiler_rt, liblzma, libz, libzstd
diff --git a/share/sbom/pkgconfig/gzip.pc b/share/sbom/pkgconfig/gzip.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/gzip.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: gzip
+Description: Compression/decompression tool using Lempel-Ziv coding (LZ77)
+URL: https://man.freebsd.org/cgi/man.cgi?query=gzip(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/gzip
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.2e42e2d8.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.88f437cf.txt, ${pcfiledir}/LICENSES/ISC.a506e8a5.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-sudo.e5838632.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt, ${pcfiledir}/LICENSES/Zlib.83bd71d4.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.715ec2cd.txt
+Copyright: 2018 The NetBSD Foundation, Inc., 2013-2018 Antonio Diaz Diaz, 2009 Xin LI <delphij@FreeBSD.org>, 2011 The NetBSD Foundation, Inc., 2003 Otto Moerbeek <otto@drijf.net>, 2022 Klara, Inc., 1985, 1986, 1992, 1993 The Regents of the University of California, 2003 Todd C. Miller <Todd.Miller@courtesan.com>, 2010 Joerg Sonnenberger <joerg@NetBSD.org>, 2006 The NetBSD Foundation, Inc., 1997, 1998, 2003, 2004, 2006, 2008, 2009, 2010, 2011, 2015, 2017 Matthew R. Green, 1997, 1998, 2003, 2004, 2006 Matthew R. Green
+Requires: csu, libc, libcompiler_rt, liblzma, libz, libzstd
diff --git a/share/sbom/pkgconfig/halt.pc b/share/sbom/pkgconfig/halt.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/halt.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: halt
+Description: Stopping and restarting the system
+URL: https://man.freebsd.org/cgi/man.cgi?query=halt(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/reboot
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1986, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/hash.pc b/share/sbom/pkgconfig/hash.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/hash.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: hash
+Description: Calculate hash value
+URL: https://man.freebsd.org/cgi/man.cgi?query=sh(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/sh
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California, 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>, 2010-2015 Jilles Tjoelker <jilles@stack.nl>, 1993 The Regents of the University of California, Copyright 1989 by Kenneth Almquist, 1995 The Regents of the University of California, 2002 Herbert Xu, 2007 Herbert Xu <herbert@gondor.apana.org.au>
+Requires: csu, libc, libcompiler_rt, libedit
diff --git a/share/sbom/pkgconfig/hastctl.pc b/share/sbom/pkgconfig/hastctl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/hastctl.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: hastctl
+Description: Highly Available Storage control utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=hastctl(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/hastctl
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2009-2010 The FreeBSD Foundation
+Requires: csu, libc, libcompiler_rt, libmd, libutil, zlib
diff --git a/share/sbom/pkgconfig/hastd.pc b/share/sbom/pkgconfig/hastd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/hastd.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: hastd
+Description: Highly Available Storage daemon
+URL: https://man.freebsd.org/cgi/man.cgi?query=hastd(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/hastd
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/BSD-2-Clause_OR_GPL-2.0-or-later.08cabcb7.txt
+Copyright: 2010 Pawel Jakub Dawidek <pjd@FreeBSD.org>, 2009-2010 The FreeBSD Foundation, 2005 John Baldwin <jhb@FreeBSD.org>, 2010 The FreeBSD Foundation, 2010-2011 Pawel Jakub Dawidek <pawel@dawidek.net>, 2011 Pawel Jakub Dawidek <pawel@dawidek.net>, 2000-2008 Marc Alexander Lehmann <schmorp@schmorp.de>, 2011 Pawel Jakub Dawidek <pjd@FreeBSD.org>, 2009 The FreeBSD Foundation
+Requires: csu, libc, libcompiler_rt, libgeom, libmd, libthr, libutil, zlib
diff --git a/share/sbom/pkgconfig/hd.pc b/share/sbom/pkgconfig/hd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/hd.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: hd
+Description: ASCII, decimal, hexadecimal, octal dump
+URL: https://man.freebsd.org/cgi/man.cgi?query=hd(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/hexdump
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993 The Regents of the University of California, 1990, 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/head.pc b/share/sbom/pkgconfig/head.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/head.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: head
+Description: Display first lines of a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=head(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/head
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1987, 1992, 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/hexdump.pc b/share/sbom/pkgconfig/hexdump.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/hexdump.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: hexdump
+Description: ASCII, decimal, hexadecimal, octal dump
+URL: https://man.freebsd.org/cgi/man.cgi?query=hexdump(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/hexdump
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993 The Regents of the University of California, 1990, 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/host.pc b/share/sbom/pkgconfig/host.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/host.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: host
+Description: LDNS is a DNS library that facilitates DNS tool programming
+URL: https://github.com/NLnetLabs/ldns
+Version: 1.8.3
+License: BSD-3-Clause
diff --git a/share/sbom/pkgconfig/hostname.pc b/share/sbom/pkgconfig/hostname.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/hostname.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: hostname
+Description: Set or print the name of current host system
+URL: https://man.freebsd.org/cgi/man.cgi?query=hostname(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/hostname
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ibstat.pc b/share/sbom/pkgconfig/ibstat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ibstat.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ibstat
+Description: Open IB Diagnostics
+URL: https://www.openfabrics.org/ofed-for-linux/
+Version: 1.5.3
+Source: https://downloads.openfabrics.org/OFED/archive/ofed-1.5.3/OFED-1.5.3.tgz
+License: GPL-2.0 OR BSD-2-Clause
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ibv_asyncwatch.pc b/share/sbom/pkgconfig/ibv_asyncwatch.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ibv_asyncwatch.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ibv_asyncwatch
+Description: Display asynchronous events
+URL: https://www.openfabrics.org/ofed-for-linux/
+Version: 1.5.3
+Source: https://downloads.openfabrics.org/OFED/archive/ofed-1.5.3/OFED-1.5.3.tgz
+License: GPL-2.0 OR BSD-2-Clause
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ibv_devices.pc b/share/sbom/pkgconfig/ibv_devices.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ibv_devices.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ibv_devices
+Description: Display asynchronous events
+URL: https://www.openfabrics.org/ofed-for-linux/
+Version: 1.5.3
+Source: https://downloads.openfabrics.org/OFED/archive/ofed-1.5.3/OFED-1.5.3.tgz
+License: GPL-2.0 OR BSD-2-Clause
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ibv_devinfo.pc b/share/sbom/pkgconfig/ibv_devinfo.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ibv_devinfo.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ibv_devinfo
+Description: Display asynchronous events
+URL: https://www.openfabrics.org/ofed-for-linux/
+Version: 1.5.3
+Source: https://downloads.openfabrics.org/OFED/archive/ofed-1.5.3/OFED-1.5.3.tgz
+License: GPL-2.0 OR BSD-2-Clause
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ibv_rc_pingpong.pc b/share/sbom/pkgconfig/ibv_rc_pingpong.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ibv_rc_pingpong.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ibv_rc_pingpong
+Description: Display asynchronous events
+URL: https://www.openfabrics.org/ofed-for-linux/
+Version: 1.5.3
+Source: https://downloads.openfabrics.org/OFED/archive/ofed-1.5.3/OFED-1.5.3.tgz
+License: GPL-2.0 OR BSD-2-Clause
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ibv_srq_pingpong.pc b/share/sbom/pkgconfig/ibv_srq_pingpong.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ibv_srq_pingpong.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ibv_srq_pingpong
+Description: Display asynchronous events
+URL: https://www.openfabrics.org/ofed-for-linux/
+Version: 1.5.3
+Source: https://downloads.openfabrics.org/OFED/archive/ofed-1.5.3/OFED-1.5.3.tgz
+License: GPL-2.0 OR BSD-2-Clause
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ibv_uc_pingpong.pc b/share/sbom/pkgconfig/ibv_uc_pingpong.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ibv_uc_pingpong.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ibv_uc_pingpong
+Description: Display asynchronous events
+URL: https://www.openfabrics.org/ofed-for-linux/
+Version: 1.5.3
+Source: https://downloads.openfabrics.org/OFED/archive/ofed-1.5.3/OFED-1.5.3.tgz
+License: GPL-2.0 OR BSD-2-Clause
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ibv_ud_pingpong.pc b/share/sbom/pkgconfig/ibv_ud_pingpong.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ibv_ud_pingpong.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ibv_ud_pingpong
+Description: Display asynchronous events
+URL: https://www.openfabrics.org/ofed-for-linux/
+Version: 1.5.3
+Source: https://downloads.openfabrics.org/OFED/archive/ofed-1.5.3/OFED-1.5.3.tgz
+License: GPL-2.0 OR BSD-2-Clause
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/iconv.pc b/share/sbom/pkgconfig/iconv.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/iconv.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: iconv
+Description: Codeset conversion utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=iconv(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/iconv
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2003 Citrus Project
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/id.pc b/share/sbom/pkgconfig/id.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/id.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: id
+Description: Return user identity
+URL: https://man.freebsd.org/cgi/man.cgi?query=id(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/id
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ident.pc b/share/sbom/pkgconfig/ident.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ident.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ident
+Description: Identify RCS keyword string in files
+URL: https://man.freebsd.org/cgi/man.cgi?query=ident(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/ident
+License: LicenseRef-scancode-bsd-unchanged
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-bsd-unchanged.b0945d8f.txt
+Copyright: 2015-2021 Baptiste Daroussin <bapt@FreeBSD.org>, 2015 Xin LI <delphij@FreeBSD.org>
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ifconfig.pc b/share/sbom/pkgconfig/ifconfig.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ifconfig.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: ifconfig
+Description: Configure network interface parameters
+URL: https://man.freebsd.org/cgi/man.cgi?query=ifconfig(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/ifconfig
+License: BSD-4-Clause AND BSD-3-Clause AND BSD-2-Clause-FreeBSD AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.f8ca36a4.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-bsd-original-voices.814a582a.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-4-Clause.6bf7704c.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.da76510e.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.443ee1c0.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.5bebe47e.txt, ${pcfiledir}/LICENSES/BSD-4-Clause.2311d4ed.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.e289d4bf.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-bsd-unmodified.2c3260b8.txt, ${pcfiledir}/LICENSES/BSD-4-Clause.c63ba0d5.txt
+Copyright: 2023 Alexander V. Chernikov <melifaro@FreeBSD.org>, 2022 Alexander V. Chernikov <melifaro@FreeBSD.org>, Copyright 2013 Ermal Luci, 2025-2026 Pouria Mousavizadeh Tehrani <pouria@FreeBSD.org>, 2011 Alexander V. Chernikov, 2011 Christian S.J. Peron, 2011 Bjoern A. Zeeb, 1999 Bill Paul <wpaul@ctr.columbia.edu>, 2012 ADARA Networks, Inc., 1983, 1993 The Regents of the University of California, Copyright 2001 Wasabi Systems, Inc., 2016 Yandex LLC, 2016 Andrey V. Elsukov <ae@FreeBSD.org>, 2009 Hiroki Sato, Copyright 2001 The Aerospace Corporation, 1997, 1998, 2000 The NetBSD Foundation, Inc., 2001 Networks Associates Technology, Inc., 2002 Michael Shalayeff, 2003 Ryan McBride, 1997 Jason R. Thorpe, 2004 Max Laier, 2014, Bryan Venteicher <bryanv@FreeBSD.org>, 1997 Peter Wemm, 2006 Max Laier, 2014 Alexander V. Chernikov, 2008 Andrew Thompson
+Requires: csu, libc, libcompiler_rt, libifconfig, libnv, libutil, msun
diff --git a/share/sbom/pkgconfig/indent.pc b/share/sbom/pkgconfig/indent.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/indent.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: indent
+Description: Indent and format C program source
+URL: https://man.freebsd.org/cgi/man.cgi?query=indent(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/indent
+License: BSD-4-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause-UC.06c1e96a.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.a1a01172.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.73605b83.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.16ceb891.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.18b9a0c1.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt
+Copyright: 1985 Sun Microsystems, Inc., 1976 Board of Trustees of the University of Illinois, 1980, 1993 The Regents of the University of California, 2001 Jens Schweikhardt, 1976 by the Board of Trustees of the University of Illinois
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/infocmp.pc b/share/sbom/pkgconfig/infocmp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/infocmp.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: infocmp
+Description: clone of System V curses form library
+URL: https://invisible-island.net/ncurses
+Version: 6.5
+Source: https://invisible-island.net/archives/ncurses/ncurses-6.5.tar.gz
+License: X11
+Requires: csu, libc, libcompiler_rt, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/infotocap.pc b/share/sbom/pkgconfig/infotocap.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/infotocap.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: infotocap
+Description: clone of System V curses form library
+URL: https://invisible-island.net/ncurses
+Version: 6.5
+Source: https://invisible-island.net/archives/ncurses/ncurses-6.5.tar.gz
+License: X11
+Requires: csu, libc, libcompiler_rt, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/init.pc b/share/sbom/pkgconfig/init.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/init.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: init
+Description: Process control initialization
+URL: https://man.freebsd.org/cgi/man.cgi?query=init(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/init
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libcrypt, libutil
diff --git a/share/sbom/pkgconfig/install.pc b/share/sbom/pkgconfig/install.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/install.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: install
+Description: Install binaries
+URL: https://man.freebsd.org/cgi/man.cgi?query=install(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/xinstall
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 2012, 2013 SRI International, 1987, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libmd, libutil
diff --git a/share/sbom/pkgconfig/ipcrm.pc b/share/sbom/pkgconfig/ipcrm.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ipcrm.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ipcrm
+Description: Remove the specified message queues, semaphore sets, and shared segments
+URL: https://man.freebsd.org/cgi/man.cgi?query=ipcrm(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/ipcrm
+License: BSD-4-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause.e7069f9c.txt
+Copyright: 1994 Adam Glass
+Requires: csu, libc, libcompiler_rt, libkvm
diff --git a/share/sbom/pkgconfig/ipcs.pc b/share/sbom/pkgconfig/ipcs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ipcs.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ipcs
+Description: Report System V interprocess communication facilities status
+URL: https://man.freebsd.org/cgi/man.cgi?query=ipcs(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/ipcs
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.67ec8400.txt
+Copyright: 1994 SigmaSoft, Th. Lockert <tholo@sigmasoft.com>
+Requires: csu, libc, libcompiler_rt, libkvm
diff --git a/share/sbom/pkgconfig/ipf.pc b/share/sbom/pkgconfig/ipf.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ipf.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: ipf
+Description: Alters packet filtering lists for IP packet input and output
+URL: https://man.freebsd.org/cgi/man.cgi?query=ipf(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/ipf/ipf
+License: BSD-4-Clause-UC AND LicenseRef-scancode-other-permissive
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause-UC.06c1e96a.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-other-permissive.c5d7f3d3.txt
+Copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997 The Regents of the University of California, 2012 by Darren Reed
+Requires: csu, libc, libcompiler_rt, libkvm, libpcap
diff --git a/share/sbom/pkgconfig/ipfs.pc b/share/sbom/pkgconfig/ipfs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ipfs.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: ipfs
+Description: Saves and restores information for NAT and state tables.
+URL: https://man.freebsd.org/cgi/man.cgi?query=ipfs(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/ipf/ipfs
+License: LicenseRef-scancode-other-permissive
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-other-permissive.c5d7f3d3.txt
+Copyright: 2012 by Darren Reed
+Requires: csu, libc, libcompiler_rt, libkvm
diff --git a/share/sbom/pkgconfig/ipfstat.pc b/share/sbom/pkgconfig/ipfstat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ipfstat.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: ipfstat
+Description: Reports on packet filter statistics and filter list
+URL: https://man.freebsd.org/cgi/man.cgi?query=ipfstat(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/ipf/ipfstat
+License: LicenseRef-scancode-other-permissive
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-other-permissive.c5d7f3d3.txt
+Copyright: 2012 by Darren Reed
+Requires: csu, libc, libcompiler_rt, libkvm, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/ipfw.pc b/share/sbom/pkgconfig/ipfw.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ipfw.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: ipfw
+Description: User interface for firewall, traffic shaper, packet scheduler, in-kernel NAT.
+URL: https://man.freebsd.org/cgi/man.cgi?query=ipfw(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/ipfw
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-other-permissive.ce7c2bce.txt
+Copyright: 2015-2019 Yandex LLC, 2015-2019 Andrey V. Elsukov <ae@FreeBSD.org>, 2002-2003 Luigi Rizzo, 1996 Alex Nash, Paul Traina, Poul-Henning Kamp, 1994 Ugen, 1993 Daniel Boulet, 2019 Yandex LLC, 2019 Andrey V. Elsukov <ae@FreeBSD.org>, 2019 Boris N. Lytochkin <lytboris@gmail.com>, 2014 Yandex LLC, 2014 Alexander V. Chernikov, 2015-2016 Alexander V. Chernikov <melifaro@FreeBSD.org>, 2002-2003,2010 Luigi Rizzo, 2016 Yandex LLC, 2016 Andrey V. Elsukov <ae@FreeBSD.org>, 2016 Centre for Advanced Internet Architectures, Swinburne University of Technology, Melbourne, Australia
+Requires: csu, libalias, libc, libcompiler_rt, libjail, libutil
diff --git a/share/sbom/pkgconfig/ipmon.pc b/share/sbom/pkgconfig/ipmon.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ipmon.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: ipmon
+Description: Monitors /dev/ipl for logged packets
+URL: https://man.freebsd.org/cgi/man.cgi?query=ipmon(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/ipf/ipmon
+License: LicenseRef-scancode-other-permissive
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-other-permissive.c5d7f3d3.txt
+Copyright: 2012 by Darren Reed
+Requires: csu, libc, libcompiler_rt, libkvm
diff --git a/share/sbom/pkgconfig/ipnat.pc b/share/sbom/pkgconfig/ipnat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ipnat.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: ipnat
+Description: User interface to the NAT
+URL: https://man.freebsd.org/cgi/man.cgi?query=ipnat(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/ipf/ipnat
+License: LicenseRef-scancode-other-permissive
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-other-permissive.c5d7f3d3.txt
+Copyright: 2012 by Darren Reed
+Requires: csu, libc, libcompiler_rt, libkvm
diff --git a/share/sbom/pkgconfig/ippool.pc b/share/sbom/pkgconfig/ippool.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ippool.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: ippool
+Description: User interface to the IPFilter pools
+URL: https://man.freebsd.org/cgi/man.cgi?query=ippool(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/ipf/ippool
+License: LicenseRef-scancode-other-permissive
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-other-permissive.c5d7f3d3.txt
+Copyright: 2012 by Darren Reed
+Requires: csu, libc, libcompiler_rt, libkvm
diff --git a/share/sbom/pkgconfig/iscsictl.pc b/share/sbom/pkgconfig/iscsictl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/iscsictl.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: iscsictl
+Description: ISCSI initiator management utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=iscsictl(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/iscsictl
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.5bebe47e.txt
+Copyright: 2012 The FreeBSD Foundation, 1997-2007 Kenneth D. Merry
+Requires: csu, libc, libcam, libcompiler_rt, libutil, libxo
diff --git a/share/sbom/pkgconfig/jobs.pc b/share/sbom/pkgconfig/jobs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/jobs.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: jobs
+Description: Print running jobs
+URL: https://man.freebsd.org/cgi/man.cgi?query=sh(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/sh
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California, 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>, 2010-2015 Jilles Tjoelker <jilles@stack.nl>, 1993 The Regents of the University of California, Copyright 1989 by Kenneth Almquist, 1995 The Regents of the University of California, 2002 Herbert Xu, 2007 Herbert Xu <herbert@gondor.apana.org.au>
+Requires: csu, libc, libcompiler_rt, libedit
diff --git a/share/sbom/pkgconfig/join.pc b/share/sbom/pkgconfig/join.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/join.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: join
+Description: Relational database operator
+URL: https://man.freebsd.org/cgi/man.cgi?query=join(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/join
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/jot.pc b/share/sbom/pkgconfig/jot.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/jot.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: jot
+Description: Print sequential or random data
+URL: https://man.freebsd.org/cgi/man.cgi?query=jot(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/jot
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/k5srvutil.pc b/share/sbom/pkgconfig/k5srvutil.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/k5srvutil.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: k5srvutil
+Description: MIT implementation of Kerberos stack
+URL: https://web.mit.edu/kerberos/krb5-latest/doc/
+Version: 1.2.2
+Source: https://github.com/krb5/krb5/tree/krb5-1.22-final
+License: MIT
diff --git a/share/sbom/pkgconfig/kadmin.pc b/share/sbom/pkgconfig/kadmin.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/kadmin.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: kadmin
+Description: Common error display library
+URL: https://www.heimdal.software
+Version: 1.5.2
+License: BSD-3-Clause
+Requires: csu, libc, libcompiler_rt, libcom_err
diff --git a/share/sbom/pkgconfig/kdestroy.pc b/share/sbom/pkgconfig/kdestroy.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/kdestroy.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: kdestroy
+Description: Common error display library
+URL: https://www.heimdal.software
+Version: 1.5.2
+License: BSD-3-Clause
+Requires: csu, libc, libcompiler_rt, libcom_err
diff --git a/share/sbom/pkgconfig/kdump.pc b/share/sbom/pkgconfig/kdump.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/kdump.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: kdump
+Description: Display kernel trace data
+URL: https://man.freebsd.org/cgi/man.cgi?query=kdump(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/kdump
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1988, 1993 The Regents of the University of California, 2022 Dmitry Chagin <dchagin@FreeBSD.org>
+Requires: csu, libc, libcapsicum, libcompiler_rt, libsysdecode
diff --git a/share/sbom/pkgconfig/kenv.pc b/share/sbom/pkgconfig/kenv.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/kenv.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: kenv
+Description: List or modify the kernel environment
+URL: https://man.freebsd.org/cgi/man.cgi?query=kenv(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/kenv
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1d9b7f76.txt
+Copyright: 2000 Peter Wemm <peter@freebsd.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/kill.pc b/share/sbom/pkgconfig/kill.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/kill.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: kill
+Description: Terminate or signal a process
+URL: https://man.freebsd.org/cgi/man.cgi?query=kill(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/kill
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/killall.pc b/share/sbom/pkgconfig/killall.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/killall.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: killall
+Description: Kill processes by name
+URL: https://man.freebsd.org/cgi/man.cgi?query=killall(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/killall
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2000 Peter Wemm <peter@FreeBSD.org>, 2000 Paul Saab <ps@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libjail
diff --git a/share/sbom/pkgconfig/kinit.pc b/share/sbom/pkgconfig/kinit.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/kinit.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: kinit
+Description: Common error display library
+URL: https://www.heimdal.software
+Version: 1.5.2
+License: BSD-3-Clause
+Requires: csu, libc, libcompiler_rt, libcom_err
diff --git a/share/sbom/pkgconfig/kldconfig.pc b/share/sbom/pkgconfig/kldconfig.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/kldconfig.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: kldconfig
+Description: Display or modify the kernel module search path
+URL: https://man.freebsd.org/cgi/man.cgi?query=kldconfig(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/kldconfig
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2001 Peter Pentchev
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/kldload.pc b/share/sbom/pkgconfig/kldload.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/kldload.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: kldload
+Description: Load a file into the kernel
+URL: https://man.freebsd.org/cgi/man.cgi?query=kldload(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/kldload
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1997 Doug Rabson
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/kldstat.pc b/share/sbom/pkgconfig/kldstat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/kldstat.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: kldstat
+Description: Display status of dynamic kernel linker
+URL: https://man.freebsd.org/cgi/man.cgi?query=kldstat(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/kldstat
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1997 Doug Rabson
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/kldunload.pc b/share/sbom/pkgconfig/kldunload.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/kldunload.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: kldunload
+Description: Unload a file from the kernel
+URL: https://man.freebsd.org/cgi/man.cgi?query=kldunload(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/kldunload
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1997 Doug Rabson
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/klist.pc b/share/sbom/pkgconfig/klist.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/klist.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: klist
+Description: Common error display library
+URL: https://www.heimdal.software
+Version: 1.5.2
+License: BSD-3-Clause
+Requires: csu, libc, libcompiler_rt, libcom_err
diff --git a/share/sbom/pkgconfig/kpasswd.pc b/share/sbom/pkgconfig/kpasswd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/kpasswd.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: kpasswd
+Description: Common error display library
+URL: https://www.heimdal.software
+Version: 1.5.2
+License: BSD-3-Clause
+Requires: csu, libc, libcompiler_rt, libcom_err
diff --git a/share/sbom/pkgconfig/krb5-config.pc b/share/sbom/pkgconfig/krb5-config.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/krb5-config.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: krb5-config
+Description: MIT implementation of Kerberos stack
+URL: https://web.mit.edu/kerberos/krb5-latest/doc/
+Version: 1.2.2
+Source: https://github.com/krb5/krb5/tree/krb5-1.22-final
+License: MIT
diff --git a/share/sbom/pkgconfig/ksu.pc b/share/sbom/pkgconfig/ksu.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ksu.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ksu
+Description: Common error display library
+URL: https://www.heimdal.software
+Version: 1.5.2
+License: BSD-3-Clause
+Requires: csu, libc, libcompiler_rt, libcom_err
diff --git a/share/sbom/pkgconfig/kswitch.pc b/share/sbom/pkgconfig/kswitch.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/kswitch.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: kswitch
+Description: Common error display library
+URL: https://www.heimdal.software
+Version: 1.5.2
+License: BSD-3-Clause
+Requires: csu, libc, libcompiler_rt, libcom_err
diff --git a/share/sbom/pkgconfig/ktrace.pc b/share/sbom/pkgconfig/ktrace.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ktrace.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ktrace
+Description: Enable kernel process tracing
+URL: https://man.freebsd.org/cgi/man.cgi?query=ktrace(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/ktrace
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ktrdump.pc b/share/sbom/pkgconfig/ktrdump.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ktrdump.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ktrdump
+Description: Print kernel ktr trace buffer
+URL: https://man.freebsd.org/cgi/man.cgi?query=ktrdump(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/ktrdump
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2002 Jake Burkholder, 2004 Robert Watson
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt, libkvm
diff --git a/share/sbom/pkgconfig/ktutil.pc b/share/sbom/pkgconfig/ktutil.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ktutil.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ktutil
+Description: Common error display library
+URL: https://www.heimdal.software
+Version: 1.5.2
+License: BSD-3-Clause
+Requires: csu, libc, libcompiler_rt, libcom_err
diff --git a/share/sbom/pkgconfig/kvno.pc b/share/sbom/pkgconfig/kvno.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/kvno.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: kvno
+Description: MIT implementation of Kerberos stack
+URL: https://web.mit.edu/kerberos/krb5-latest/doc/
+Version: 1.2.2
+Source: https://github.com/krb5/krb5/tree/krb5-1.22-final
+License: MIT
diff --git a/share/sbom/pkgconfig/kyua.pc b/share/sbom/pkgconfig/kyua.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/kyua.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: kyua
+Description: Port/Package build and test system
+URL: https://github.com/FreeBSD/kyua
+Version: 0.13
+License: BSD-3-Clause
+Requires: libcxxrt, lua, sqlite3
diff --git a/share/sbom/pkgconfig/lam.pc b/share/sbom/pkgconfig/lam.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lam.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lam
+Description: Laminate files
+URL: https://man.freebsd.org/cgi/man.cgi?query=lam(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/lam
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/last.pc b/share/sbom/pkgconfig/last.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/last.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: last
+Description: Indicate last logins of users and ttys
+URL: https://man.freebsd.org/cgi/man.cgi?query=last(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/last
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1987, 1993, 1994 The Regents of the University of California, 2018 Philip Paeps
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt, libxo
diff --git a/share/sbom/pkgconfig/lastcomm.pc b/share/sbom/pkgconfig/lastcomm.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lastcomm.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lastcomm
+Description: Show last commands executed
+URL: https://man.freebsd.org/cgi/man.cgi?query=lastcomm(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/lastcomm
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 2007 Diomidis Spinellis, 1989, 1993 The Regents of the University of California, 1980, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ld.lld.pc b/share/sbom/pkgconfig/ld.lld.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ld.lld.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ld.ldd
+Description: ELF linker from the LLVM project
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libthr, libz, msun, libncursesw
diff --git a/share/sbom/pkgconfig/ld.pc b/share/sbom/pkgconfig/ld.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ld.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ld
+Description: ELF linker from the LLVM project
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libthr, libz, msun, libncursesw
diff --git a/share/sbom/pkgconfig/ldconfig.pc b/share/sbom/pkgconfig/ldconfig.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ldconfig.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: ldconfig
+Description: Configure the dynamic linker search path for shared libraries
+URL: https://man.freebsd.org/cgi/man.cgi?query=ldconfig(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/ldconfig
+License: BSD-4-Clause AND BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause.165a163c.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1993,1995 Paul Kranenburg, 1998 John D. Polstra
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ldd.pc b/share/sbom/pkgconfig/ldd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ldd.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ldd
+Description: List dynamic object dependencies
+URL: https://man.freebsd.org/cgi/man.cgi?query=ldd(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/ldd
+License: BSD-4-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause.165a163c.txt
+Copyright: 1993 Paul Kranenburg
+Requires: csu, libc, libcompiler_rt, libelf
diff --git a/share/sbom/pkgconfig/ldd32.pc b/share/sbom/pkgconfig/ldd32.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ldd32.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ldd32
+Description: List dynamic object dependencies
+URL: https://man.freebsd.org/cgi/man.cgi?query=ldd32(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/ldd32
+License: BSD-4-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause.165a163c.txt
+Copyright: 1993 Paul Kranenburg
+Requires: csu, libc, libcompiler_rt, libelf
diff --git a/share/sbom/pkgconfig/leave.pc b/share/sbom/pkgconfig/leave.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/leave.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: leave
+Description: Remind you when you have to leave
+URL: https://man.freebsd.org/cgi/man.cgi?query=leave(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/leave
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1988, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/less.pc b/share/sbom/pkgconfig/less.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/less.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: less
+Description: Open-source file pager
+URL: https://www.greenwoodsoftware.com/less/
+Version: 679
+Source: https://www.greenwoodsoftware.com/less/less-679.tar.gz
+License: BSD-2-Clause
+Requires: libncurses
diff --git a/share/sbom/pkgconfig/lessecho.pc b/share/sbom/pkgconfig/lessecho.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lessecho.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lessecho
+Description: Open-source file pager
+URL: https://www.greenwoodsoftware.com/less/
+Version: 679
+Source: https://www.greenwoodsoftware.com/less/less-679.tar.gz
+License: BSD-2-Clause
+Requires: libncurses
diff --git a/share/sbom/pkgconfig/lesskey.pc b/share/sbom/pkgconfig/lesskey.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lesskey.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lesskey
+Description: Open-source file pager
+URL: https://www.greenwoodsoftware.com/less/
+Version: 679
+Source: https://www.greenwoodsoftware.com/less/less-679.tar.gz
+License: BSD-2-Clause
+Requires: libncurses
diff --git a/share/sbom/pkgconfig/lesspipe.sh.pc b/share/sbom/pkgconfig/lesspipe.sh.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lesspipe.sh.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lesspipe.sh
+Description: Open-source file pager
+URL: https://www.greenwoodsoftware.com/less/
+Version: 679
+Source: https://www.greenwoodsoftware.com/less/less-679.tar.gz
+License: BSD-2-Clause
+Requires: libncurses
diff --git a/share/sbom/pkgconfig/lex++.pc b/share/sbom/pkgconfig/lex++.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lex++.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lex++
+Description: Fast lexical analyzer generator
+URL: https://github.com/westes/flex
+Version: 2.6.4
+Source: https://github.com/westes/flex/tree/v2.6.4
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/lex.pc b/share/sbom/pkgconfig/lex.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lex.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lex
+Description: Fast lexical analyzer generator
+URL: https://github.com/westes/flex
+Version: 2.6.4
+Source: https://github.com/westes/flex/tree/v2.6.4
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/lib80211.pc b/share/sbom/pkgconfig/lib80211.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lib80211.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lib80211
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/lib80211
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt, libexpat, libsbuf
diff --git a/share/sbom/pkgconfig/lib9p.pc b/share/sbom/pkgconfig/lib9p.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lib9p.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lib9p
+Description: BSD-licensed 9P2000.u/.L server library
+URL: https://github.com/conclusiveeng/lib9p
+Version: 9d5aee77b
+Source: https://github.com/conclusiveeng/lib9p/tree/9d5aee77bcc1bf0e79b0a3bfefff5fdf2146283c
+License: BSD-2-Clause AND MIT
diff --git a/share/sbom/pkgconfig/libalias.pc b/share/sbom/pkgconfig/libalias.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libalias.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libalias
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libalias/libalias
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libarchive.pc b/share/sbom/pkgconfig/libarchive.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libarchive.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libarchive
+Description: Multi-format archive and compression library
+URL: https://libarchive.org
+Version: 3.8.2
+Source: https://github.com/libarchive/libarchive/tree/v3.8.2
+License: BSD-3-Clause AND BSD-2-Clause AND CC0-1.0 AND openssl AND Apache-2.0
diff --git a/share/sbom/pkgconfig/libatf-c.pc b/share/sbom/pkgconfig/libatf-c.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libatf-c.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libatf-c
+Description: Library to write tests in C
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/atf/libatf-c
+License: BSD-2-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libbe.pc b/share/sbom/pkgconfig/libbe.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libbe.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libbe
+Description: Library for creating, destroying and modifying ZFS boot environments
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libbe
+License: BSD-2-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libbegemot.pc b/share/sbom/pkgconfig/libbegemot.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libbegemot.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libbegemot
+Description: Begemot utility function library. It is needed to build most of the begemot tools
+URL: https://people.freebsd.org/~harti/libbegemot/
+Version: 1.14
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/libblocklist.pc b/share/sbom/pkgconfig/libblocklist.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libblocklist.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libblocklist
+Description: Blocklistd notification library
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libblocklist
+License: BSD-2-Clause
+Requires: csu, libc, libcompiler_rt, libthr
diff --git a/share/sbom/pkgconfig/libblocksruntime.pc b/share/sbom/pkgconfig/libblocksruntime.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libblocksruntime.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libblocksruntime
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libblocksruntime
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libbluetooth.pc b/share/sbom/pkgconfig/libbluetooth.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libbluetooth.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libbluetooth
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libbluetooth
+License: BSD-2-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libbsddialog.pc b/share/sbom/pkgconfig/libbsddialog.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libbsddialog.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libbsddialog
+Description: Utility and a library to build scripts and tools with TUI dialogs and widgets
+URL: https://gitlab.com/alfix/bsddialog
+Version: 1.1
+Source: https://gitlab.com/alfix/bsddialog/-/tree/1.1
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/libbsdstat.pc b/share/sbom/pkgconfig/libbsdstat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libbsdstat.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libbsdstat
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libbsdstat
+License: BSD-2-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libbsm.pc b/share/sbom/pkgconfig/libbsm.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libbsm.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libbsm
+Description: Convert from BSM to other formats
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libbsm
+License: BSD-3-Clause AND BSD-2-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libbsnmp.pc b/share/sbom/pkgconfig/libbsnmp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libbsnmp.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libbsnmp
+Description: Begemot SNMP library
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libbsnmp/libbsnmp
+License: BSD-2-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libbz2.pc b/share/sbom/pkgconfig/libbz2.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libbz2.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libbz2
+Description: High-quality data compressor
+URL: https://sourceware.org/bzip2/
+Version: 1.0.8
+Source: https://sourceware.org/git/?p=bzip2.git;a=commit;h=6a8690fc8d26c815e798c588f796eabe9d684cf0
+License: bzip2-1.0.6
diff --git a/share/sbom/pkgconfig/libc++.pc b/share/sbom/pkgconfig/libc++.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libc++.pc
@@ -0,0 +1,13 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libc++
+Description: Collection of modular and reusable compiler and toolchain technologies
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+Maintainer: dim@, emaste@
+Requires: csu, libc, libcompiler_rt, libcxxrt, msun
diff --git a/share/sbom/pkgconfig/libc.pc b/share/sbom/pkgconfig/libc.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libc.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libc
+Description: FreeBSD libc
+URL: https://www.FreeBSD.org
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libc
+License: BSD-3-Clause AND BSD-2-Clause AND BSD-1-Clause
diff --git a/share/sbom/pkgconfig/libcalendar.pc b/share/sbom/pkgconfig/libcalendar.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libcalendar.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libcalendar
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libcalendar
+License: BSD-2-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libcam.pc b/share/sbom/pkgconfig/libcam.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libcam.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libcam
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libcam
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt, libsbuf
diff --git a/share/sbom/pkgconfig/libcapsicum.pc b/share/sbom/pkgconfig/libcapsicum.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libcapsicum.pc
@@ -0,0 +1,10 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libcapsicum
+Description: Practical capabilities for UNIX
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libcapsicum
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/libcasper.pc b/share/sbom/pkgconfig/libcasper.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libcasper.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libcasper
+Description: Library for mainipulate capability modes
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libcasper/libcasper
+License: BSD-2-Clause
+Requires: csu, libc, libcompiler_rt, libnv
diff --git a/share/sbom/pkgconfig/libcasper.services.cap_dns.pc b/share/sbom/pkgconfig/libcasper.services.cap_dns.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libcasper.services.cap_dns.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libcasper.services.cap_dns
+Description: Library for getting network host entry in capability mode
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libcasper/services/cap_dns
+License: BSD-2-Clause
+Requires: csu, libc, libcasper, libcompiler_rt, libnv
diff --git a/share/sbom/pkgconfig/libcasper.services.cap_fileargs.pc b/share/sbom/pkgconfig/libcasper.services.cap_fileargs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libcasper.services.cap_fileargs.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libcasper.services.cap_fileargs
+Description: Library for handling files in capability mode
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libcasper/services/cap_fileargs
+License: BSD-2-Clause
+Requires: csu, libc, libcasper, libcompiler_rt, libnv
diff --git a/share/sbom/pkgconfig/libcasper.services.cap_grp.pc b/share/sbom/pkgconfig/libcasper.services.cap_grp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libcasper.services.cap_grp.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libcasper.services.cap_grp
+Description: Library for group database operations in capability mode
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libcasper/services/cap_grp
+License: BSD-2-Clause
+Requires: csu, libc, libcasper, libcompiler_rt, libnv
diff --git a/share/sbom/pkgconfig/libcasper.services.cap_net.pc b/share/sbom/pkgconfig/libcasper.services.cap_net.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libcasper.services.cap_net.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libcasper.services.cap_net
+Description: Library for networking in capability mode
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libcasper/services/cap_net
+License: BSD-2-Clause
+Requires: csu, libc, libcasper, libcompiler_rt, libnv
diff --git a/share/sbom/pkgconfig/libcasper.services.cap_netdb.pc b/share/sbom/pkgconfig/libcasper.services.cap_netdb.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libcasper.services.cap_netdb.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libcasper.services.cap_netdb
+Description: Library for getting network proto entry in capability mode
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libcasper/services/cap_netdb
+License: BSD-2-Clause
+Requires: csu, libc, libcasper, libcompiler_rt, libnv
diff --git a/share/sbom/pkgconfig/libcasper.services.cap_pwd.pc b/share/sbom/pkgconfig/libcasper.services.cap_pwd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libcasper.services.cap_pwd.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libcasper.services.cap_pwd
+Description: Library for password database operations in capability mode
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libcasper/services/cap_pwd
+License: BSD-2-Clause
+Requires: csu, libc, libcasper, libcompiler_rt, libnv
diff --git a/share/sbom/pkgconfig/libcasper.services.cap_sysctl.pc b/share/sbom/pkgconfig/libcasper.services.cap_sysctl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libcasper.services.cap_sysctl.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libcasper.services.cap_sysctl
+Description: Library for getting or setting system information in capability mode
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libcasper/services/cap_sysctl
+License: BSD-2-Clause
+Requires: csu, libc, libcasper, libcompiler_rt, libnv
diff --git a/share/sbom/pkgconfig/libcasper.services.cap_syslog.pc b/share/sbom/pkgconfig/libcasper.services.cap_syslog.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libcasper.services.cap_syslog.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libcasper.services.cap_syslog
+Description: Library for syslog in capability mode
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libcasper/services/cap_syslog
+License: BSD-2-Clause
+Requires: csu, libc, libcasper, libcompiler_rt, libnv
diff --git a/share/sbom/pkgconfig/libclang.pc b/share/sbom/pkgconfig/libclang.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libclang.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libclang
+Description: Collection of modular and reusable compiler and toolchain technologies
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+Maintainer: dim@, emaste@
+Requires: libllvm, libc++, msun
diff --git a/share/sbom/pkgconfig/libcom_err.pc b/share/sbom/pkgconfig/libcom_err.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libcom_err.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libcom_err
+Description: Common error display library
+URL: https://www.heimdal.software
+Version: 1.5.2
+License: BSD-3-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libcompiler_rt.pc b/share/sbom/pkgconfig/libcompiler_rt.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libcompiler_rt.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libcompiler_rt
+Description: LLVM "compiler-rt" runtime library
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
diff --git a/share/sbom/pkgconfig/libcrypt.pc b/share/sbom/pkgconfig/libcrypt.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libcrypt.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libcrypt
+Description: function performs password hashing with additional code added to deter key search attempts. Different algorithms can be used to in the hash.
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libcrypt
+License: BSD-3-Clause AND BSD-2-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libcuse.pc b/share/sbom/pkgconfig/libcuse.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libcuse.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libcuse
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libcuse
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt, libthr
diff --git a/share/sbom/pkgconfig/libcxxrt.pc b/share/sbom/pkgconfig/libcxxrt.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libcxxrt.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libcxxrt
+Description: C++ ABI implementation providing low-level support for a standard C++ library
+URL: https://github.com/libcxxrt/libcxxrt
+Version: 6f2fdfebcd62
+Source: https://github.com/libcxxrt/libcxxrt/tree/6f2fdfebcd6291d763de8b17740d636f01761890
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/libdevctl.pc b/share/sbom/pkgconfig/libdevctl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libdevctl.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libdevctl
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libdevctl
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libdevdctl.pc b/share/sbom/pkgconfig/libdevdctl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libdevdctl.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libdevdctl
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libdevdctl
+License: NOASSERTION
+Requires: csu, libc, libc++, libcompiler_rt, libcxxrt, msun
diff --git a/share/sbom/pkgconfig/libdevinfo.pc b/share/sbom/pkgconfig/libdevinfo.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libdevinfo.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libdevinfo
+Description: Device and resource information utility library
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libdevinfo
+License: BSD-2-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libdevstat.pc b/share/sbom/pkgconfig/libdevstat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libdevstat.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libdevstat
+Description: Device statistics utility library
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libdevstat
+License: BSD-3-Clause
+Requires: csu, libc, libcompiler_rt, libkvm
diff --git a/share/sbom/pkgconfig/libdpv.pc b/share/sbom/pkgconfig/libdpv.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libdpv.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libdpv
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libdpv
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt, libfigpar, libutil, msun, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/libdwarf.pc b/share/sbom/pkgconfig/libdwarf.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libdwarf.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libdwarf
+Description: BSD licensed ELF toolchain
+URL: https://sourceforge.net/projects/elftoolchain/
+Version: r4912
+Source: https://sourceforge.net/p/elftoolchain/code/
+License: BSD-2-Clause
+Maintainer: emaste@, jkoshy@, kaiw@
+Requires: csu, libc, libcompiler_rt, libelf, libz
diff --git a/share/sbom/pkgconfig/libedit.pc b/share/sbom/pkgconfig/libedit.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libedit.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libedit
+Description: NetBSD Editline library (libedit)
+URL: https://www.NetBSD.org
+Version: 2025-01-03
+Source: https://github.com/NetBSD/src/commit/2cf0b469b9d048aeccdc6451da18d68a11366991
+License: BSD-3-Clause
diff --git a/share/sbom/pkgconfig/libedit.readline.pc b/share/sbom/pkgconfig/libedit.readline.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libedit.readline.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libedit.readline
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libedit/readline
+License: NOASSERTION
diff --git a/share/sbom/pkgconfig/libefivar.pc b/share/sbom/pkgconfig/libefivar.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libefivar.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libefivar
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libefivar
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt, libgeom
diff --git a/share/sbom/pkgconfig/libelf.pc b/share/sbom/pkgconfig/libelf.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libelf.pc
@@ -0,0 +1,13 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libelf
+Description: BSD licensed ELF toolchain
+URL: https://sourceforge.net/projects/elftoolchain/
+Version: r4912
+Source: https://sourceforge.net/p/elftoolchain/code/
+License: BSD-2-Clause
+Maintainer: emaste@, jkoshy@, kaiw@
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libevent1.pc b/share/sbom/pkgconfig/libevent1.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libevent1.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libevent1
+Description: Event library
+Version: ${FREEBSD_VERSION}
+URL: https://openbsd.org
+License: BSD-3-Clause
+Maintainer: kp@, ks@
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libexecinfo.pc b/share/sbom/pkgconfig/libexecinfo.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libexecinfo.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libexecinfo
+Description: Fill in the backtrace of the currently executing thread
+URL: https://cvsweb.netbsd.org/bsdweb.cgi/src/lib/libexecinfo/
+Version: 1c512be1
+Source: https://github.com/NetBSD/src/tree/1c512be1f7a3bda2d36a9790dcaa63d0161b1ed7/lib/libexecinfo
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/libexpat.pc b/share/sbom/pkgconfig/libexpat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libexpat.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libexpat
+Description: XML 1.0 parser written in C
+URL: https://github.com/libexpat/libexpat
+Version: 2.7.3
+Source: https://github.com/libexpat/libexpat/tree/R_2_7_3
+License: MIT
diff --git a/share/sbom/pkgconfig/libfetch.pc b/share/sbom/pkgconfig/libfetch.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libfetch.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libfetch
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libfetch
+License: BSD-3-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libfigpar.pc b/share/sbom/pkgconfig/libfigpar.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libfigpar.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libfigpar
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libfigpar
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libform.pc b/share/sbom/pkgconfig/libform.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libform.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libform
+Description: clone of System V curses form library
+URL: https://invisible-island.net/ncurses
+Version: 6.5
+Source: https://invisible-island.net/archives/ncurses/ncurses-6.5.tar.gz
+License: X11
+Requires: csu, libc, libcompiler_rt, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/libgeom.pc b/share/sbom/pkgconfig/libgeom.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libgeom.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libgeom
+Description: Userland API library for kernel GEOM subsystem
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libgeom
+License: BSD-3-Clause AND BSD-2-Clause
+Requires: csu, libc, libcompiler_rt, libexpat, libsbuf
diff --git a/share/sbom/pkgconfig/libgpio.pc b/share/sbom/pkgconfig/libgpio.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libgpio.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libgpio
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libgpio
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libifconfig.pc b/share/sbom/pkgconfig/libifconfig.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libifconfig.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libifconfig
+Description: Library for configure network interface parameters
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libifconfig
+License: BSD-3-Clause AND BSD-2-Clause
+Requires: msun
diff --git a/share/sbom/pkgconfig/libipsec.pc b/share/sbom/pkgconfig/libipsec.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libipsec.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libipsec
+Description: Create an IPsec policy structure from a human readable string
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libipsec
+License: BSD-3-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libiscsiutil.pc b/share/sbom/pkgconfig/libiscsiutil.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libiscsiutil.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libiscsiutil
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libiscsiutil
+License: NOASSERTION
+Requires: libmd
diff --git a/share/sbom/pkgconfig/libjail.pc b/share/sbom/pkgconfig/libjail.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libjail.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libjail
+Description: Create and manage system jails
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libjail
+License: BSD-2-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libkiconv.pc b/share/sbom/pkgconfig/libkiconv.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libkiconv.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libkiconv
+Description: Library provides multi-byte character conversion tables for kernel side
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libkiconv
+License: BSD-4-Clause and BSD-2-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libkvm.pc b/share/sbom/pkgconfig/libkvm.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libkvm.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libkvm
+Description: Kernel memory interface
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libkvm
+License: BSD-3-Clause AND BSD-2-Clause
+Requires: csu, libc, libcompiler_rt, libelf
diff --git a/share/sbom/pkgconfig/liblldb.pc b/share/sbom/pkgconfig/liblldb.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/liblldb.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: liblldb
+Description: Collection of modular and reusable compiler and toolchain technologies
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+Maintainer: dim@, emaste@
+Requires: libclang, libllvm, libc++, libedit, libexecinfo, libkvm, liblzma, libz, msun, libpanel, libtinfo
diff --git a/share/sbom/pkgconfig/libllvm.pc b/share/sbom/pkgconfig/libllvm.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libllvm.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libllvm
+Description: Collection of modular and reusable compiler and toolchain technologies
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+Maintainer: dim@, emaste@
+Requires: libc++, libexecinfo, libz, msun
diff --git a/share/sbom/pkgconfig/liblua.pc b/share/sbom/pkgconfig/liblua.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/liblua.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: liblua
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/liblua
+License: MIT
+Requires: msun
diff --git a/share/sbom/pkgconfig/liblzma.pc b/share/sbom/pkgconfig/liblzma.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/liblzma.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: liblzma
+Description: General purpose data compression library
+URL: https://tukaani.org/xz/
+Version: 5.8.1
+Source: https://github.com/tukaani-project/xz
+License: 0BSD
diff --git a/share/sbom/pkgconfig/libmagic.pc b/share/sbom/pkgconfig/libmagic.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libmagic.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libmagic
+Description: Magic number recognition library
+URL: https://www.darwinsys.com/file/
+Version: 5.46
+Source: http://ftp.astron.com/pub/file/file-5.46.tar.gz
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/libmd.pc b/share/sbom/pkgconfig/libmd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libmd.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libmd
+Description: Library for calculating digests
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libmd
+License: BSD-4-Clause AND BSD-2-Clause AND Beeware AND RSA-MD AND
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libmemstat.pc b/share/sbom/pkgconfig/libmemstat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libmemstat.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libmemstat
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libmemstat
+License: BSD-2-Clause
+Requires: csu, libc, libcompiler_rt, libkvm
diff --git a/share/sbom/pkgconfig/libmenu.pc b/share/sbom/pkgconfig/libmenu.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libmenu.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libmenu
+Description: clone of System V curses menu library
+URL: https://invisible-island.net/ncurses
+Version: 6.5
+Source: https://invisible-island.net/archives/ncurses/ncurses-6.5.tar.gz
+License: X11
+Requires: csu, libc, libcompiler_rt, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/libmilter.pc b/share/sbom/pkgconfig/libmilter.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libmilter.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libmilter
+Description: General purpose internetwork email routing application
+URL: https://ftp.sendmail.org
+Version: 8.18.1
+Source: https://ftp.sendmail.org/sendmail.8.18.1.tar.gz
+License: Sendmail
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libmixer.pc b/share/sbom/pkgconfig/libmixer.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libmixer.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libmixer
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libmixer
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libmp.pc b/share/sbom/pkgconfig/libmp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libmp.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libmp
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libmp
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libmt.pc b/share/sbom/pkgconfig/libmt.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libmt.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libmt
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libmt
+License: BSD-2-Clause
+Requires: csu, libc, libcompiler_rt, libexpat, libsbuf
diff --git a/share/sbom/pkgconfig/libncurses.pc b/share/sbom/pkgconfig/libncurses.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libncurses.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libncurses
+Description: clone of System V curses
+URL: https://invisible-island.net/ncurses
+Version: 6.5
+Source: https://invisible-island.net/archives/ncurses/ncurses-6.5.tar.gz
+License: X11
diff --git a/share/sbom/pkgconfig/libncursesw.pc b/share/sbom/pkgconfig/libncursesw.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libncursesw.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libncursesw
+Description: clone of System V curses curses wide char library
+URL: https://invisible-island.net/ncurses
+Version: 6.5
+Source: https://invisible-island.net/archives/ncurses/ncurses-6.5.tar.gz
+License: X11
+Requires: csu, libc, libcompiler_rt, libtinfo
diff --git a/share/sbom/pkgconfig/libnetbsd.pc b/share/sbom/pkgconfig/libnetbsd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libnetbsd.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libnetbsd
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libnetbsd
+License: BSD-3-Clause AND BSD-2-Clause
diff --git a/share/sbom/pkgconfig/libnetgraph.pc b/share/sbom/pkgconfig/libnetgraph.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libnetgraph.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libnetgraph
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libnetgraph
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libnetmap.pc b/share/sbom/pkgconfig/libnetmap.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libnetmap.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libnetmap
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libnetmap
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libnv.pc b/share/sbom/pkgconfig/libnv.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libnv.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libnv
+Description: Library permits creating and managing name value pairs
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libnv
+License: BSD-2-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libnvmf.pc b/share/sbom/pkgconfig/libnvmf.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libnvmf.pc
@@ -0,0 +1,10 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libnvmf
+Description: NVMe Over Fabrics library
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libnvmf
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/libopenbsd.pc b/share/sbom/pkgconfig/libopenbsd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libopenbsd.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libopenbsd
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libopenbsd
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/libpam.pc b/share/sbom/pkgconfig/libpam.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libpam.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libpam
+Description: Open source PAM library that focuses on simplicity, correctness, and cleanliness.
+URL: https://openpam.org
+Version: 20250531
+Source: https://git.des.dev/OpenPAM/OpenPAM/src/commit/7a0660d699c4f82aa234524256b5b9f5a7cba786
+License: BSD-3-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libpanel.pc b/share/sbom/pkgconfig/libpanel.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libpanel.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libpanel
+Description: clone of System V curses panel library
+URL: https://invisible-island.net/ncurses
+Version: 6.5
+Source: https://invisible-island.net/archives/ncurses/ncurses-6.5.tar.gz
+License: X11
diff --git a/share/sbom/pkgconfig/libpathconv.pc b/share/sbom/pkgconfig/libpathconv.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libpathconv.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libpathconv
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libpathconv
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libpcap.pc b/share/sbom/pkgconfig/libpcap.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libpcap.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libpcap
+Description: Platform-independent network traffic capture library
+URL: https://www.tcpdump.org
+Version: 1.10.5
+Source: https://www.tcpdump.org/release/libpcap-1.10.5.tar.xz
+License: BSD-3-Clause
diff --git a/share/sbom/pkgconfig/libpfctl.pc b/share/sbom/pkgconfig/libpfctl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libpfctl.pc
@@ -0,0 +1,10 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libpfctl
+Description: Library for interaction with pf
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libpfctl
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/libpjdlog.pc b/share/sbom/pkgconfig/libpjdlog.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libpjdlog.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libpjdlog
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libpjdlog
+License: BSD-2-Clause
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/libpmc.pc b/share/sbom/pkgconfig/libpmc.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libpmc.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libpmc
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libpmc
+License: NOASSERTION
+Requires: csu, libc, libc++, libcompiler_rt, libcxxrt, libelf, msun
diff --git a/share/sbom/pkgconfig/libproc.pc b/share/sbom/pkgconfig/libproc.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libproc.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libproc
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libproc
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt, libelf, libprocstat, librtld_db, libutil, libz
diff --git a/share/sbom/pkgconfig/libprocstat.pc b/share/sbom/pkgconfig/libprocstat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libprocstat.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libprocstat
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libprocstat
+License: BSD-4-Clause AND BSD-2-Clause
+Requires: csu, libc, libcompiler_rt, libelf, libkvm, zfs, libutil
diff --git a/share/sbom/pkgconfig/libradius.pc b/share/sbom/pkgconfig/libradius.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libradius.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libradius
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libradius
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libregex.pc b/share/sbom/pkgconfig/libregex.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libregex.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libregex
+Description: FreeBSD libc regex library
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libregex
+License: BSD-3-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/librpcsvc.pc b/share/sbom/pkgconfig/librpcsvc.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/librpcsvc.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: librpcsvc
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/librpcsvc
+License: BSD-4-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/librss.pc b/share/sbom/pkgconfig/librss.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/librss.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: librss
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/librss
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/librtld_db.pc b/share/sbom/pkgconfig/librtld_db.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/librtld_db.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: librtld_db
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/librtld_db
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt, libelf, libprocstat, libutil
diff --git a/share/sbom/pkgconfig/libsbuf.pc b/share/sbom/pkgconfig/libsbuf.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libsbuf.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libsbuf
+Description: Library for manipulating smart buffers
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libsbuf
+License: BSD-3-Clause AND BSD-2-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libsdp.pc b/share/sbom/pkgconfig/libsdp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libsdp.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libsdp
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libsdp
+License: BSD-2-Clause
+Requires: csu, libbluetooth, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libstdthreads.pc b/share/sbom/pkgconfig/libstdthreads.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libstdthreads.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libstdthreads
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libstdthreads
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt, libthr
diff --git a/share/sbom/pkgconfig/libsys.pc b/share/sbom/pkgconfig/libsys.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libsys.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libsys
+Description: Library to manage system
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libsys
+License: BSD-3-Clause AND BSD-2-Clause
+Requires: csu, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libsysdecode.pc b/share/sbom/pkgconfig/libsysdecode.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libsysdecode.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libsysdecode
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libsysdecode
+License: BSD-2-Clause
+Requires: csu, libatf-c, lib80211, lib9p, libalias, libarchive, libbe, libbegemot, libblocklist, libblocksruntime, libbluetooth, libbsddialog, libbsdstat, libbsm, libbsnmp, bzip2, libc, libc++, libcalendar, libcam, libcapsicum, libcasper, libcasper.services.cap_dns, libcasper.services.cap_fileargs, libcasper.services.cap_grp, libcasper.services.cap_net, libcasper.services.cap_netdb, libcasper.services.cap_pwd, libcasper.services.cap_sysctl, libcasper.services.cap_syslog, libcom_err, libcompiler_rt, libcuse, libdevctl, libdevdctl, libdevinfo, libdevstat, libdpv, libdwarf, libedit, libedit.readline, libefivar, libelf, libevent1, libexecinfo, libexpat, libfetch, libfigpar, libgeom, libgpio, libjail, libkvm, liblzma, libmagic, libmd, libmemstat, libmilter, libmixer, libmp, libmt, libnetgraph, libpam, libpathconv, libpcap, libpmc, libproc, libprocstat, libradius, librss, librtld_db, libsdp, sqlite3, libstdthreads, libtacplus, libthread_db, libucl, libufs, libugidfw, libulog, libusb, libusbhid, libutil, libveriexec, libvgl, libvmmapi, libwrap, libxo, libypclnt, libz, libzstd, msun, libform, libmenu, libpanel, libtinfo
diff --git a/share/sbom/pkgconfig/libtacplus.pc b/share/sbom/pkgconfig/libtacplus.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libtacplus.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libtacplus
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libtacplus
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/libthr.pc b/share/sbom/pkgconfig/libthr.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libthr.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libthr
+Description: 1:1 POSIX threads library
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libthr
+License: BSD-4-Clause AND BSD-3-Clause AND BSD-2-Clause
+Requires: csu, libc, libcompiler_rt, libsys
diff --git a/share/sbom/pkgconfig/libthread_db.pc b/share/sbom/pkgconfig/libthread_db.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libthread_db.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libthread_db
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libthread_db
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libtinfo.pc b/share/sbom/pkgconfig/libtinfo.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libtinfo.pc
@@ -0,0 +1,12 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libtinfo
+Description: clone of System V curses tinfo library
+URL: https://invisible-island.net/ncurses
+Version: 6.5
+Source: https://invisible-island.net/archives/ncurses/ncurses-6.5.tar.gz
+License: X11
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libucl.pc b/share/sbom/pkgconfig/libucl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libucl.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libucl
+Description: Universal configuration library parser
+URL: https://github.com/vstakhov/libucl
+Version: 0.9.2
+Source: https://github.com/vstakhov/libucl
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/libufs.pc b/share/sbom/pkgconfig/libufs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libufs.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libufs
+Description: Library managing UFS
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libufs
+License: BSD-2-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libugidfw.pc b/share/sbom/pkgconfig/libugidfw.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libugidfw.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libugidfw
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libugidfw
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libulog.pc b/share/sbom/pkgconfig/libulog.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libulog.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libulog
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libulog
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/libusb.pc b/share/sbom/pkgconfig/libusb.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libusb.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libusb
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libusb
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt, libthr
diff --git a/share/sbom/pkgconfig/libusbhid.pc b/share/sbom/pkgconfig/libusbhid.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libusbhid.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libusbhid
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libusbhid
+License: BSD-2-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libutil.pc b/share/sbom/pkgconfig/libutil.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libutil.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libutil
+Description: FreeBSD misc util library
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libutil
+License: BSD-4-Clause AND BSD-3-Clause AND BSD-2-Clause AND LicenseRef-scancode-other-permissive
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libveriexec.pc b/share/sbom/pkgconfig/libveriexec.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libveriexec.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libveriexec
+Description: Verified execution routines
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libveriexec
+License: BSD-2-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libvgl.pc b/share/sbom/pkgconfig/libvgl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libvgl.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libvgl
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libvgl
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libvmmapi.pc b/share/sbom/pkgconfig/libvmmapi.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libvmmapi.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libvmmapi
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libvmmapi
+License: NOASSERTION
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/libwrap.pc b/share/sbom/pkgconfig/libwrap.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libwrap.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libwrap
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libwrap
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libxo.pc b/share/sbom/pkgconfig/libxo.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libxo.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: libxo
+Description: Library allows an application to generate text, XML, JSON, and HTML output using a common set of function calls.
+URL: https://github.com/Juniper/libxo
+Version: 1.4.0
+Source: https://github.com/Juniper/libxo/tree/1.4.0
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/libypclnt.pc b/share/sbom/pkgconfig/libypclnt.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libypclnt.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libypclnt
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/libypclnt
+License: NOASSERTION
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/libz.pc b/share/sbom/pkgconfig/libz.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libz.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libz
+Description: zlib compression library
+URL: https://zlib.net
+Version: 1.3.1
+Source: https://github.com/madler/zlib/tree/develop
+License: Zlib
diff --git a/share/sbom/pkgconfig/libzstd.pc b/share/sbom/pkgconfig/libzstd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/libzstd.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: libzstd
+Description: Zstandard is a fast compression algorithm
+URL: https://facebook.github.io/zstd/
+Version: 1.5.2
+Source: https://github.com/facebook/zstd
+License: BSD-3-Clause
diff --git a/share/sbom/pkgconfig/limits.pc b/share/sbom/pkgconfig/limits.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/limits.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: limits
+Description: Set or display process resource limits
+URL: https://man.freebsd.org/cgi/man.cgi?query=limits(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/limits
+License: LicenseRef-scancode-other-permissive
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-other-permissive.403fe0bf.txt
+Copyright: 1997 by David L. Nugent <davidn@blaze.net.au>
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/link.pc b/share/sbom/pkgconfig/link.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/link.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: link
+Description: Link files
+URL: https://man.freebsd.org/cgi/man.cgi?query=link(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/ln
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1987, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/lldb-server.pc b/share/sbom/pkgconfig/lldb-server.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lldb-server.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lldb-server
+Description: LLDB Documentation
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+Requires: csu, libclang, liblldb, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libedit, libexecinfo, liblua, liblzma, libthr, libz, libzstd, msun, libncurses, libpanel, libtinfo
diff --git a/share/sbom/pkgconfig/lldb.pc b/share/sbom/pkgconfig/lldb.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lldb.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lldb
+Description: LLDB Documentation
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+Requires: csu, libclang, liblldb, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libedit, libexecinfo, libkvm, liblua, liblzma, libthr, libz, libzstd, msun, libncurses, libpanel, libtinfo
diff --git a/share/sbom/pkgconfig/llvm-addr2line.pc b/share/sbom/pkgconfig/llvm-addr2line.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/llvm-addr2line.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: llvm-addr2line
+Description: A drop-in replacement for addr2line
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libthr, libz, msun, libncursesw
diff --git a/share/sbom/pkgconfig/llvm-ar.pc b/share/sbom/pkgconfig/llvm-ar.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/llvm-ar.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: llvm-ar
+Description: LLVM archiver
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libthr, libz, msun, libncursesw
diff --git a/share/sbom/pkgconfig/llvm-cov.pc b/share/sbom/pkgconfig/llvm-cov.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/llvm-cov.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: llvm-cov
+Description: Emit coverage information
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+Requires: csu, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libthr, libz, msun, libncursesw
diff --git a/share/sbom/pkgconfig/llvm-cxxfilt.pc b/share/sbom/pkgconfig/llvm-cxxfilt.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/llvm-cxxfilt.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: llvm-cxxfilt
+Description: LLVM symbol name demangler
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libthr, libz, msun, libncursesw
diff --git a/share/sbom/pkgconfig/llvm-nm.pc b/share/sbom/pkgconfig/llvm-nm.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/llvm-nm.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: llvm-nm
+Description: List LLVM bitcode and object file's symbol table
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libthr, libz, msun, libncursesw
diff --git a/share/sbom/pkgconfig/llvm-objcopy.pc b/share/sbom/pkgconfig/llvm-objcopy.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/llvm-objcopy.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: llvm-objcopy
+Description: Object copying and editing tool
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0 WITH LLVM-exception
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
diff --git a/share/sbom/pkgconfig/llvm-objdump.pc b/share/sbom/pkgconfig/llvm-objdump.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/llvm-objdump.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: llvm-objdump
+Description: LLVM's object file dumper
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libexecinfo, libthr, libz, libzstd, msun, libtinfo
diff --git a/share/sbom/pkgconfig/llvm-profdata.pc b/share/sbom/pkgconfig/llvm-profdata.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/llvm-profdata.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: llvm-profdata
+Description: Profile data tool
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libthr, libz, msun, libncursesw
diff --git a/share/sbom/pkgconfig/llvm-ranlib.pc b/share/sbom/pkgconfig/llvm-ranlib.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/llvm-ranlib.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: llvm-ranlib
+Description: Generates an archive index
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libthr, libz, msun, libncursesw
diff --git a/share/sbom/pkgconfig/llvm-readelf.pc b/share/sbom/pkgconfig/llvm-readelf.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/llvm-readelf.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: llvm-readelf
+Description: GNU-style LLVM Object Reader
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0 WITH LLVM-exception
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
diff --git a/share/sbom/pkgconfig/llvm-readobj.pc b/share/sbom/pkgconfig/llvm-readobj.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/llvm-readobj.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: llvm-readobj
+Description: LLVM Object Reader
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
diff --git a/share/sbom/pkgconfig/llvm-size.pc b/share/sbom/pkgconfig/llvm-size.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/llvm-size.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: llvm-size
+Description: Print size information
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0 WITH LLVM-exception
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
diff --git a/share/sbom/pkgconfig/llvm-strings.pc b/share/sbom/pkgconfig/llvm-strings.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/llvm-strings.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: llvm-strings
+Description: Print strings
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
diff --git a/share/sbom/pkgconfig/llvm-strip.pc b/share/sbom/pkgconfig/llvm-strip.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/llvm-strip.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: llvm-strip
+Description: Strip binary
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
diff --git a/share/sbom/pkgconfig/llvm-symbolizer.pc b/share/sbom/pkgconfig/llvm-symbolizer.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/llvm-symbolizer.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: llvm-symbolizer
+Description: Convert addresses into source code locations
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libthr, libz, msun, libncursesw
diff --git a/share/sbom/pkgconfig/ln.pc b/share/sbom/pkgconfig/ln.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ln.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: ln
+Description: Link files
+URL: https://man.freebsd.org/cgi/man.cgi?query=ln(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/ln
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1987, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/locale.pc b/share/sbom/pkgconfig/locale.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/locale.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: locale
+Description: Get locale-specific information
+URL: https://man.freebsd.org/cgi/man.cgi?query=locale(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/locale
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2002, 2003 Alexey Zelkin <phantom@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libsbuf
diff --git a/share/sbom/pkgconfig/localedef.pc b/share/sbom/pkgconfig/localedef.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/localedef.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: localedef
+Description: Define locale environment
+URL: https://man.freebsd.org/cgi/man.cgi?query=localedef(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/localedef
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.24b7bfd9.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.33975e2c.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.9e847da2.txt
+Copyright: Copyright 2010 Nexenta Systems, Inc., Copyright 2015 John Marino <draco@marino.st>, Copyright 2018 Nexenta Systems, Inc., Copyright 2012 Garrett D'Amore <garrett@damore.org>, Copyright 2011 Nexenta Systems, Inc.
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/locate.pc b/share/sbom/pkgconfig/locate.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/locate.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: locate
+Description: Find filenames quickly
+URL: https://man.freebsd.org/cgi/man.cgi?query=locate(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/locate/locate
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1995-2022 Wolfram Schneider <wosch@FreeBSD.org>, 1989, 1993 The Regents of the University of California, 1995 Wolfram Schneider <wosch@FreeBSD.org>, Berlin. 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/lock.pc b/share/sbom/pkgconfig/lock.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lock.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lock
+Description: Reserve a terminal
+URL: https://man.freebsd.org/cgi/man.cgi?query=lock(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/lock
+License: Beerware AND BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1987, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libpam
diff --git a/share/sbom/pkgconfig/lockf.pc b/share/sbom/pkgconfig/lockf.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lockf.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lockf
+Description: Execute a command while holding a file lock
+URL: https://man.freebsd.org/cgi/man.cgi?query=lockf(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/lockf
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.578b3f95.txt
+Copyright: 1997 John D. Polstra
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/logger.pc b/share/sbom/pkgconfig/logger.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/logger.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: logger
+Description: Make entries in the system log
+URL: https://man.freebsd.org/cgi/man.cgi?query=logger(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/logger
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1983, 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_syslog, libcompiler_rt
diff --git a/share/sbom/pkgconfig/login.pc b/share/sbom/pkgconfig/login.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/login.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: login
+Description: Log into the computer
+URL: https://man.freebsd.org/cgi/man.cgi?query=login(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/login
+License: BSD-4-Clause AND BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.da76510e.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-4-Clause-UC.06c1e96a.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.db376798.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.808174b8.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.1e49f7de.txt
+Copyright: Copyright 1995 by Wietse Venema, 2001 FreeBSD, Inc, 1989, 1993 The Regents of the University of California, 1980, 1987, 1988, 1991, 1993, 1994 The Regents of the University of California, 2002 Networks Associates Technologies, Inc., 2005 Apple Computer, Inc.
+Requires: csu, libc, libcompiler_rt, libpam, libutil
diff --git a/share/sbom/pkgconfig/logins.pc b/share/sbom/pkgconfig/logins.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/logins.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: logins
+Description: Display account information
+URL: https://man.freebsd.org/cgi/man.cgi?query=logins(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/logins
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-bsd-unchanged.f9e44ef7.txt
+Copyright: 2004 Dag-Erling Smorgrav
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/logname.pc b/share/sbom/pkgconfig/logname.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/logname.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: logname
+Description: Display user's login name
+URL: https://man.freebsd.org/cgi/man.cgi?query=logname(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/logname
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/look.pc b/share/sbom/pkgconfig/look.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/look.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: look
+Description: Display lines beginning with a given string
+URL: https://man.freebsd.org/cgi/man.cgi?query=look(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/look
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993 The Regents of the University of California, 1991, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/lorder.pc b/share/sbom/pkgconfig/lorder.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lorder.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lorder
+Description: List dependencies for object files
+URL: https://man.freebsd.org/cgi/man.cgi?query=lorder(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/lorder
+License: BSD-3-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/lp.pc b/share/sbom/pkgconfig/lp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lp.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lp
+Description: Front-end to the print spooler
+URL: https://man.freebsd.org/cgi/man.cgi?query=lp(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/lpr/lp
+License: BSD-4-Clause-UC AND LicenseRef-scancode-unknown-license-reference
diff --git a/share/sbom/pkgconfig/lpq.pc b/share/sbom/pkgconfig/lpq.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lpq.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lpq
+Description: Spool queue examination program
+URL: https://man.freebsd.org/cgi/man.cgi?query=lpq(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/lpr/lpq
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1983, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/lpr.pc b/share/sbom/pkgconfig/lpr.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lpr.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lpr
+Description: Off line print
+URL: https://man.freebsd.org/cgi/man.cgi?query=lpr(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/lpr/lpr
+License: BSD-4-Clause-UC AND LicenseRef-scancode-unknown-license-reference
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-unknown-license-reference.39686fea.txt, ${pcfiledir}/LICENSES/BSD-4-Clause-UC.06c1e96a.txt
+Copyright: 1983, 1989, 1993 The Regents of the University of California, (c) UNIX System Laboratories, Inc.
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/lprm.pc b/share/sbom/pkgconfig/lprm.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lprm.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lprm
+Description: Remove jobs from the line printer spooling queue
+URL: https://man.freebsd.org/cgi/man.cgi?query=lprm(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/lpr/lprm
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1983, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ls.pc b/share/sbom/pkgconfig/ls.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ls.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: ls
+Description: List directory contents
+URL: https://man.freebsd.org/cgi/man.cgi?query=ls(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/ls
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993, 1994 The Regents of the University of California, 1989, 1993 The Regents of the University of California, 1991, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libutil, libtinfo
diff --git a/share/sbom/pkgconfig/lsvfs.pc b/share/sbom/pkgconfig/lsvfs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lsvfs.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lsvfs
+Description: List installed virtual file systems
+URL: https://man.freebsd.org/cgi/man.cgi?query=lsvfs(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/lsvfs
+License: LicenseRef-scancode-public-domain
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.c41c780a.txt
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/lua.pc b/share/sbom/pkgconfig/lua.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lua.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lua
+Description: Embeddable scripting language
+URL: https://www.lua.org
+Version: 5.4.8
+Source: https://github.com/lua/lua/tree/v5.4.8
+License: MIT
diff --git a/share/sbom/pkgconfig/lzcat.pc b/share/sbom/pkgconfig/lzcat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lzcat.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lzcat
+Description: General purpose data compression library
+URL: https://tukaani.org/xz/
+Version: 5.8.1
+Source: https://github.com/tukaani-project/xz
+License: 0BSD
diff --git a/share/sbom/pkgconfig/lzdec.pc b/share/sbom/pkgconfig/lzdec.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lzdec.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lzdec
+Description: General purpose data compression library
+URL: https://tukaani.org/xz/
+Version: 5.8.1
+Source: https://github.com/tukaani-project/xz
+License: 0BSD
diff --git a/share/sbom/pkgconfig/lzegrep.pc b/share/sbom/pkgconfig/lzegrep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lzegrep.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lzegrep
+Description: Grep compressed files
+URL: https://man.freebsd.org/cgi/man.cgi?query=lzegrep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/grep
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999 James Howard and Dag-Erling Smorgrav, 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org>, 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>, 2017 Kyle Evans <kevans@FreeBSD.org>, 2010 Dimitry Andric <dimitry@andric.com>, 2020 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, libbz2, libc, libcompiler_rt, libregex, libz
diff --git a/share/sbom/pkgconfig/lzfgrep.pc b/share/sbom/pkgconfig/lzfgrep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lzfgrep.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lzfgrep
+Description: Grep compressed files
+URL: https://man.freebsd.org/cgi/man.cgi?query=lzfgrep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/grep
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999 James Howard and Dag-Erling Smorgrav, 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org>, 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>, 2017 Kyle Evans <kevans@FreeBSD.org>, 2010 Dimitry Andric <dimitry@andric.com>, 2020 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, libbz2, libc, libcompiler_rt, libregex, libz
diff --git a/share/sbom/pkgconfig/lzgrep.pc b/share/sbom/pkgconfig/lzgrep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lzgrep.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lzgrep
+Description: Grep compressed files
+URL: https://man.freebsd.org/cgi/man.cgi?query=lzgrep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/grep
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999 James Howard and Dag-Erling Smorgrav, 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org>, 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>, 2017 Kyle Evans <kevans@FreeBSD.org>, 2010 Dimitry Andric <dimitry@andric.com>, 2020 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, libbz2, libc, libcompiler_rt, libregex, libz
diff --git a/share/sbom/pkgconfig/lzless.pc b/share/sbom/pkgconfig/lzless.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lzless.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lzless
+Description: General purpose data compression library
+URL: https://tukaani.org/xz/
+Version: 5.8.1
+Source: https://github.com/tukaani-project/xz
+License: 0BSD
diff --git a/share/sbom/pkgconfig/lzma.pc b/share/sbom/pkgconfig/lzma.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lzma.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lzma
+Description: General purpose data compression library
+URL: https://tukaani.org/xz/
+Version: 5.8.1
+Source: https://github.com/tukaani-project/xz
+License: 0BSD
diff --git a/share/sbom/pkgconfig/lzmainfo.pc b/share/sbom/pkgconfig/lzmainfo.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/lzmainfo.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: lzmainfo
+Description: General purpose data compression library
+URL: https://tukaani.org/xz/
+Version: 5.8.1
+Source: https://github.com/tukaani-project/xz
+License: 0BSD
diff --git a/share/sbom/pkgconfig/m4.pc b/share/sbom/pkgconfig/m4.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/m4.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: m4
+Description: Macro language processor
+URL: https://man.freebsd.org/cgi/man.cgi?query=m4(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/m4
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.1ecd1e34.txt, ${pcfiledir}/LICENSES/ISC.a506e8a5.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.da76510e.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 2001 Marc Espie, 2004 Marc Espie <espie@cvs.openbsd.org>, 1999 Marc Espie, 1989, 1993 The Regents of the University of California, 1991, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libopenbsd, msun
diff --git a/share/sbom/pkgconfig/mail.pc b/share/sbom/pkgconfig/mail.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mail.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: mail
+Description: Send and receive mail
+URL: https://man.freebsd.org/cgi/man.cgi?query=mail(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/mail
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1993 The Regents of the University of California, 1992, 1993 The Regents of the University of California, 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/mailq.pc b/share/sbom/pkgconfig/mailq.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mailq.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: mailq
+Description: General purpose internetwork email routing application
+URL: https://ftp.sendmail.org
+Version: 8.18.1
+Source: https://ftp.sendmail.org/sendmail.8.18.1.tar.gz
+License: Sendmail
+Requires: openssl
diff --git a/share/sbom/pkgconfig/mailx.pc b/share/sbom/pkgconfig/mailx.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mailx.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: mailx
+Description: Send and receive mail
+URL: https://man.freebsd.org/cgi/man.cgi?query=mailx(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/mail
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1993 The Regents of the University of California, 1992, 1993 The Regents of the University of California, 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/make.pc b/share/sbom/pkgconfig/make.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/make.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: make
+Description: Program designed to simplify the maintenance of other programs
+URL: https://www.NetBSD.org
+Version: 20250804
+Source: https://cvsweb.netbsd.org/bsdweb.cgi/src/usr.bin/make/
+License: BSD-3-Clause
diff --git a/share/sbom/pkgconfig/makewhatis.pc b/share/sbom/pkgconfig/makewhatis.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/makewhatis.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: makewhatis
+Description: Utilities query manual page databases generated by makewhatis evaluating
+URL: https://mandoc.bsd.lv
+Version: 2025-09-26
+License: BSD-3-Clause AND BSD-2-Clause AND 0BSD
diff --git a/share/sbom/pkgconfig/man.pc b/share/sbom/pkgconfig/man.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/man.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: man
+Description: Display online manual documentation pages
+URL: https://mandoc.bsd.lv
+Version: 2025-09-26
+License: BSD-3-Clause AND BSD-2-Clause AND 0BSD
diff --git a/share/sbom/pkgconfig/mandoc.pc b/share/sbom/pkgconfig/mandoc.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mandoc.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: mandoc
+Description: UNIX manpage compiler toolset
+URL: https://mandoc.bsd.lv
+Version: 2025-09-26
+License: BSD-3-Clause AND BSD-2-Clause AND 0BSD
diff --git a/share/sbom/pkgconfig/manpath.pc b/share/sbom/pkgconfig/manpath.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/manpath.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: manpath
+Description: Display search path for manual pages
+URL: https://mandoc.bsd.lv
+Version: 2025-09-26
+License: BSD-3-Clause AND BSD-2-Clause AND 0BSD
diff --git a/share/sbom/pkgconfig/mckey.pc b/share/sbom/pkgconfig/mckey.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mckey.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: mckey
+Description: RDMA CM datagram setup and simple ping-pong test
+URL: https://www.openfabrics.org/ofed-for-linux/
+Version: 1.5.3
+Source: https://downloads.openfabrics.org/OFED/archive/ofed-1.5.3/OFED-1.5.3.tgz
+License: GPL-2.0 OR BSD-2-Clause
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/md5.pc b/share/sbom/pkgconfig/md5.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/md5.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: md5
+Description: Calculate a message-digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=md5(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/md5sum.pc b/share/sbom/pkgconfig/md5sum.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/md5sum.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: md5sum
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=md5sum(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/mdconfig.pc b/share/sbom/pkgconfig/mdconfig.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mdconfig.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: mdconfig
+Description: Create and control memory disks
+URL: https://man.freebsd.org/cgi/man.cgi?query=mdconfig(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/mdconfig
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2000-2004 Poul-Henning Kamp <phk@FreeBSD.org>, 2012 The FreeBSD Foundation
+Requires: csu, libc, libcompiler_rt, libdevstat, libgeom, libkvm, libutil
diff --git a/share/sbom/pkgconfig/mdmfs.pc b/share/sbom/pkgconfig/mdmfs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mdmfs.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: mdmfs
+Description: Configure and mount an in-memory file system using the md(4) driver or the tmpfs(4) filesystem
+URL: https://man.freebsd.org/cgi/man.cgi?query=mdmfs(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/mdmfs
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2001 Dima Dorfman
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/mdo.pc b/share/sbom/pkgconfig/mdo.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mdo.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: mdo
+Description: Execute commands as another user
+URL: https://man.freebsd.org/cgi/man.cgi?query=mdo(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/mdo
+License: BSD-2-Clause
+Copyright: 2024 Baptiste Daroussin <bapt@FreeBSD.org>, 2025 Kushagra Srivastava <kushagra1403@gmail.com>, 2025 The FreeBSD Foundation
diff --git a/share/sbom/pkgconfig/mesg.pc b/share/sbom/pkgconfig/mesg.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mesg.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: mesg
+Description: Display (do not display) messages from other users
+URL: https://man.freebsd.org/cgi/man.cgi?query=mesg(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/mesg
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-unknown-license-reference.39686fea.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1987, 1993 The Regents of the University of California, (c) UNIX System Laboratories, Inc.
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/mididump.pc b/share/sbom/pkgconfig/mididump.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mididump.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: mididump
+Description: Dump MIDI events
+URL: https://man.freebsd.org/cgi/man.cgi?query=mididump(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/mididump
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2024 The FreeBSD Foundation
diff --git a/share/sbom/pkgconfig/ministat.pc b/share/sbom/pkgconfig/ministat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ministat.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ministat
+Description: Statistics utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=ministat(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/ministat
+License: Beerware
+License.file: ${pcfiledir}/LICENSES/Beerware.7543af4e.txt
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt, msun
diff --git a/share/sbom/pkgconfig/mkcsmapper.pc b/share/sbom/pkgconfig/mkcsmapper.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mkcsmapper.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: mkcsmapper
+Description: Generates hashed conversion data for iconv(3)
+URL: https://man.freebsd.org/cgi/man.cgi?query=mkcsmapper(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/mkcsmapper
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2003, 2006 Citrus Project, 2003 Citrus Project
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/mkdep.pc b/share/sbom/pkgconfig/mkdep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mkdep.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: mkdep
+Description: Construct Makefile dependency list
+URL: https://man.freebsd.org/cgi/man.cgi?query=mkdep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/mkdep
+License: BSD-3-Clause
diff --git a/share/sbom/pkgconfig/mkdir.pc b/share/sbom/pkgconfig/mkdir.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mkdir.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: mkdir
+Description: Make directories
+URL: https://man.freebsd.org/cgi/man.cgi?query=mkdir(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/mkdir
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1983, 1992, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/mkesdb.pc b/share/sbom/pkgconfig/mkesdb.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mkesdb.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: mkesdb
+Description: Generates conversion catalog for iconv(3)
+URL: https://man.freebsd.org/cgi/man.cgi?query=mkesdb(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/mkesdb
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2003 Citrus Project
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/mkfifo.pc b/share/sbom/pkgconfig/mkfifo.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mkfifo.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: mkfifo
+Description: Make fifos
+URL: https://man.freebsd.org/cgi/man.cgi?query=mkfifo(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/mkfifo
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1990, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/mkimg.pc b/share/sbom/pkgconfig/mkimg.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mkimg.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: mkimg
+Description: Utility to make disk images
+URL: https://man.freebsd.org/cgi/man.cgi?query=mkimg(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/mkimg
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2014, 2015 Marcel Moolenaar, 2014 Juniper Networks, Inc., 2013,2014 Juniper Networks, Inc., 2014 Marcel Moolenaar, 2020 Oleksandr Tymoshenko <gonzo@FreeBSD.org>, 2016 Marcel Moolenaar, 2002 Thomas Moestl <tmm@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/mknod.pc b/share/sbom/pkgconfig/mknod.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mknod.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: mknod
+Description: Build special file
+URL: https://man.freebsd.org/cgi/man.cgi?query=mknod(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/mknod
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/mksnap_ffs.pc b/share/sbom/pkgconfig/mksnap_ffs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mksnap_ffs.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: mksnap_ffs
+Description: Take a file system snapshot
+URL: https://man.freebsd.org/cgi/man.cgi?query=mksnap_ffs(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/mksnap_ffs
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.9136516b.txt
+Copyright: 2003 Networks Associates Technology, Inc.
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/mkstr.pc b/share/sbom/pkgconfig/mkstr.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mkstr.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: mkstr
+Description: Create an error message file by massaging C source
+URL: https://man.freebsd.org/cgi/man.cgi?query=mkstr(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/mkstr
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/mktemp.pc b/share/sbom/pkgconfig/mktemp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mktemp.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: mktemp
+Description: Make temporary file name (unique)
+URL: https://man.freebsd.org/cgi/man.cgi?query=mktemp(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/mktemp
+License: BSD-2-Clause AND LicenseRef-scancode-other-permissive
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-other-permissive.a70a7af9.txt
+Copyright: 1994, 1995, 1996, 1998 Peter Wemm <peter@netplex.com.au>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/mkuzip.pc b/share/sbom/pkgconfig/mkuzip.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mkuzip.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: mkuzip
+Description: Compress disk image for use with geom_uzip(4) class
+URL: https://www.FreeBSD.org
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/mkuzip
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.67612e5f.txt
+Copyright: 2004-2016 Maxim Sobolev <sobomax@FreeBSD.org>, 2011 Aleksandr Rybalko <ray@ddteam.net>, 2016 Maxim Sobolev <sobomax@FreeBSD.org>, 2019 Conrad Meyer <cem@FreeBSD.org>
diff --git a/share/sbom/pkgconfig/more.pc b/share/sbom/pkgconfig/more.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/more.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: more
+Description: Open-source file pager
+URL: https://www.greenwoodsoftware.com/less/
+Version: 679
+Source: https://www.greenwoodsoftware.com/less/less-679.tar.gz
+License: BSD-2-Clause
+Requires: libncurses
diff --git a/share/sbom/pkgconfig/morse.pc b/share/sbom/pkgconfig/morse.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/morse.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: morse
+Description: Reformat input as morse code
+URL: https://man.freebsd.org/cgi/man.cgi?query=morse(6)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/morse
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/mount.pc b/share/sbom/pkgconfig/mount.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mount.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: mount
+Description: Mount file systems
+URL: https://man.freebsd.org/cgi/man.cgi?query=mount(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/mount
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1989, 1993, 1994 The Regents of the University of California, 1992, 1993, 1994 The Regents of the University of California, 1980, 1989, 1993, 1994 The Regents of the University of California, 1997 FreeBSD Inc., 1995 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libutil, libxo
diff --git a/share/sbom/pkgconfig/mount_cd9660.pc b/share/sbom/pkgconfig/mount_cd9660.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mount_cd9660.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: mount_cd9660
+Description: Mount an ISO-9660 file system
+URL: https://man.freebsd.org/cgi/man.cgi?query=mount_cd9660(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/mount_cd9660
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1992, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libkiconv
diff --git a/share/sbom/pkgconfig/mount_fusefs.pc b/share/sbom/pkgconfig/mount_fusefs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mount_fusefs.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: mount_fusefs
+Description: Mount a Fuse file system daemon
+URL: https://man.freebsd.org/cgi/man.cgi?query=mount_fusefs(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/mount_fusefs
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2005 Jean-Sebastien Pedron, 2005 Csaba Henk, 2019 The FreeBSD Foundation
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/mount_mfs.pc b/share/sbom/pkgconfig/mount_mfs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mount_mfs.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: mount_mfs
+Description: Configure and mount an in-memory file system using the md(4) driver or the tmpfs(4) filesystem
+URL: https://man.freebsd.org/cgi/man.cgi?query=mount_mfs(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/mdmfs
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2001 Dima Dorfman
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/mount_msdosfs.pc b/share/sbom/pkgconfig/mount_msdosfs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mount_msdosfs.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: mount_msdosfs
+Description: Mount an MS-DOS (FAT) file system
+URL: https://man.freebsd.org/cgi/man.cgi?query=mount_msdosfs(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/mount_msdosfs
+License: BSD-4-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause.d2579bcb.txt
+Copyright: 1994 Christopher G. Demetriou
+Requires: csu, libc, libcompiler_rt, libkiconv, libutil
diff --git a/share/sbom/pkgconfig/mount_nfs.pc b/share/sbom/pkgconfig/mount_nfs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mount_nfs.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: mount_nfs
+Description: Mount NFS file systems
+URL: https://man.freebsd.org/cgi/man.cgi?query=mount_nfs(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/mount_nfs
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1992, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/mount_nullfs.pc b/share/sbom/pkgconfig/mount_nullfs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mount_nullfs.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: mount_nullfs
+Description: Mount a loopback file system sub-tree; demonstrate the use of a null file system layer
+URL: https://man.freebsd.org/cgi/man.cgi?query=mount_nullfs(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/mount_nullfs
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1992, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/mount_udf.pc b/share/sbom/pkgconfig/mount_udf.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mount_udf.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: mount_udf
+Description: Mount a UDF file system
+URL: https://man.freebsd.org/cgi/man.cgi?query=mount_udf(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/mount_udf
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1992, 1993, 1994 The Regents of the University of California, 2002 Scott Long
+Requires: csu, libc, libcompiler_rt, libkiconv
diff --git a/share/sbom/pkgconfig/mount_unionfs.pc b/share/sbom/pkgconfig/mount_unionfs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mount_unionfs.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: mount_unionfs
+Description: Mount union file systems
+URL: https://man.freebsd.org/cgi/man.cgi?query=mount_unionfs(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/mount_unionfs
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1992, 1993, 1994 The Regents of the University of California, 2005, 2006 Masanori Ozawa <ozawa@ongs.co.jp> , ONGS Inc., 2006 Daichi Goto <daichi@freebsd.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/msgs.pc b/share/sbom/pkgconfig/msgs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/msgs.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: msgs
+Description: System messages and junk mail program
+URL: https://man.freebsd.org/cgi/man.cgi?query=msgs(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/msgs
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1993 The Regents of the University of California, 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libtinfo
diff --git a/share/sbom/pkgconfig/msun.pc b/share/sbom/pkgconfig/msun.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/msun.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: msun
+Description: Library missing description
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/lib/msun
+License: BSD-4-Clause AND BSD-2-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/mt.pc b/share/sbom/pkgconfig/mt.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mt.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: mt
+Description: Magnetic tape manipulating program
+URL: https://man.freebsd.org/cgi/man.cgi?query=mt(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/mt
+License: BSD-3-Clause AND LicenseRef-scancode-intel-bsd-2-clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-intel-bsd-2-clause.b794004b.txt
+Copyright: 2013, 2014, 2015 Spectra Logic Corporation
+Requires: csu, libc, libcompiler_rt, libexpat, libmt
diff --git a/share/sbom/pkgconfig/mv.pc b/share/sbom/pkgconfig/mv.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/mv.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: mv
+Description: Move files
+URL: https://man.freebsd.org/cgi/man.cgi?query=mv(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/mv
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/natd.pc b/share/sbom/pkgconfig/natd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/natd.pc
@@ -0,0 +1,13 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: natd
+Description: Network Address Translation daemon
+URL: https://man.freebsd.org/cgi/man.cgi?query=natd(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/natd
+License: LicenseRef-scancode-other-permissive
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-other-permissive.d3a0be35.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-other-permissive.472c8bff.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-other-permissive.d91bc005.txt
+Requires: csu, libalias, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/nawk.pc b/share/sbom/pkgconfig/nawk.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/nawk.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: nawk
+Description: One true awk
+URL: https://github.com/onetrueawk/awk
+Version: 20250804
+Source: https://github.com/onetrueawk/awk/tree/d7f37646965ee26214da0e1d97f3c1d54349ae2d
+License: SMLNJ
diff --git a/share/sbom/pkgconfig/nc.pc b/share/sbom/pkgconfig/nc.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/nc.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: nc
+Description: Arbitrary TCP and UDP connections and listens
+URL: https://github.com/openbsd/src/tree/master/usr.bin/nc
+Version: 5.8
+Source: https://github.com/openbsd/src/tree/master/usr.bin/nc
+License: BSD-3-Clause AND BSD-2-Clause
diff --git a/share/sbom/pkgconfig/ncal.pc b/share/sbom/pkgconfig/ncal.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ncal.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ncal
+Description: Displays a calendar and the date of Easter
+URL: https://man.freebsd.org/cgi/man.cgi?query=ncal(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/ncal
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1997 Wolfgang Helbig
+Requires: csu, libc, libcalendar, libcompiler_rt, libtinfo
diff --git a/share/sbom/pkgconfig/netstat.pc b/share/sbom/pkgconfig/netstat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/netstat.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: netstat
+Description: Show network status and statistics
+URL: https://man.freebsd.org/cgi/man.cgi?query=netstat(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/netstat
+License: BSD-4-Clause AND BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/BSD-4-Clause-UC.06c1e96a.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.328b29b3.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.cd8b5ddb.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-whistle.3e694e2c.txt
+Copyright: 2005 Christian S.J. Peron, 1989 Stephen Deering, 1992, 1993 The Regents of the University of California, 1983, 1988, 1993 The Regents of the University of California, 1992, 1993 Regents of the University of California, 1995, 1996, 1997, 1998, and 1999 WIDE Project, 1983, 1988, 1993, 1995 The Regents of the University of California, 2005 Robert N. M. Watson, 2001-2007, by Weongyo Jeong, 2011, by Michael Tuexen, 1996-1999 Whistle Communications, Inc., 2005 NTT Multimedia Communications Laboratories, Inc., 1998 WIDE Project, 2013 Gleb Smirnoff <glebius@FreeBSD.org>, 2010-2011 Juniper Networks, Inc., 1983, 1988, 1993 Regents of the University of California, 2020 Alexander V. Chernikov
+Requires: csu, libc, libcompiler_rt, libkvm, libmemstat, libutil, libxo
diff --git a/share/sbom/pkgconfig/newaliases.pc b/share/sbom/pkgconfig/newaliases.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/newaliases.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: newaliases
+Description: General purpose internetwork email routing application
+URL: https://ftp.sendmail.org
+Version: 8.18.1
+Source: https://ftp.sendmail.org/sendmail.8.18.1.tar.gz
+License: Sendmail
+Requires: openssl
diff --git a/share/sbom/pkgconfig/newfs.pc b/share/sbom/pkgconfig/newfs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/newfs.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: newfs
+Description: Construct a new UFS1/UFS2 file system
+URL: https://man.freebsd.org/cgi/man.cgi?query=newfs(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/newfs
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 2002 Networks Associates Technology, Inc., 1980, 1989, 1993 The Regents of the University of California, 1983, 1989, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libufs, libutil
diff --git a/share/sbom/pkgconfig/newfs_msdos.pc b/share/sbom/pkgconfig/newfs_msdos.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/newfs_msdos.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: newfs_msdos
+Description: Construct a new MS-DOS (FAT) file system
+URL: https://man.freebsd.org/cgi/man.cgi?query=newfs_msdos(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/newfs_msdos
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.0bb055ab.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt
+Copyright: 1998 Robert Nordier, 2013 The NetBSD Foundation, Inc.
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/newgrp.pc b/share/sbom/pkgconfig/newgrp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/newgrp.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: newgrp
+Description: Change to a new group
+URL: https://man.freebsd.org/cgi/man.cgi?query=newgrp(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/newgrp
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2002 Tim J. Robbins
+Requires: csu, libc, libcompiler_rt, libcrypt, libutil
diff --git a/share/sbom/pkgconfig/nex.pc b/share/sbom/pkgconfig/nex.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/nex.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: nex
+Description: Multibyte fork of the nvi editor for BSD
+URL: https://github.com/lichray/nvi2
+Version: 2.2.2
+Source: https://github.com/lichray/nvi2/tree/v2.2.2
+License: BSD-3-Clause
+Requires: csu, libc, libutil, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/nextboot.pc b/share/sbom/pkgconfig/nextboot.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/nextboot.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: nextboot
+Description: Specify an alternate kernel and boot flags for the next reboot
+URL: https://man.freebsd.org/cgi/man.cgi?query=nextboot(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/reboot
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1986, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/nfsiod.pc b/share/sbom/pkgconfig/nfsiod.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/nfsiod.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: nfsiod
+Description: Local NFS asynchronous I/O server
+URL: https://man.freebsd.org/cgi/man.cgi?query=nfsiod(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/nfsiod
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/nfsstat.pc b/share/sbom/pkgconfig/nfsstat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/nfsstat.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: nfsstat
+Description: Display NFS statistics
+URL: https://man.freebsd.org/cgi/man.cgi?query=nfsstat(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/nfsstat
+License: BSD-3-Clause AND LicenseRef-scancode-intel-bsd-2-clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-intel-bsd-2-clause.b794004b.txt
+Copyright: 1983, 1989, 1993 The Regents of the University of California, 2004, 2008, 2009 Silicon Graphics International Corp.
+Requires: csu, libc, libcompiler_rt, libdevstat, libkvm, libxo
diff --git a/share/sbom/pkgconfig/nice.pc b/share/sbom/pkgconfig/nice.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/nice.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: nice
+Description: Execute a utility at an altered scheduling priority
+URL: https://man.freebsd.org/cgi/man.cgi?query=nice(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/nice
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/nl.pc b/share/sbom/pkgconfig/nl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/nl.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: nl
+Description: Line numbering filter
+URL: https://man.freebsd.org/cgi/man.cgi?query=nl(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/nl
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt
+Copyright: 1999 The NetBSD Foundation, Inc.
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/nm.pc b/share/sbom/pkgconfig/nm.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/nm.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: nm
+Description: BSD licensed ELF toolchain
+URL: https://sourceforge.net/projects/elftoolchain/
+Version: r4912
+Source: https://sourceforge.net/p/elftoolchain/code/
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/nohup.pc b/share/sbom/pkgconfig/nohup.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/nohup.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: nohup
+Description: Invoke a utility immune to hangups
+URL: https://man.freebsd.org/cgi/man.cgi?query=nohup(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/nohup
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/nologin.pc b/share/sbom/pkgconfig/nologin.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/nologin.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: nologin
+Description: Close down the system at a given time
+URL: https://man.freebsd.org/cgi/man.cgi?query=shutdown(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/shutdown
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1990, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/nos-tun.pc b/share/sbom/pkgconfig/nos-tun.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/nos-tun.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: nos-tun
+Description: Implement ``nos'' or ``ka9q'' style IP over IP tunnel
+URL: https://man.freebsd.org/cgi/man.cgi?query=nos-tun(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/nos-tun
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-bsd-unmodified.b0958790.txt
+Copyright: 1996, Nickolay Dudorov
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/nproc.pc b/share/sbom/pkgconfig/nproc.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/nproc.pc
@@ -0,0 +1,13 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: nproc
+Description: Print the number of processors
+URL: https://man.freebsd.org/cgi/man.cgi?query=nproc(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/nproc
+License: BSD-2-Clause
+Copyright: 2023 Mateusz Guzik
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ntpq.pc b/share/sbom/pkgconfig/ntpq.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ntpq.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ntpq
+Description: Network Time Protocol (NTP)
+URL: https://www.ntp.org
+Version: 4.2.8p18
+Source: https://downloads.nwtime.org/ntp/4.2.8/ntp-4.2.8p18.tar.gz
+License: Beerware AND BSD-4-Clause AND BSD-4-Clause-UC AND BSD-3-Clause AND BSD-2-Clause AND BSD-3-Clause AND CC-PDDC AND BSD-4.3TAHOE AND curl AND FSFAP AND GPL-1.0-or-later AND GPL-3.0-or-later WITH Bison-exception-2.2 AND HPND AND ISC LicenseRef-scancode-public-domain AND LGPL-2.0-or-later AND LGPL-2.1-or-later AND LGPL-3.0-or-later OR BSD-3-Clause AND LicenseRef-scancode-historical-ntp AND LicenseRef-scancode-nortel-dasa AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-philippe-de-muyter AND LicenseRef-scancode-takao-abe AND LicenseRef-scancode-warranty-disclaimer AND LicenseRef-scancode-other-permissive AND MIT AND MIT-CMU AND NTP NTP-0
diff --git a/share/sbom/pkgconfig/number.pc b/share/sbom/pkgconfig/number.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/number.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: number
+Description: Convert Arabic numerals to English
+URL: https://man.freebsd.org/cgi/man.cgi?query=number(6)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/number
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/nvi.pc b/share/sbom/pkgconfig/nvi.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/nvi.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: nvi
+Description: Multibyte fork of the nvi editor for BSD
+URL: https://github.com/lichray/nvi2
+Version: 2.2.2
+Source: https://github.com/lichray/nvi2/tree/v2.2.2
+License: BSD-3-Clause
+Requires: csu, libc, libutil, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/nview.pc b/share/sbom/pkgconfig/nview.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/nview.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: nview
+Description: Multibyte fork of the nvi editor for BSD
+URL: https://github.com/lichray/nvi2
+Version: 2.2.2
+Source: https://github.com/lichray/nvi2/tree/v2.2.2
+License: BSD-3-Clause
+Requires: csu, libc, libutil, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/nvmecontrol.pc b/share/sbom/pkgconfig/nvmecontrol.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/nvmecontrol.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: nvmecontrol
+Description: NVM Express control utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=nvmecontrol(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/nvmecontrol
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.28d55d07.txt
+Copyright: 2012-2013 Intel Corporation, 2018-2019 Alexander Motin <mav@FreeBSD.org>, 2020 Chuck Tuffli, 2023-2024 Chelsio Communications, Inc., 2019-2021 Netflix, Inc, 2019 Netflix, Inc, 2017 Netflix, Inc., 2024 Netflix, Inc, 2013 EMC Corp., 2016-2023 Warner Losh <imp@FreeBSD.org>, 2019 Alexander Motin <mav@FreeBSD.org>, 2016 Netflix, Inc., 2018 Netflix, Inc.
+Requires: csu, libc, libcompiler_rt, libnvmf, libutil
diff --git a/share/sbom/pkgconfig/objcopy.pc b/share/sbom/pkgconfig/objcopy.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/objcopy.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: objcopy
+Description: Object copying and editing tool
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0 WITH LLVM-exception
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
diff --git a/share/sbom/pkgconfig/objdump.pc b/share/sbom/pkgconfig/objdump.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/objdump.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: objdump
+Description: LLVM's object file dumper
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libexecinfo, libthr, libz, libzstd, msun, libtinfo
diff --git a/share/sbom/pkgconfig/od.pc b/share/sbom/pkgconfig/od.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/od.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: od
+Description: Octal, decimal, hex, ASCII dump
+URL: https://man.freebsd.org/cgi/man.cgi?query=od(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/hexdump
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993 The Regents of the University of California, 1990, 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/openssl.pc b/share/sbom/pkgconfig/openssl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/openssl.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: openssl
+Description: OpenSSL cryptography library
+URL: https://openssl-library.org
+Version: 3.5.4
+Source: https://github.com/openssl/openssl/tree/openssl-3.5.4
+License: Apache-2.0
diff --git a/share/sbom/pkgconfig/pagesize.pc b/share/sbom/pkgconfig/pagesize.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/pagesize.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: pagesize
+Description: Print system page size
+URL: https://man.freebsd.org/cgi/man.cgi?query=pagesize(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/pagesize
+License: BSD-3-Clause
diff --git a/share/sbom/pkgconfig/pargs.pc b/share/sbom/pkgconfig/pargs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/pargs.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: pargs
+Description: Get detailed process information
+URL: https://man.freebsd.org/cgi/man.cgi?query=procstat(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/procstat
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2022 The FreeBSD Foundation, 2020 Juraj Lutter <juraj@lutter.sk>, 2007 Robert N. M. Watson, 2015 Allan Jude <allanjude@freebsd.org>, 2007-2011 Robert N. M. Watson, 2007, 2011 Robert N. M. Watson, 2017 Dell EMC, 2010 Konstantin Belousov, 2024 The FreeBSD Foundation, 2011 Mikolaj Golub, 2025 The FreeBSD Foundation, 2012 Hudson River Trading LLC, 2007-2008 Robert N. M. Watson
+Requires: csu, libc, libcompiler_rt, libprocstat, libsbuf, libutil, libxo
diff --git a/share/sbom/pkgconfig/passwd.pc b/share/sbom/pkgconfig/passwd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/passwd.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: passwd
+Description: Modify a user's password
+URL: https://man.freebsd.org/cgi/man.cgi?query=passwd(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/passwd
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.5bebe47e.txt
+Copyright: 2002 Networks Associates Technologies, Inc.
+Requires: csu, libc, libcompiler_rt, libpam
diff --git a/share/sbom/pkgconfig/paste.pc b/share/sbom/pkgconfig/paste.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/paste.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: paste
+Description: Merge corresponding or subsequent lines of files
+URL: https://man.freebsd.org/cgi/man.cgi?query=paste(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/paste
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/patch.pc b/share/sbom/pkgconfig/patch.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/patch.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: patch
+Description: Apply a diff file to an original
+URL: https://man.freebsd.org/cgi/man.cgi?query=patch(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/patch
+License: BSD-3-Clause AND BSD-2-Clause
diff --git a/share/sbom/pkgconfig/pathchk.pc b/share/sbom/pkgconfig/pathchk.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/pathchk.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: pathchk
+Description: Check pathnames
+URL: https://man.freebsd.org/cgi/man.cgi?query=pathchk(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/pathchk
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2002 Tim J. Robbins
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/pax.pc b/share/sbom/pkgconfig/pax.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/pax.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: pax
+Description: Read and write file archives and copy directory hierarchies
+URL: https://man.freebsd.org/cgi/man.cgi?query=pax(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/pax
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.700bbbea.txt
+Copyright: 1992 Keith Muller, 1992, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/penv.pc b/share/sbom/pkgconfig/penv.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/penv.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: penv
+Description: Get detailed process information
+URL: https://man.freebsd.org/cgi/man.cgi?query=procstat(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/procstat
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2022 The FreeBSD Foundation, 2020 Juraj Lutter <juraj@lutter.sk>, 2007 Robert N. M. Watson, 2015 Allan Jude <allanjude@freebsd.org>, 2007-2011 Robert N. M. Watson, 2007, 2011 Robert N. M. Watson, 2017 Dell EMC, 2010 Konstantin Belousov, 2024 The FreeBSD Foundation, 2011 Mikolaj Golub, 2025 The FreeBSD Foundation, 2012 Hudson River Trading LLC, 2007-2008 Robert N. M. Watson
+Requires: csu, libc, libcompiler_rt, libprocstat, libsbuf, libutil, libxo
diff --git a/share/sbom/pkgconfig/perror.pc b/share/sbom/pkgconfig/perror.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/perror.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: perror
+Description: Print an error number as a string
+URL: https://man.freebsd.org/cgi/man.cgi?query=perror(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/perror
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2009 Hudson River Trading LLC
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/pfctl.pc b/share/sbom/pkgconfig/pfctl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/pfctl.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: pfctl
+Description: Control the packet filter (PF) device
+URL: https://man.freebsd.org/cgi/man.cgi?query=pfctl(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/pfctl
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.8da18da8.txt, ${pcfiledir}/LICENSES/ISC.15824d08.txt, ${pcfiledir}/LICENSES/ISC.11e6b90c.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt
+Copyright: 2002 Cedric Berger, 2001 Daniel Hartmeier, 2002,2003 Henning Brauer, 2002 Sony Computer Science Laboratories Inc., 2002, 2003 Henning Brauer <henning@openbsd.org>, 2004 Mike Frantzen <frantzen@openbsd.org>, 2003 Mike Frantzen <frantzen@openbsd.org>, (c) Copyright 2000-2003 by Michal Zalewski <lcamtuf@coredump.cx>, (c) Copyright 2003 by Mike Frantzen <frantzen@w4g.org>, Henning Brauer <henning@openbsd.org>, 2001 Markus Friedl, 2001 Theo de Raadt
+Requires: csu, libc, libcompiler_rt, libmd, libnv, libpfctl, msun
diff --git a/share/sbom/pkgconfig/pfilctl.pc b/share/sbom/pkgconfig/pfilctl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/pfilctl.pc
@@ -0,0 +1,13 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: pfilctl
+Description: Pfil(9) control utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=pfilctl(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/pfilctl
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2019 Gleb Smirnoff <glebius@FreeBSD.org>
diff --git a/share/sbom/pkgconfig/pflogd.pc b/share/sbom/pkgconfig/pflogd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/pflogd.pc
@@ -0,0 +1,13 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: pflogd
+Description: Pf logging daemon
+URL: https://openbsd.org
+Version: ${FREEBSD_VERSION}
+Source: https://github.com/openbsd/src/tree/master/sbin/pflogd
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/ISC.11e6b90c.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.8da18da8.txt, ${pcfiledir}/LICENSES/ISC.15824d08.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt
+Copyright: (c) Copyright 2000-2003 by Michal Zalewski <lcamtuf@coredump.cx>, (c) Copyright 2003 by Mike Frantzen <frantzen@w4g.org>, 2001 Daniel Hartmeier, 2002,2003 Henning Brauer, 2004 Mike Frantzen <frantzen@openbsd.org>, 2001 Markus Friedl, 2001 Theo de Raadt, Henning Brauer <henning@openbsd.org>, 2002 Cedric Berger, 2002 Sony Computer Science Laboratories Inc., 2002, 2003 Henning Brauer <henning@openbsd.org>, 2003 Mike Frantzen <frantzen@openbsd.org>
diff --git a/share/sbom/pkgconfig/pflowctl.pc b/share/sbom/pkgconfig/pflowctl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/pflowctl.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: pflowctl
+Description: Control pflow data export
+URL: https://man.freebsd.org/cgi/man.cgi?query=pflowctl(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/pflowctl
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.8da18da8.txt
+Copyright: 2023 Rubicon Communications, LLC
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/pftp.pc b/share/sbom/pkgconfig/pftp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/pftp.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: pftp
+Description: Enhanced FTP client for Unix-like operating systems
+URL: https://ftp.netbsd.org/pub/NetBSD/misc/tnftp/
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/contrib/tnftp/
+License: BSD-3-Clause AND BSD-2-Clause
+Requires: csu, libc, libcompiler_rt, libedit
diff --git a/share/sbom/pkgconfig/pgrep.pc b/share/sbom/pkgconfig/pgrep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/pgrep.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: pgrep
+Description: Find or signal processes by name
+URL: https://man.freebsd.org/cgi/man.cgi?query=pgrep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/pkill
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt
+Copyright: 2002 The NetBSD Foundation, Inc., 2005 Pawel Jakub Dawidek <pjd@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libjail, libkvm
diff --git a/share/sbom/pkgconfig/ping.pc b/share/sbom/pkgconfig/ping.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ping.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: ping
+Description: Send ICMP or ICMPv6 ECHO_REQUEST packets to network hosts
+URL: https://man.freebsd.org/cgi/man.cgi?query=ping(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/ping
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.328b29b3.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.5a739641.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1989, 1993 The Regents of the University of California, 1995, 1996, 1997, and 1998 WIDE Project, 2019 Jan Sucan <jansucan@FreeBSD.org>
+Requires: csu, libc, libcapsicum, libcompiler_rt, libipsec, libmd, msun
diff --git a/share/sbom/pkgconfig/ping6.pc b/share/sbom/pkgconfig/ping6.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ping6.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: ping6
+Description: Send ICMP or ICMPv6 ECHO_REQUEST packets to network hosts
+URL: https://man.freebsd.org/cgi/man.cgi?query=ping(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/ping
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.328b29b3.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.5a739641.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1989, 1993 The Regents of the University of California, 1995, 1996, 1997, and 1998 WIDE Project, 2019 Jan Sucan <jansucan@FreeBSD.org>
+Requires: csu, libc, libcapsicum, libcompiler_rt, libipsec, libmd, msun
diff --git a/share/sbom/pkgconfig/pkill.pc b/share/sbom/pkgconfig/pkill.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/pkill.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: pkill
+Description: Find or signal processes by name
+URL: https://man.freebsd.org/cgi/man.cgi?query=pkill(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/pkill
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt
+Copyright: 2002 The NetBSD Foundation, Inc., 2005 Pawel Jakub Dawidek <pjd@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libjail, libkvm
diff --git a/share/sbom/pkgconfig/pmcstudy.pc b/share/sbom/pkgconfig/pmcstudy.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/pmcstudy.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: pmcstudy
+Description: Perform various studies on a system's overall PMCs
+URL: https://man.freebsd.org/cgi/man.cgi?query=pmcstudy(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/pmcstudy
+License: LicenseRef-scancode-bsd-unchanged
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-bsd-unchanged.5d0f81df.txt
+Copyright: 2014-2015 Netflix, Inc., 2015 Netflix, Inc.
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/pom.pc b/share/sbom/pkgconfig/pom.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/pom.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: pom
+Description: Display the phase of the moon
+URL: https://man.freebsd.org/cgi/man.cgi?query=pom(6)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/pom
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt, msun
diff --git a/share/sbom/pkgconfig/posixmqcontrol.pc b/share/sbom/pkgconfig/posixmqcontrol.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/posixmqcontrol.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: posixmqcontrol
+Description: Control POSIX mqueuefs message queues
+URL: https://man.freebsd.org/cgi/man.cgi?query=posixmqcontrol(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/posixmqcontrol
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2024 Rick Parrish <unitrunker@unitrunker.net>
diff --git a/share/sbom/pkgconfig/posixshmcontrol.pc b/share/sbom/pkgconfig/posixshmcontrol.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/posixshmcontrol.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: posixshmcontrol
+Description: Control POSIX shared memory segments
+URL: https://man.freebsd.org/cgi/man.cgi?query=posixshmcontrol(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/posixshmcontrol
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2019 The FreeBSD Foundation
diff --git a/share/sbom/pkgconfig/poweroff.pc b/share/sbom/pkgconfig/poweroff.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/poweroff.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: poweroff
+Description: Close down the system at a given time
+URL: https://man.freebsd.org/cgi/man.cgi?query=poweroff(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/shutdown
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1990, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/pr.pc b/share/sbom/pkgconfig/pr.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/pr.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: pr
+Description: Print files
+URL: https://man.freebsd.org/cgi/man.cgi?query=pr(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/pr
+License: BSD-4-Clause AND BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause-UC.06c1e96a.txt
+Copyright: 1991 Keith Muller, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/primes.pc b/share/sbom/pkgconfig/primes.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/primes.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: primes
+Description: Factor a number, generate primes
+URL: https://man.freebsd.org/cgi/man.cgi?query=primes(6)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/factor
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libthr
diff --git a/share/sbom/pkgconfig/printenv.pc b/share/sbom/pkgconfig/printenv.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/printenv.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: printenv
+Description: Print out the environment
+URL: https://man.freebsd.org/cgi/man.cgi?query=printenv(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/printenv
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1987, 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/printf.pc b/share/sbom/pkgconfig/printf.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/printf.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: printf
+Description: Formatted output
+URL: https://man.freebsd.org/cgi/man.cgi?query=printf(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/printf
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: Copyright 2018 Staysail Systems, Inc. <info@staysail.tech>, Copyright 2014 Garrett D'Amore <garrett@damore.org>, Copyright 2010 Nexenta Systems, Inc., 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/proccontrol.pc b/share/sbom/pkgconfig/proccontrol.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/proccontrol.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: proccontrol
+Description: Control some process execution aspects
+URL: https://man.freebsd.org/cgi/man.cgi?query=proccontrol(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/proccontrol
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2016 The FreeBSD Foundation
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/procstat.pc b/share/sbom/pkgconfig/procstat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/procstat.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: procstat
+Description: Get detailed process information
+URL: https://man.freebsd.org/cgi/man.cgi?query=procstat(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/procstat
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2022 The FreeBSD Foundation, 2020 Juraj Lutter <juraj@lutter.sk>, 2007 Robert N. M. Watson, 2015 Allan Jude <allanjude@freebsd.org>, 2007-2011 Robert N. M. Watson, 2007, 2011 Robert N. M. Watson, 2017 Dell EMC, 2010 Konstantin Belousov, 2024 The FreeBSD Foundation, 2011 Mikolaj Golub, 2025 The FreeBSD Foundation, 2012 Hudson River Trading LLC, 2007-2008 Robert N. M. Watson
+Requires: csu, libc, libcompiler_rt, libprocstat, libsbuf, libutil, libxo
diff --git a/share/sbom/pkgconfig/protect.pc b/share/sbom/pkgconfig/protect.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/protect.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: protect
+Description: Protect processes from being killed when swap space is exhausted
+URL: https://man.freebsd.org/cgi/man.cgi?query=protect(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/protect
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2013 Hudson River Trading LLC
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ps.pc b/share/sbom/pkgconfig/ps.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ps.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: ps
+Description: Process status
+URL: https://man.freebsd.org/cgi/man.cgi?query=ps(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/ps
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1990, 1993, 1994 The Regents of the University of California, 1992, 1993, 1994 The Regents of the University of California, 1990, 1993 The Regents of the University of California, 2025 The FreeBSD Foundation, 1991, 1993, 1994 The Regents of the University of California, 2004 - Garance Alistair Drosehn <gad@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libjail, libkvm, libxo, msun
diff --git a/share/sbom/pkgconfig/pwait.pc b/share/sbom/pkgconfig/pwait.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/pwait.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: pwait
+Description: Wait for processes to terminate
+URL: https://man.freebsd.org/cgi/man.cgi?query=pwait(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/pwait
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.444deefa.txt
+Copyright: 2004-2009, Jilles Tjoelker
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/pwd.pc b/share/sbom/pkgconfig/pwd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/pwd.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: pwd
+Description: Return working directory name
+URL: https://man.freebsd.org/cgi/man.cgi?query=pwd(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/pwd
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993, 1994 The Regents of the University of California, 2026 Dag-Erling Smorgrav
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/pwdx.pc b/share/sbom/pkgconfig/pwdx.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/pwdx.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: pwdx
+Description: Get detailed process information
+URL: https://man.freebsd.org/cgi/man.cgi?query=procstat(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/procstat
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2022 The FreeBSD Foundation, 2020 Juraj Lutter <juraj@lutter.sk>, 2007 Robert N. M. Watson, 2015 Allan Jude <allanjude@freebsd.org>, 2007-2011 Robert N. M. Watson, 2007, 2011 Robert N. M. Watson, 2017 Dell EMC, 2010 Konstantin Belousov, 2024 The FreeBSD Foundation, 2011 Mikolaj Golub, 2025 The FreeBSD Foundation, 2012 Hudson River Trading LLC, 2007-2008 Robert N. M. Watson
+Requires: csu, libc, libcompiler_rt, libprocstat, libsbuf, libutil, libxo
diff --git a/share/sbom/pkgconfig/quota.pc b/share/sbom/pkgconfig/quota.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/quota.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: quota
+Description: Display disk usage and limits
+URL: https://man.freebsd.org/cgi/man.cgi?query=quota(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/quota
+License: BSD-4-Clause AND BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1990, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, librpcsvc, libutil
diff --git a/share/sbom/pkgconfig/quotacheck.pc b/share/sbom/pkgconfig/quotacheck.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/quotacheck.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: quotacheck
+Description: File system quota consistency checker
+URL: https://man.freebsd.org/cgi/man.cgi?query=quotacheck(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/quotacheck
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1990, 1993 The Regents of the University of California, 1980, 1990, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libufs, libutil
diff --git a/share/sbom/pkgconfig/random.pc b/share/sbom/pkgconfig/random.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/random.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: random
+Description: Random lines from a file or random numbers
+URL: https://man.freebsd.org/cgi/man.cgi?query=random(6)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/random
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.23f144a4.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 2003 Sean Chittenden <seanc@FreeBSD.org>, 1994 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ranlib.pc b/share/sbom/pkgconfig/ranlib.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ranlib.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ranlib
+Description: Generates an archive index
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
+Requires: csu, libllvm, libc, libc++, libcompiler_rt, libcxxrt, libthr, libz, msun, libncursesw
diff --git a/share/sbom/pkgconfig/rcorder.pc b/share/sbom/pkgconfig/rcorder.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rcorder.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: rcorder
+Description: Print a dependency ordering of interdependent files
+URL: https://man.freebsd.org/cgi/man.cgi?query=rcorder(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/rcorder
+License: BSD-4-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause-UC.06c1e96a.txt, ${pcfiledir}/LICENSES/BSD-4-Clause.65fa7be0.txt
+Copyright: 1988, 1989, 1990, 1993 The Regents of the University of California, 1989 by Berkeley Softworks, 1998, 1999 Matthew R. Green, 1998 Perry E. Metzger, 2020 Boris N. Lytochkin, 1988, 1989, 1990 The Regents of the University of California, 1988, 1989 by Adam de Boor
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/rctl.pc b/share/sbom/pkgconfig/rctl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rctl.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: rctl
+Description: Display and update resource limits database
+URL: https://man.freebsd.org/cgi/man.cgi?query=rctl(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/rctl
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2010 The FreeBSD Foundation
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/rdump.pc b/share/sbom/pkgconfig/rdump.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rdump.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: rdump
+Description: File system backup
+URL: https://man.freebsd.org/cgi/man.cgi?query=rdump(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/dump
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993 The Regents of the University of California, 1980, 1988, 1993 The Regents of the University of California, 1980, 1988, 1991, 1993 The Regents of the University of California, 1980, 1993 The Regents of the University of California, 1980, 1991, 1993, 1994 The Regents of the University of California, 1980, 1991, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libufs
diff --git a/share/sbom/pkgconfig/read.pc b/share/sbom/pkgconfig/read.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/read.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: read
+Description: Read chars from STDIN
+URL: https://man.freebsd.org/cgi/man.cgi?query=sh(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/sh
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California, 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>, 2010-2015 Jilles Tjoelker <jilles@stack.nl>, 1993 The Regents of the University of California, Copyright 1989 by Kenneth Almquist, 1995 The Regents of the University of California, 2002 Herbert Xu, 2007 Herbert Xu <herbert@gondor.apana.org.au>
+Requires: csu, libc, libcompiler_rt, libedit
diff --git a/share/sbom/pkgconfig/readelf.pc b/share/sbom/pkgconfig/readelf.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/readelf.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: readelf
+Description: GNU-style LLVM Object Reader
+URL: https://llvm.org
+Version: 19.x-llvmorg-19.1.4-0-gaadaa00de76e
+Source: https://cgit.freebsd.org/src/tree/contrib/llvm-project/clang
+License: Apache-2.0 WITH LLVM-exception
+License.file: ${pcfiledir}/LICENSES/Apache-2.0_WITH_LLVM-exception.7f1007e4.txt
diff --git a/share/sbom/pkgconfig/readlink.pc b/share/sbom/pkgconfig/readlink.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/readlink.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: readlink
+Description: Display file status
+URL: https://man.freebsd.org/cgi/man.cgi?query=readlink(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/stat
+License: BSD-4-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt
+Copyright: 2002 The NetBSD Foundation, Inc., 2025 Klara, Inc.
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/realpath.pc b/share/sbom/pkgconfig/realpath.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/realpath.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: realpath
+Description: Return resolved physical path
+URL: https://man.freebsd.org/cgi/man.cgi?query=realpath(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/realpath
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/reboot.pc b/share/sbom/pkgconfig/reboot.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/reboot.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: reboot
+Description: Stopping and restarting the system
+URL: https://man.freebsd.org/cgi/man.cgi?query=reboot(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/reboot
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1986, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/recoverdisk.pc b/share/sbom/pkgconfig/recoverdisk.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/recoverdisk.pc
@@ -0,0 +1,13 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: recoverdisk
+Description: Recover data from disk-like devices.
+URL: https://man.freebsd.org/cgi/man.cgi?query=recoverdisk(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/recoverdisk
+License: Beerware
+License.file: ${pcfiledir}/LICENSES/Beerware.f43d6716.txt
+Requires: csu, libc, libcompiler_rt, msun
diff --git a/share/sbom/pkgconfig/red.pc b/share/sbom/pkgconfig/red.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/red.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: red
+Description: Text editor
+URL: https://man.freebsd.org/cgi/man.cgi?query=red(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/ed
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.da76510e.txt
+Copyright: 1993 Andrew Moore, Talke Studio, 1993 Andrew Moore
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ree.pc b/share/sbom/pkgconfig/ree.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ree.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ree
+Description: Easy Editor
+Version: 1.5.0
+License: BSD-2-Clause
+Requires: libncurses
diff --git a/share/sbom/pkgconfig/renice.pc b/share/sbom/pkgconfig/renice.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/renice.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: renice
+Description: Alter priority of running processes
+URL: https://man.freebsd.org/cgi/man.cgi?query=renice(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/renice
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1983, 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/reset.pc b/share/sbom/pkgconfig/reset.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/reset.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: reset
+Description: clone of System V curses form library
+URL: https://invisible-island.net/ncurses
+Version: 6.5
+Source: https://invisible-island.net/archives/ncurses/ncurses-6.5.tar.gz
+License: X11
+Requires: csu, libc, libcompiler_rt, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/resizewin.pc b/share/sbom/pkgconfig/resizewin.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/resizewin.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: resizewin
+Description: Update terminal size
+URL: https://man.freebsd.org/cgi/man.cgi?query=resizewin(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/resizewin
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: Copyright 2015 EMC / Isilon Storage Division
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/resolvconf.pc b/share/sbom/pkgconfig/resolvconf.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/resolvconf.pc
@@ -0,0 +1,12 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: resolvconf
+Description: /etc/resolv.conf is a file that holds the configuration for the local resolution of domain names
+URL: https://roy.marples.name/projects/openresolv
+Version: 3.9.2
+Source: https://github.com/NetworkConfiguration/openresolv/tree/v3.9.2
+License: BSD-2-Clause
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/restore.pc b/share/sbom/pkgconfig/restore.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/restore.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: restore
+Description: Restore files or file systems from backups made with dump
+URL: https://man.freebsd.org/cgi/man.cgi?query=restore(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/restore
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-unknown-license-reference.39686fea.txt
+Copyright: 1983, 1993 The Regents of the University of California, 1992, 1993 The Regents of the University of California, (c) UNIX System Laboratories, Inc., 1985, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/rev.pc b/share/sbom/pkgconfig/rev.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rev.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: rev
+Description: Reverse lines of a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=rev(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/rev
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1987, 1992, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/revoke.pc b/share/sbom/pkgconfig/revoke.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/revoke.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: revoke
+Description: Revoke a character device
+URL: https://man.freebsd.org/cgi/man.cgi?query=revoke(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/revoke
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2009 Ed Schouten <ed@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/rfcomm_sppd.pc b/share/sbom/pkgconfig/rfcomm_sppd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rfcomm_sppd.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: rfcomm_sppd
+Description: RFCOMM Serial Port Profile daemon
+URL: https://man.freebsd.org/cgi/man.cgi?query=rfcomm_sppd(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/bluetooth/rfcomm_sppd
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2003 Maksim Yevmenkin <m_evmenkin@yahoo.com>
+Requires: csu, libbluetooth, libc, libcompiler_rt, libsdp, libutil
diff --git a/share/sbom/pkgconfig/rgrep.pc b/share/sbom/pkgconfig/rgrep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rgrep.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: rgrep
+Description: File pattern searcher
+URL: https://man.freebsd.org/cgi/man.cgi?query=rgrep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/grep
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999 James Howard and Dag-Erling Smorgrav, 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org>, 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>, 2017 Kyle Evans <kevans@FreeBSD.org>, 2010 Dimitry Andric <dimitry@andric.com>, 2020 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, libbz2, libc, libcompiler_rt, libregex, libz
diff --git a/share/sbom/pkgconfig/rm.pc b/share/sbom/pkgconfig/rm.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rm.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: rm
+Description: Remove directory entries
+URL: https://man.freebsd.org/cgi/man.cgi?query=rm(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/rm
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1990, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/rmail.pc b/share/sbom/pkgconfig/rmail.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rmail.pc
@@ -0,0 +1,12 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: rmail
+Description: Postfix to Sendmail compatibility interface
+URL: https://ftp.sendmail.org
+Version: 8.18.1
+Source: https://ftp.sendmail.org/sendmail.8.18.1.tar.gz
+License: Sendmail
+Requires: openssl
diff --git a/share/sbom/pkgconfig/rmd160.pc b/share/sbom/pkgconfig/rmd160.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rmd160.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: rmd160
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=rmd160(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/rmd160sum.pc b/share/sbom/pkgconfig/rmd160sum.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rmd160sum.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: rmd160sum
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=rmd160sum(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/rmdir.pc b/share/sbom/pkgconfig/rmdir.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rmdir.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: rmdir
+Description: Remove directories
+URL: https://man.freebsd.org/cgi/man.cgi?query=rmdir(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/rmdir
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1992, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/rot13.pc b/share/sbom/pkgconfig/rot13.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rot13.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: rot13
+Description: Decrypt caesar ciphers
+URL: https://man.freebsd.org/cgi/man.cgi?query=rot13(6)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/caesar
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, msun
diff --git a/share/sbom/pkgconfig/route.pc b/share/sbom/pkgconfig/route.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/route.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: route
+Description: Manually manipulate the routing tables
+URL: https://man.freebsd.org/cgi/man.cgi?query=route(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/route
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1983, 1989, 1991, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libjail
diff --git a/share/sbom/pkgconfig/routed.pc b/share/sbom/pkgconfig/routed.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/routed.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: routed
+Description: Network RIP and router discovery routing daemon
+URL: https://man.freebsd.org/cgi/man.cgi?query=routed(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/routed
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1983, 1988, 1993 The Regents of the University of California, 1989, 1993 The Regents of the University of California, 1983, 1993 The Regents of the University of California, 1988, 1989, 1993 The Regents of the University of California, 1995 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/rpcgen.pc b/share/sbom/pkgconfig/rpcgen.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rpcgen.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: rpcgen
+Description: An RPC protocol compiler
+URL: https://man.freebsd.org/cgi/man.cgi?query=rpcgen(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/rpcgen
+License: LicenseRef-scancode-sun-rpc
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-sun-rpc.edac947f.txt
+Copyright: 1987, Sun Microsystems, Inc., 1989, Sun Microsystems, Inc., 1984, 1986, 1987, 1988, 1989 AT&T, (c) 1986,1987,1988.1989 Sun Microsystems, Inc, (c) 1983,1984,1985,1986,1987,1988,1989 AT&T., 1987, Sun Microsytsems, Inc., 1987 Sun Microsystems, Inc.
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/rpcinfo.pc b/share/sbom/pkgconfig/rpcinfo.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rpcinfo.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: rpcinfo
+Description: Report RPC information
+URL: https://man.freebsd.org/cgi/man.cgi?query=rpcinfo(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/rpcinfo
+License: LicenseRef-scancode-sun-rpc
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-sun-rpc.edac947f.txt
+Copyright: 1986 - 1991 by Sun Microsystems, Inc.
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/rping.pc b/share/sbom/pkgconfig/rping.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rping.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: rping
+Description: RDMA CM datagram setup and simple ping-pong test
+URL: https://www.openfabrics.org/ofed-for-linux/
+Version: 1.5.3
+Source: https://downloads.openfabrics.org/OFED/archive/ofed-1.5.3/OFED-1.5.3.tgz
+License: GPL-2.0 OR BSD-2-Clause
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/rrestore.pc b/share/sbom/pkgconfig/rrestore.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rrestore.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: rrestore
+Description: Restore files or file systems from backups made with dump
+URL: https://man.freebsd.org/cgi/man.cgi?query=rrestore(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/restore
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-unknown-license-reference.39686fea.txt
+Copyright: 1983, 1993 The Regents of the University of California, 1992, 1993 The Regents of the University of California, (c) UNIX System Laboratories, Inc., 1985, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/rs.pc b/share/sbom/pkgconfig/rs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rs.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: rs
+Description: Reshape a data array
+URL: https://man.freebsd.org/cgi/man.cgi?query=rs(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/rs
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1993 The Regents of the University of California
+Requires: csu, libc, libc++, libcompiler_rt, libcxxrt, msun
diff --git a/share/sbom/pkgconfig/rtquery.pc b/share/sbom/pkgconfig/rtquery.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rtquery.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: rtquery
+Description: Query routing daemons for their routing tables
+URL: https://man.freebsd.org/cgi/man.cgi?query=rtquery(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/routed/rtquery
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1982, 1986, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/rtsol.pc b/share/sbom/pkgconfig/rtsol.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rtsol.pc
@@ -0,0 +1,12 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: rtsol
+Description: Router solicitation daemon
+URL: https://man.freebsd.org/cgi/man.cgi?query=rtsol(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/rtsol
+License: BSD-3-Clause AND BSD-2-Clause
+Requires: csu, libc, libcapsicum, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/runat.pc b/share/sbom/pkgconfig/runat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/runat.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: runat
+Description: Run a shell command on a named attribute directory
+URL: https://man.freebsd.org/cgi/man.cgi?query=runat(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/runat
+License: BSD-2-Clause
+Copyright: 2025 Rick Macklem
diff --git a/share/sbom/pkgconfig/rup.pc b/share/sbom/pkgconfig/rup.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rup.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: rup
+Description: Remote status display
+URL: https://man.freebsd.org/cgi/man.cgi?query=rup(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/rup
+License: BSD-4-Clause-UC
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause-UC.06c1e96a.txt
+Copyright: 1993, John Brezak
+Requires: csu, libc, libcompiler_rt, librpcsvc
diff --git a/share/sbom/pkgconfig/ruptime.pc b/share/sbom/pkgconfig/ruptime.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ruptime.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ruptime
+Description: Show host status of local machines
+URL: https://man.freebsd.org/cgi/man.cgi?query=ruptime(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/ruptime
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1983, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/rusers.pc b/share/sbom/pkgconfig/rusers.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rusers.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: rusers
+Description: Who is logged in to machines on local network
+URL: https://man.freebsd.org/cgi/man.cgi?query=rusers(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/rusers
+License: BSD-4-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause-UC.06c1e96a.txt
+Copyright: 1993, John Brezak
+Requires: csu, libc, libcompiler_rt, librpcsvc
diff --git a/share/sbom/pkgconfig/rwall.pc b/share/sbom/pkgconfig/rwall.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rwall.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: rwall
+Description: Send a message to users logged on a host
+URL: https://man.freebsd.org/cgi/man.cgi?query=rwall(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/rwall
+License: BSD-4-Clause-UC
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause-UC.06c1e96a.txt
+Copyright: 1993 Christopher G. Demetriou, 1988, 1990 Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/rwho.pc b/share/sbom/pkgconfig/rwho.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/rwho.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: rwho
+Description: Who is logged in on local machines
+URL: https://man.freebsd.org/cgi/man.cgi?query=rwho(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/rwho
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1983, 1993 The Regents of the University of California, 2013 Mariusz Zaborski <oshogbo@FreeBSD.org>
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/savecore.pc b/share/sbom/pkgconfig/savecore.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/savecore.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: savecore
+Description: Save a core dump of the operating system
+URL: https://man.freebsd.org/cgi/man.cgi?query=savecore(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/savecore
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.9136516b.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 2002 Poul-Henning Kamp, 2002 Networks Associates Technology, Inc., 1986, 1992, 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcompiler_rt, libxo, zlib, zstd
diff --git a/share/sbom/pkgconfig/sclient.pc b/share/sbom/pkgconfig/sclient.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sclient.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: sclient
+Description: MIT implementation of Kerberos stack
+URL: https://web.mit.edu/kerberos/krb5-latest/doc/
+Version: 1.2.2
+Source: https://github.com/krb5/krb5/tree/krb5-1.22-final
+License: MIT
diff --git a/share/sbom/pkgconfig/scp.pc b/share/sbom/pkgconfig/scp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/scp.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: scp
+Description: Connectivity tool for remote login with the SSH protocol
+URL: https://openssh.com
+Version: 10.0p2
+Source: https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/openssh-10.0.tar.gz
+License: SSH-OpenSSH
diff --git a/share/sbom/pkgconfig/script.pc b/share/sbom/pkgconfig/script.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/script.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: script
+Description: Make typescript of terminal session
+URL: https://man.freebsd.org/cgi/man.cgi?query=script(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/script
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 2010, 2012 David E. O'Brien, 1980, 1992, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/sdiff.pc b/share/sbom/pkgconfig/sdiff.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sdiff.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: sdiff
+Description: Side-by-side diff
+URL: https://man.freebsd.org/cgi/man.cgi?query=sdiff(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/sdiff
+License: LicenseRef-scancode-public-domain
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/sed.pc b/share/sbom/pkgconfig/sed.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sed.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: sed
+Description: Stream editor
+URL: https://man.freebsd.org/cgi/man.cgi?query=sed(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/sed
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 2013 Johann Myrkraverk Oskarsson, 1992 Diomidis Spinellis, 1992, 1993 The Regents of the University of California, 1992, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/seq.pc b/share/sbom/pkgconfig/seq.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/seq.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: seq
+Description: Print sequences of numbers
+URL: https://man.freebsd.org/cgi/man.cgi?query=seq(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/seq
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt
+Copyright: 2005 The NetBSD Foundation, Inc.
+Requires: csu, libc, libcompiler_rt, msun
diff --git a/share/sbom/pkgconfig/setfacl.pc b/share/sbom/pkgconfig/setfacl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/setfacl.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: setfacl
+Description: Set ACL information
+URL: https://man.freebsd.org/cgi/man.cgi?query=setfacl(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/setfacl
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2001-2002 Chris D. Faulhaber, 2001 Chris D. Faulhaber
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/setfsmac.pc b/share/sbom/pkgconfig/setfsmac.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/setfsmac.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: setfsmac
+Description: Set MAC label for a file hierarchy
+URL: https://man.freebsd.org/cgi/man.cgi?query=setfsmac(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/setfmac
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2002, 2004 Networks Associates Technology, Inc.
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/setkey.pc b/share/sbom/pkgconfig/setkey.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/setkey.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: setkey
+Description: Manually manipulate the IPsec SA/SP database
+URL: https://man.freebsd.org/cgi/man.cgi?query=setkey(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/setkey
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.328b29b3.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.2b28f309.txt
+Copyright: 1995, 1996, 1997, 1998, and 1999 WIDE Project
+Requires: csu, libc, libcompiler_rt, libipsec
diff --git a/share/sbom/pkgconfig/setpmac.pc b/share/sbom/pkgconfig/setpmac.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/setpmac.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: setpmac
+Description: Run a command with a different MAC process label
+URL: https://man.freebsd.org/cgi/man.cgi?query=setpmac(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/setpmac
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.9136516b.txt
+Copyright: 2002 Networks Associates Technology, Inc.
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/sftp.pc b/share/sbom/pkgconfig/sftp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sftp.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: sftp
+Description: Connectivity tool for remote login with the SSH protocol
+URL: https://openssh.com
+Version: 10.0p2
+Source: https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/openssh-10.0.tar.gz
+License: SSH-OpenSSH
diff --git a/share/sbom/pkgconfig/sh.pc b/share/sbom/pkgconfig/sh.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sh.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: sh
+Description: Command interpreter (shell)
+URL: https://man.freebsd.org/cgi/man.cgi?query=sh(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/sh
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1993 The Regents of the University of California, 1991, 1993 The Regents of the University of California, 1995 The Regents of the University of California, 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>, 2010-2015 Jilles Tjoelker <jilles@stack.nl>, 2007 Herbert Xu <herbert@gondor.apana.org.au>, Copyright 1989 by Kenneth Almquist, 2002 Herbert Xu
+Requires: csu, libc, libcompiler_rt, libedit
diff --git a/share/sbom/pkgconfig/sha1.pc b/share/sbom/pkgconfig/sha1.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sha1.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: sha1
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=sha1(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/sha1sum.pc b/share/sbom/pkgconfig/sha1sum.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sha1sum.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: sha1sum
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=sha1sum(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/sha224.pc b/share/sbom/pkgconfig/sha224.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sha224.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: sha224
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=sha224(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/sha224sum.pc b/share/sbom/pkgconfig/sha224sum.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sha224sum.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: sha224sum
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=sha224sum(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/sha256.pc b/share/sbom/pkgconfig/sha256.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sha256.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: sha256
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=sha256(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/sha256sum.pc b/share/sbom/pkgconfig/sha256sum.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sha256sum.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: sha256sum
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=sha256sum(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/sha384.pc b/share/sbom/pkgconfig/sha384.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sha384.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: sha384
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=sha384(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/sha384sum.pc b/share/sbom/pkgconfig/sha384sum.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sha384sum.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: sha384sum
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=sha384sum(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/sha512.pc b/share/sbom/pkgconfig/sha512.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sha512.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: sha512
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=sha512(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/sha512sum.pc b/share/sbom/pkgconfig/sha512sum.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sha512sum.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: sha512sum
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=sha512sum(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/sha512t224.pc b/share/sbom/pkgconfig/sha512t224.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sha512t224.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: sha512t224
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=sha512t224(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/sha512t224sum.pc b/share/sbom/pkgconfig/sha512t224sum.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sha512t224sum.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: sha512t224sum
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=sha512t224sum(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/sha512t256.pc b/share/sbom/pkgconfig/sha512t256.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sha512t256.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: sha512t256
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=sha512t256(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/sha512t256sum.pc b/share/sbom/pkgconfig/sha512t256sum.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sha512t256sum.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: sha512t256sum
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=sha512t256sum(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/showmount.pc b/share/sbom/pkgconfig/showmount.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/showmount.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: showmount
+Description: Show remote nfs mounts on host
+URL: https://man.freebsd.org/cgi/man.cgi?query=showmount(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/showmount
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993, 1995 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/shutdown.pc b/share/sbom/pkgconfig/shutdown.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/shutdown.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: shutdown
+Description: Close down the system at a given time
+URL: https://man.freebsd.org/cgi/man.cgi?query=shutdown(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/shutdown
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1990, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/sim_server.pc b/share/sbom/pkgconfig/sim_server.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sim_server.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: sim_server
+Description: MIT implementation of Kerberos stack
+URL: https://web.mit.edu/kerberos/krb5-latest/doc/
+Version: 1.2.2
+Source: https://github.com/krb5/krb5/tree/krb5-1.22-final
+License: MIT
diff --git a/share/sbom/pkgconfig/size.pc b/share/sbom/pkgconfig/size.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/size.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: size
+Description: BSD licensed ELF toolchain
+URL: https://sourceforge.net/projects/elftoolchain/
+Version: r4912
+Source: https://sourceforge.net/p/elftoolchain/code/
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/skein1024.pc b/share/sbom/pkgconfig/skein1024.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/skein1024.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: skein1024
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=skein1024(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/skein1024sum.pc b/share/sbom/pkgconfig/skein1024sum.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/skein1024sum.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: skein1024sum
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=skein1024sum(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/skein256.pc b/share/sbom/pkgconfig/skein256.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/skein256.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: skein256
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=skein256(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/skein256sum.pc b/share/sbom/pkgconfig/skein256sum.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/skein256sum.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: skein256sum
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=skein256sum(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/skein512.pc b/share/sbom/pkgconfig/skein512.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/skein512.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: skein512
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=skein512(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/skein512sum.pc b/share/sbom/pkgconfig/skein512sum.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/skein512sum.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: skein512sum
+Description: Calculate a message- digest fingerprint (checksum) for a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=skein512sum(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/md5
+License: LicenseRef-scancode-rsa-1990
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-rsa-1990.368f42f4.txt
+Copyright: 1990-2, RSA Data Security, Inc.
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_fileargs, libcompiler_rt, libmd
diff --git a/share/sbom/pkgconfig/sleep.pc b/share/sbom/pkgconfig/sleep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sleep.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: sleep
+Description: Suspend execution for an interval of time
+URL: https://man.freebsd.org/cgi/man.cgi?query=sleep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/sleep
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt, msun
diff --git a/share/sbom/pkgconfig/slogin.pc b/share/sbom/pkgconfig/slogin.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/slogin.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: slogin
+Description: Connectivity tool for remote login with the SSH protocol
+URL: https://openssh.com
+Version: 10.0p2
+Source: https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/openssh-10.0.tar.gz
+License: SSH-OpenSSH
diff --git a/share/sbom/pkgconfig/smbmsg.pc b/share/sbom/pkgconfig/smbmsg.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/smbmsg.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: smbmsg
+Description: Send or receive messages over an SMBus
+URL: https://man.freebsd.org/cgi/man.cgi?query=smbmsg(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/smbmsg
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.e8f7e0ee.txt
+Copyright: 2004 Joerg Wunsch
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/smbutil.pc b/share/sbom/pkgconfig/smbutil.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/smbutil.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: smbutil
+Description: SMB/CIFS protocol and SMB/CIFS file system implementation for FreeBSD
+URL: https://man.freebsd.org/cgi/man.cgi?query=smbutil(1)
+Version: 1.4.1
+Source: https://github.com/freebsd/freebsd-src/tree/main/contrib/smbfs
+License: BSD-4-Clause
diff --git a/share/sbom/pkgconfig/snapinfo.pc b/share/sbom/pkgconfig/snapinfo.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/snapinfo.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: snapinfo
+Description: Show snapshot location on UFS file systems
+URL: https://man.freebsd.org/cgi/man.cgi?query=snapinfo(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/snapinfo
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt
+Copyright: 2005 Mark Santcroos <marks@freebsd.org>
+Requires: csu, libc, libcompiler_rt, libufs
diff --git a/share/sbom/pkgconfig/sndctl.pc b/share/sbom/pkgconfig/sndctl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sndctl.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: sndctl
+Description: List and modify soundcard properties
+URL: https://man.freebsd.org/cgi/man.cgi?query=sndctl(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/sndctl
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2024-2025 The FreeBSD Foundation
diff --git a/share/sbom/pkgconfig/sntp.pc b/share/sbom/pkgconfig/sntp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sntp.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: sntp
+Description: Network Time Protocol (NTP)
+URL: https://www.ntp.org
+Version: 4.2.8p18
+Source: https://downloads.nwtime.org/ntp/4.2.8/ntp-4.2.8p18.tar.gz
+License: Beerware AND BSD-4-Clause AND BSD-4-Clause-UC AND BSD-3-Clause AND BSD-2-Clause AND BSD-3-Clause AND CC-PDDC AND BSD-4.3TAHOE AND curl AND FSFAP AND GPL-1.0-or-later AND GPL-3.0-or-later WITH Bison-exception-2.2 AND HPND AND ISC LicenseRef-scancode-public-domain AND LGPL-2.0-or-later AND LGPL-2.1-or-later AND LGPL-3.0-or-later OR BSD-3-Clause AND LicenseRef-scancode-historical-ntp AND LicenseRef-scancode-nortel-dasa AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-philippe-de-muyter AND LicenseRef-scancode-takao-abe AND LicenseRef-scancode-warranty-disclaimer AND LicenseRef-scancode-other-permissive AND MIT AND MIT-CMU AND NTP NTP-0
diff --git a/share/sbom/pkgconfig/sockstat.pc b/share/sbom/pkgconfig/sockstat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sockstat.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: sockstat
+Description: List open sockets
+URL: https://man.freebsd.org/cgi/man.cgi?query=sockstat(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/sockstat
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-bsd-unchanged.f9e44ef7.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-bsd-unchanged.fad7b6fb.txt
+Copyright: 2002 Dag-Erling Smorgrav, 2025 ConnectWise
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_net, libcasper.services.cap_netdb, libcasper.services.cap_pwd, libcasper.services.cap_sysctl, libcompiler_rt, libjail
diff --git a/share/sbom/pkgconfig/soelim.pc b/share/sbom/pkgconfig/soelim.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/soelim.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: soelim
+Description: Interpret .so requests in manpages
+URL: https://man.freebsd.org/cgi/man.cgi?query=soelim(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/soelim
+License: LicenseRef-scancode-bsd-unchanged
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-bsd-unchanged.b0945d8f.txt
+Copyright: 2014 Baptiste Daroussin <bapt@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/sort.pc b/share/sbom/pkgconfig/sort.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sort.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: sort
+Description: Sort or merge records (lines) of text and binary files
+URL: https://man.freebsd.org/cgi/man.cgi?query=sort(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/sort
+License: BSD-2-Clause AND BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 2009 Gabor Kovesdan <gabor@FreeBSD.org>, 2012 Oleg Moskalenko <mom040267@gmail.com>, 2012 Gabor Kovesdan <gabor@FreeBSD.org>, 1991, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, msun
diff --git a/share/sbom/pkgconfig/spi.pc b/share/sbom/pkgconfig/spi.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/spi.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: spi
+Description: Communicate on SPI bus with slave devices
+URL: https://man.freebsd.org/cgi/man.cgi?query=spi(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/spi
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2018 S.F.T. Inc.
diff --git a/share/sbom/pkgconfig/spkrtest.pc b/share/sbom/pkgconfig/spkrtest.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/spkrtest.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: spkrtest
+Description: Test script for the speaker driver
+URL: https://man.freebsd.org/cgi/man.cgi?query=spkrtest(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/spkrtest
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/split.pc b/share/sbom/pkgconfig/split.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/split.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: split
+Description: Split a file into pieces
+URL: https://man.freebsd.org/cgi/man.cgi?query=split(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/split
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1987, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/spray.pc b/share/sbom/pkgconfig/spray.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/spray.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: spray
+Description: Send many packets to host
+URL: https://man.freebsd.org/cgi/man.cgi?query=spray(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/spray
+License: BSD-4-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause.d4eb499e.txt
+Copyright: 1993 Winning Strategies, Inc.
+Requires: csu, libc, libcompiler_rt, librpcsvc
diff --git a/share/sbom/pkgconfig/sqlite3.pc b/share/sbom/pkgconfig/sqlite3.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sqlite3.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: sqlite3
+Description: SQLite3 database engine
+URL: https://sqlite.org/src
+Version: 3.50.2
+Source: https://github.com/sqlite/sqlite/tree/version-3.50.2
+License: LicenseRef-scancode-public-domain
diff --git a/share/sbom/pkgconfig/ssh-add.pc b/share/sbom/pkgconfig/ssh-add.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ssh-add.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ssh-add
+Description: Connectivity tool for remote login with the SSH protocol
+URL: https://openssh.com
+Version: 10.0p2
+Source: https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/openssh-10.0.tar.gz
+License: SSH-OpenSSH
diff --git a/share/sbom/pkgconfig/ssh-agent.pc b/share/sbom/pkgconfig/ssh-agent.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ssh-agent.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ssh-agent
+Description: Connectivity tool for remote login with the SSH protocol
+URL: https://openssh.com
+Version: 10.0p2
+Source: https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/openssh-10.0.tar.gz
+License: SSH-OpenSSH
diff --git a/share/sbom/pkgconfig/ssh-copy-id.pc b/share/sbom/pkgconfig/ssh-copy-id.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ssh-copy-id.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ssh-copy-id
+Description: Connectivity tool for remote login with the SSH protocol
+URL: https://openssh.com
+Version: 10.0p2
+Source: https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/openssh-10.0.tar.gz
+License: SSH-OpenSSH
diff --git a/share/sbom/pkgconfig/ssh-keygen.pc b/share/sbom/pkgconfig/ssh-keygen.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ssh-keygen.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ssh-keygen
+Description: Connectivity tool for remote login with the SSH protocol
+URL: https://openssh.com
+Version: 10.0p2
+Source: https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/openssh-10.0.tar.gz
+License: SSH-OpenSSH
diff --git a/share/sbom/pkgconfig/ssh-keyscan.pc b/share/sbom/pkgconfig/ssh-keyscan.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ssh-keyscan.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ssh-keyscan
+Description: Connectivity tool for remote login with the SSH protocol
+URL: https://openssh.com
+Version: 10.0p2
+Source: https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/openssh-10.0.tar.gz
+License: SSH-OpenSSH
diff --git a/share/sbom/pkgconfig/ssh.pc b/share/sbom/pkgconfig/ssh.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ssh.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ssh
+Description: Connectivity tool for remote login with the SSH protocol
+URL: https://openssh.com
+Version: 10.0p2
+Source: https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/openssh-10.0.tar.gz
+License: SSH-OpenSSH
diff --git a/share/sbom/pkgconfig/sshd.pc b/share/sbom/pkgconfig/sshd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sshd.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: sshd
+Description: Connectivity tool for remote login with the SSH protocol
+URL: https://openssh.com
+Version: 10.0p2
+Source: https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/openssh-10.0.tar.gz
+License: SSH-OpenSSH
diff --git a/share/sbom/pkgconfig/stat.pc b/share/sbom/pkgconfig/stat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/stat.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: stat
+Description: Display file status
+URL: https://man.freebsd.org/cgi/man.cgi?query=stat(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/stat
+License: BSD-4-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt
+Copyright: 2002 The NetBSD Foundation, Inc., 2025 Klara, Inc.
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/stdbuf.pc b/share/sbom/pkgconfig/stdbuf.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/stdbuf.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: stdbuf
+Description: Change standard streams initial buffering
+URL: https://man.freebsd.org/cgi/man.cgi?query=stdbuf(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/stdbuf
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2012 Jeremie Le Hen <jlh@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/strfile.pc b/share/sbom/pkgconfig/strfile.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/strfile.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: strfile
+Description: Create a random access file for storing strings
+URL: https://man.freebsd.org/cgi/man.cgi?query=strfile(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/fortune/strfile
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California, 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/strings.pc b/share/sbom/pkgconfig/strings.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/strings.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: strings
+Description: BSD licensed ELF toolchain
+URL: https://sourceforge.net/projects/elftoolchain/
+Version: r4912
+Source: https://sourceforge.net/p/elftoolchain/code/
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/strip.pc b/share/sbom/pkgconfig/strip.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/strip.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: strip
+Description: BSD licensed ELF toolchain
+URL: https://sourceforge.net/projects/elftoolchain/
+Version: r4912
+Source: https://sourceforge.net/p/elftoolchain/code/
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/stty.pc b/share/sbom/pkgconfig/stty.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/stty.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: stty
+Description: Set the options for a terminal device interface
+URL: https://man.freebsd.org/cgi/man.cgi?query=stty(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/stty
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993, 1994 The Regents of the University of California, 1989, 1991, 1993, 1994 The Regents of the University of California, 1991, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/su.pc b/share/sbom/pkgconfig/su.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/su.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: su
+Description: Substitute user identity
+URL: https://man.freebsd.org/cgi/man.cgi?query=su(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/su
+License: BSD-2-Clause AND BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 2002, 2005 Networks Associates Technologies, Inc., 1988, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libpam, libutil
diff --git a/share/sbom/pkgconfig/sum.pc b/share/sbom/pkgconfig/sum.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sum.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: sum
+Description: Display file checksums and block counts
+URL: https://man.freebsd.org/cgi/man.cgi?query=sum(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/cksum
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/swapctl.pc b/share/sbom/pkgconfig/swapctl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/swapctl.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: swapctl
+Description: Specify devices for paging and swapping
+URL: https://man.freebsd.org/cgi/man.cgi?query=swapctl(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/swapon
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/swapinfo.pc b/share/sbom/pkgconfig/swapinfo.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/swapinfo.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: swapinfo
+Description: Display system data structures
+URL: https://man.freebsd.org/cgi/man.cgi?query=swapinfo(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/pstat
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1991, 1993, 1994 The Regents of the University of California, 2002 Networks Associates Technologies, Inc.
+Requires: csu, libc, libcompiler_rt, libkvm, libutil
diff --git a/share/sbom/pkgconfig/swapoff.pc b/share/sbom/pkgconfig/swapoff.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/swapoff.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: swapoff
+Description: Specify devices for paging and swapping
+URL: https://man.freebsd.org/cgi/man.cgi?query=swapoff(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/swapon
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/swapon.pc b/share/sbom/pkgconfig/swapon.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/swapon.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: swapon
+Description: Specify devices for paging and swapping
+URL: https://man.freebsd.org/cgi/man.cgi?query=swapon(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/swapon
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/sync.pc b/share/sbom/pkgconfig/sync.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sync.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: sync
+Description: Force completion of pending disk writes (flush cache)
+URL: https://man.freebsd.org/cgi/man.cgi?query=sync(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/sync
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1987, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/sysctl.pc b/share/sbom/pkgconfig/sysctl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sysctl.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: sysctl
+Description: Get or set kernel state
+URL: https://man.freebsd.org/cgi/man.cgi?query=sysctl(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/sysctl
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/syslogd.pc b/share/sbom/pkgconfig/syslogd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/syslogd.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: syslogd
+Description: Log systems messages
+URL: https://man.freebsd.org/cgi/man.cgi?query=syslogd(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/syslogd
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 2023 The FreeBSD Foundation, 1983, 1988, 1993, 1994 The Regents of the University of California, 2018 Prodrive Technologies, https://prodrive-technologies.com, 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/sysrc.pc b/share/sbom/pkgconfig/sysrc.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/sysrc.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: sysrc
+Description: Safely edit system rc files
+URL: https://man.freebsd.org/cgi/man.cgi?query=sysrc(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/sysrc
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/systat.pc b/share/sbom/pkgconfig/systat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/systat.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: systat
+Description: Display system statistics
+URL: https://man.freebsd.org/cgi/man.cgi?query=systat(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/systat
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.5bebe47e.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.e9c61fa9.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-mit-license-1998.efd275e2.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1980, 1992, 1993 The Regents of the University of California, 2003, Trent Nelson, <trent@arpa.com>, Copyright 1997 Massachusetts Institute of Technology, 1998 David E. O'Brien 2015, 2021 Yoshihiro Ota, 1998 Kenneth D. Merry. 2015 Yoshihiro Ota, 1983, 1989, 1992, 1993 The Regents of the University of California, 2015 The Regents of the University of California, 2017, 2020 Yoshihiro Ota, 2019, 2020 Yoshihiro Ota, 2021 Netflix, Inc, 1991, 1993 The Regents of the University of California, 1998 Kenneth D. Merry, 1980, 1989, 1992, 1993 The Regents of the University of California, 2021 Yoshihiro Ota <ota@j.email.ne.jp>, 2014 - 2017, 2019 Yoshihiro Ota
+Requires: csu, libc, libcompiler_rt, libdevstat, libkvm, libprocstat, libutil, msun, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/tabs.pc b/share/sbom/pkgconfig/tabs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/tabs.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: tabs
+Description: Set terminal tabs
+URL: https://man.freebsd.org/cgi/man.cgi?query=tabs(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/tabs
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2002 Tim J. Robbins
+Requires: csu, libc, libcompiler_rt, libtinfo
diff --git a/share/sbom/pkgconfig/tail.pc b/share/sbom/pkgconfig/tail.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/tail.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: tail
+Description: Display the last part of a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=tail(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/tail
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/talk.pc b/share/sbom/pkgconfig/talk.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/talk.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: talk
+Description: Talk to another user
+URL: https://man.freebsd.org/cgi/man.cgi?query=talk(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/talk
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-mit-license-1998.efd275e2.txt
+Copyright: 1983, 1993 The Regents of the University of California, Copyright 1994, 1995 Massachusetts Institute of Technology
+Requires: csu, libc, libcompiler_rt, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/tar.pc b/share/sbom/pkgconfig/tar.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/tar.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: tar
+Description: Multi-format archive and compression library
+URL: https://libarchive.org
+Version: 3.8.2
+Source: https://github.com/libarchive/libarchive/tree/v3.8.2
+License: BSD-3-Clause AND BSD-2-Clause AND CC0-1.0 AND openssl AND Apache-2.0
diff --git a/share/sbom/pkgconfig/tcopy.pc b/share/sbom/pkgconfig/tcopy.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/tcopy.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: tcopy
+Description: Read, write, copy and verify tapes
+URL: https://man.freebsd.org/cgi/man.cgi?query=tcopy(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/tcopy
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.da76510e.txt
+Copyright: 2025 Poul-Henning Kamp, <phk@FreeBSD.org>, 1985, 1987, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/tcpdchk.pc b/share/sbom/pkgconfig/tcpdchk.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/tcpdchk.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: tcpdchk
+Description: Host-based networking ACL system
+URL: https://github.com/tcp-wrappers/code
+Version: 7.6
+Source: https://github.com/tcp-wrappers/code/tree/tcp_wrappers_7.6
diff --git a/share/sbom/pkgconfig/tcpdmatch.pc b/share/sbom/pkgconfig/tcpdmatch.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/tcpdmatch.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: tcpdmatch
+Description: Host-based networking ACL system
+URL: https://github.com/tcp-wrappers/code
+Version: 7.6
+Source: https://github.com/tcp-wrappers/code/tree/tcp_wrappers_7.6
diff --git a/share/sbom/pkgconfig/tcpdrop.pc b/share/sbom/pkgconfig/tcpdrop.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/tcpdrop.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: tcpdrop
+Description: Drop TCP connections
+URL: https://man.freebsd.org/cgi/man.cgi?query=tcpdrop(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/tcpdrop
+License: ISC
+License.file: ${pcfiledir}/LICENSES/ISC.a506e8a5.txt
+Copyright: 2009 Juli Mallett <jmallett@FreeBSD.org>, 2004 Markus Friedl <markus@openbsd.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/tcpdump.pc b/share/sbom/pkgconfig/tcpdump.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/tcpdump.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: tcpdump
+Description: Powerful command-line packet analyzer
+URL: https://www.tcpdump.org
+Version: 4.99.5
+Source: https://fossies.org/linux/misc/tcpdump-4.99.5.tar.gz
+License: BSD-3-Clause
+Maintainer: cy@, emaste@, jrm@
diff --git a/share/sbom/pkgconfig/tcpsso.pc b/share/sbom/pkgconfig/tcpsso.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/tcpsso.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: tcpsso
+Description: Set a socket option on a TCP endpoint
+URL: https://man.freebsd.org/cgi/man.cgi?query=tcpsso(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/tcpsso
+License: BSD-4-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2022 Michael Tuexen <tuexen@FreeBSD.org>, 2009 Juli Mallett <jmallett@FreeBSD.org>, 2004 Markus Friedl <markus@openbsd.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/tcsh.pc b/share/sbom/pkgconfig/tcsh.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/tcsh.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: tcsh
+Description: C shell with file name completion and command line editing
+URL: https://man.freebsd.org/cgi/man.cgi?query=csh(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/csh
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2006 Hajimu UMEMOTO <ume@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/tee.pc b/share/sbom/pkgconfig/tee.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/tee.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: tee
+Description: Duplicate standard input
+URL: https://man.freebsd.org/cgi/man.cgi?query=tee(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/tee
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/telnet.pc b/share/sbom/pkgconfig/telnet.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/telnet.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: telnet
+Description: User interface to the TELNET protoco
+URL: https://man.freebsd.org/cgi/man.cgi?query=telnet(1)
+Version: 4.2
+Source: https://github.com/freebsd/freebsd-src/tree/main/contrib/telnet
+License: BSD-3-Clause and BSD-2-Clause
diff --git a/share/sbom/pkgconfig/test.pc b/share/sbom/pkgconfig/test.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/test.pc
@@ -0,0 +1,12 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: test
+Description: Condition evaluation utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=test(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/test
+License: LicenseRef-Public-Domain
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/tftp.pc b/share/sbom/pkgconfig/tftp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/tftp.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: tftp
+Description: Trivial file transfer program
+URL: https://man.freebsd.org/cgi/man.cgi?query=tftp(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/tftp
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1983, 1993 The Regents of the University of California, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libedit
diff --git a/share/sbom/pkgconfig/tic.pc b/share/sbom/pkgconfig/tic.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/tic.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: tic
+Description: clone of System V curses form library
+URL: https://invisible-island.net/ncurses
+Version: 6.5
+Source: https://invisible-island.net/archives/ncurses/ncurses-6.5.tar.gz
+License: X11
+Requires: csu, libc, libcompiler_rt, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/time.pc b/share/sbom/pkgconfig/time.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/time.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: time
+Description: Time command execution
+URL: https://man.freebsd.org/cgi/man.cgi?query=time(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/time
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1987, 1988, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/timeout.pc b/share/sbom/pkgconfig/timeout.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/timeout.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: timeout
+Description: Run a command with a time limit
+URL: https://man.freebsd.org/cgi/man.cgi?query=timeout(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/timeout
+License: LicenseRef-scancode-bsd-unchanged
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-bsd-unchanged.b0945d8f.txt
+Copyright: 2014 Baptiste Daroussin <bapt@FreeBSD.org>, 2014 Vsevolod Stakhov <vsevolod@FreeBSD.org>, 2025 Aaron LI <aly@aaronly.me>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/tip.pc b/share/sbom/pkgconfig/tip.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/tip.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: tip
+Description: Connect to a remote system
+URL: https://man.freebsd.org/cgi/man.cgi?query=tip(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/tip/tip
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1983, 1993 The Regents of the University of California, 1992, 1993 The Regents of the University of California, 1989, 1993 The Regents of the University of California, 1988, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/toe.pc b/share/sbom/pkgconfig/toe.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/toe.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: toe
+Description: clone of System V curses form library
+URL: https://invisible-island.net/ncurses
+Version: 6.5
+Source: https://invisible-island.net/archives/ncurses/ncurses-6.5.tar.gz
+License: X11
+Requires: csu, libc, libcompiler_rt, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/top.pc b/share/sbom/pkgconfig/top.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/top.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: top
+Description: Display and update information about the top cpu processes
+URL: https://man.freebsd.org/cgi/man.cgi?query=top(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/top
+License: NOASSERTION
+Copyright: 1984, 1989, William LeFebvre, Rice University, 1989, 1990, 1992, William LeFebvre, Northwestern University, 2016, Randy Westlund, 1989 - 1994, William LeFebvre, Northwestern University, 1994, 1995, William LeFebvre, Argonne National Laboratory, 1996, William LeFebvre, Group, 1984 through 1996, William LeFebvre, 2018, Eitan Adler
+Requires: csu, libc, libcompiler_rt, libjail, libkvm, libsbuf, libutil, msun, libtinfo
diff --git a/share/sbom/pkgconfig/touch.pc b/share/sbom/pkgconfig/touch.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/touch.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: touch
+Description: Change file access and modification times
+URL: https://man.freebsd.org/cgi/man.cgi?query=touch(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/touch
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/tput.pc b/share/sbom/pkgconfig/tput.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/tput.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: tput
+Description: clone of System V curses form library
+URL: https://invisible-island.net/ncurses
+Version: 6.5
+Source: https://invisible-island.net/archives/ncurses/ncurses-6.5.tar.gz
+License: X11
+Requires: csu, libc, libcompiler_rt, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/tr.pc b/share/sbom/pkgconfig/tr.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/tr.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: tr
+Description: Translate characters
+URL: https://man.freebsd.org/cgi/man.cgi?query=tr(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/tr
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.16ea4b25.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 2004 Tim J. Robbins, 1988, 1993 The Regents of the University of California, 1991, 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/traceroute.pc b/share/sbom/pkgconfig/traceroute.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/traceroute.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: traceroute
+Description: Print the route packets take to network host
+URL: https://man.freebsd.org/cgi/man.cgi?query=traceroute(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/traceroute
+License: BSD-2-Clause AND BSD-4-Clause-Shortened AND BSD-4-Clause-UC
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause-UC.e776081c.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt, ${pcfiledir}/LICENSES/BSD-4-Clause-Shortened.ad320323.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1997, 1998, 1999, 2000 The Regents of the University of California, 2000 The Regents of the University of California, 2001 The NetBSD Foundation, Inc., 1988, 1989, 1991, 1994, 1995, 1996, 1997, 1998, 1999, 2000 The Regents of the University of California, 2010 Bjoern A. Zeeb <bz@FreeBSD.org>, 1997 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcompiler_rt, libipsec
diff --git a/share/sbom/pkgconfig/traceroute6.pc b/share/sbom/pkgconfig/traceroute6.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/traceroute6.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: traceroute6
+Description: Print the route IPv6 packets will take to a network node
+URL: https://man.freebsd.org/cgi/man.cgi?query=traceroute6(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/traceroute6
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.328b29b3.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1995, 1996, 1997, and 1998 WIDE Project, 1990, 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcasper.services.cap_dns, libcompiler_rt, libipsec
diff --git a/share/sbom/pkgconfig/trim.pc b/share/sbom/pkgconfig/trim.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/trim.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: trim
+Description: Erase device blocks that have no needed contents
+URL: https://man.freebsd.org/cgi/man.cgi?query=trim(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/trim
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2019 Eugene Grosbein <eugen@FreeBSD.org>
diff --git a/share/sbom/pkgconfig/true.pc b/share/sbom/pkgconfig/true.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/true.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: true
+Description: Return true value
+URL: https://man.freebsd.org/cgi/man.cgi?query=true(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/true
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/truncate.pc b/share/sbom/pkgconfig/truncate.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/truncate.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: truncate
+Description: Resize files or manage file space
+URL: https://man.freebsd.org/cgi/man.cgi?query=truncate(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/truncate
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2000 Sheldon Hearn <sheldonh@FreeBSD.org>, 2021 The FreeBSD Foundation
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/truss.pc b/share/sbom/pkgconfig/truss.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/truss.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: truss
+Description: Trace system calls
+URL: https://man.freebsd.org/cgi/man.cgi?query=truss(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/truss
+License: BSD-4-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause.1df4f35b.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: Copyright 1997 Sean Eric Fagan, Copyright 2001 Jamey Wood
+Requires: csu, libc, libcompiler_rt, libsysdecode
diff --git a/share/sbom/pkgconfig/ts.pc b/share/sbom/pkgconfig/ts.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ts.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ts
+Description: Utility prepends a timestamp to each line of standard input and writes it to standard output
+URL: https://github.com/openbsd/src/tree/master/usr.bin/ts
+Version: 7.2
+Source: https://github.com/openbsd/src/tree/master/usr.bin/ts
+License: BSD-3-Clause
diff --git a/share/sbom/pkgconfig/tset.pc b/share/sbom/pkgconfig/tset.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/tset.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: tset
+Description: clone of System V curses form library
+URL: https://invisible-island.net/ncurses
+Version: 6.5
+Source: https://invisible-island.net/archives/ncurses/ncurses-6.5.tar.gz
+License: X11
+Requires: csu, libc, libcompiler_rt, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/tsort.pc b/share/sbom/pkgconfig/tsort.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/tsort.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: tsort
+Description: Topological sort of a directed graph
+URL: https://man.freebsd.org/cgi/man.cgi?query=tsort(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/tsort
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/tty.pc b/share/sbom/pkgconfig/tty.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/tty.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: tty
+Description: Return user's terminal name
+URL: https://man.freebsd.org/cgi/man.cgi?query=tty(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/tty
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/tunefs.pc b/share/sbom/pkgconfig/tunefs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/tunefs.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: tunefs
+Description: Tune up an existing UFS file system
+URL: https://man.freebsd.org/cgi/man.cgi?query=tunefs(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/tunefs
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1983, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libufs
diff --git a/share/sbom/pkgconfig/type.pc b/share/sbom/pkgconfig/type.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/type.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: type
+Description: Description of command type
+URL: https://man.freebsd.org/cgi/man.cgi?query=sh(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/sh
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California, 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>, 2010-2015 Jilles Tjoelker <jilles@stack.nl>, 1993 The Regents of the University of California, Copyright 1989 by Kenneth Almquist, 1995 The Regents of the University of California, 2002 Herbert Xu, 2007 Herbert Xu <herbert@gondor.apana.org.au>
+Requires: csu, libc, libcompiler_rt, libedit
diff --git a/share/sbom/pkgconfig/tzsetup.pc b/share/sbom/pkgconfig/tzsetup.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/tzsetup.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: tzsetup
+Description: Set local timezone
+URL: https://man.freebsd.org/cgi/man.cgi?query=tzsetup(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/tzsetup
+License: LicenseRef-scancode-mit-license-1998
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-mit-license-1998.efd275e2.txt
+Copyright: Copyright 1996 Massachusetts Institute of Technology
+Requires: csu, libbsddialog, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/uathload.pc b/share/sbom/pkgconfig/uathload.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/uathload.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: uathload
+Description: Load firmware for Atheros USB wireless devices
+URL: https://man.freebsd.org/cgi/man.cgi?query=uathload(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/uathload
+License: NOASSERTION
+Copyright: 2006 Sam Leffler, Errno Consulting
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ucmatose.pc b/share/sbom/pkgconfig/ucmatose.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ucmatose.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ucmatose
+Description: RDMA CM connection and simple ping-pong test
+URL: https://www.openfabrics.org/ofed-for-linux/
+Version: 1.5.3
+Source: https://downloads.openfabrics.org/OFED/archive/ofed-1.5.3/OFED-1.5.3.tgz
+License: GPL-2.0 OR BSD-2-Clause
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/udaddy.pc b/share/sbom/pkgconfig/udaddy.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/udaddy.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: udaddy
+Description: RDMA CM datagram setup and simple ping-pong test
+URL: https://www.openfabrics.org/ofed-for-linux/
+Version: 1.5.3
+Source: https://downloads.openfabrics.org/OFED/archive/ofed-1.5.3/OFED-1.5.3.tgz
+License: GPL-2.0 OR BSD-2-Clause
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/uefisign.pc b/share/sbom/pkgconfig/uefisign.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/uefisign.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: uefisign
+Description: UEFI Secure Boot signing utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=uefisign(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/uefisign
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2014 The FreeBSD Foundation
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ugidfw.pc b/share/sbom/pkgconfig/ugidfw.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ugidfw.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ugidfw
+Description: Firewall-like access controls for file system objects
+URL: https://man.freebsd.org/cgi/man.cgi?query=ugidfw(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/ugidfw
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2002, 2004 Networks Associates Technology, Inc.
+Requires: csu, libc, libcompiler_rt, libugidfw
diff --git a/share/sbom/pkgconfig/uhsoctl.pc b/share/sbom/pkgconfig/uhsoctl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/uhsoctl.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: uhsoctl
+Description: Connection utility for Option based devices
+URL: https://man.freebsd.org/cgi/man.cgi?query=uhsoctl(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/uhsoctl
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt
+Copyright: 2008-2009 Fredrik Lindberg
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/ul.pc b/share/sbom/pkgconfig/ul.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ul.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ul
+Description: Do underlining
+URL: https://man.freebsd.org/cgi/man.cgi?query=ul(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/ul
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libtinfo
diff --git a/share/sbom/pkgconfig/ulimit.pc b/share/sbom/pkgconfig/ulimit.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ulimit.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ulimit
+Description: Set or display process resource limits
+URL: https://man.freebsd.org/cgi/man.cgi?query=limits(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/limits
+License: LicenseRef-scancode-other-permissive
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-other-permissive.403fe0bf.txt
+Copyright: 1997 by David L. Nugent <davidn@blaze.net.au>
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/umask.pc b/share/sbom/pkgconfig/umask.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/umask.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: umask
+Description: Make fifos
+URL: https://man.freebsd.org/cgi/man.cgi?query=mkfifo(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/mkfifo
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1990, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/umbctl.pc b/share/sbom/pkgconfig/umbctl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/umbctl.pc
@@ -0,0 +1,13 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: umbctl
+Description: Display or set MBIM cellular modem interface parameters (4G/LTE)
+URL: https://man.freebsd.org/cgi/man.cgi?query=umbctl(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/umbctl
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.3fce2f6f.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.a73a5a01.txt
+Copyright: copyright (c) 2018 Pierre Pronchery <khorben@defora.org>, 2022 ADISTA SAS
diff --git a/share/sbom/pkgconfig/umount.pc b/share/sbom/pkgconfig/umount.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/umount.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: umount
+Description: Unmount file systems
+URL: https://man.freebsd.org/cgi/man.cgi?query=umount(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/umount
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/unalias.pc b/share/sbom/pkgconfig/unalias.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/unalias.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: unalias
+Description: Send and receive mail
+URL: https://man.freebsd.org/cgi/man.cgi?query=mail(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/mail
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1993 The Regents of the University of California, 1992, 1993 The Regents of the University of California, 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/uname.pc b/share/sbom/pkgconfig/uname.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/uname.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: uname
+Description: Display information about the system
+URL: https://man.freebsd.org/cgi/man.cgi?query=uname(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/uname
+License: BSD-4-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause-UC.06c1e96a.txt
+Copyright: 2002 Juli Mallett, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/uncompress.pc b/share/sbom/pkgconfig/uncompress.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/uncompress.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: uncompress
+Description: Compress and expand data
+URL: https://man.freebsd.org/cgi/man.cgi?query=uncompress(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/compress
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.becf44a3.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1996 FreeBSD Inc., 1985, 1986, 1992, 1993 The Regents of the University of California, 1992, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/unexpand.pc b/share/sbom/pkgconfig/unexpand.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/unexpand.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: unexpand
+Description: Expand tabs to spaces, and vice versa
+URL: https://man.freebsd.org/cgi/man.cgi?query=unexpand(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/unexpand
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/unifdef.pc b/share/sbom/pkgconfig/unifdef.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/unifdef.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: unifdef
+Description: Selectively remove C preprocessor conditionals
+URL: https://dotat.at/prog/unifdef
+Version: 2.12
+Source: https://dotat.at/cgi/git/unifdef.git/tree/3a5ba6f9ecaadef4f3a118b35d0c89233609161d
+License: BSD-3-Clause AND BSD-2-Clause
diff --git a/share/sbom/pkgconfig/unifdefall.pc b/share/sbom/pkgconfig/unifdefall.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/unifdefall.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: unifdefall
+Description: Selectively remove C preprocessor conditionals
+URL: https://dotat.at/prog/unifdef
+Version: 2.12
+Source: https://dotat.at/cgi/git/unifdef.git/tree/3a5ba6f9ecaadef4f3a118b35d0c89233609161d
+License: BSD-3-Clause AND BSD-2-Clause
diff --git a/share/sbom/pkgconfig/uniq.pc b/share/sbom/pkgconfig/uniq.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/uniq.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: uniq
+Description: Report or filter out repeated lines in a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=uniq(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/uniq
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/units.pc b/share/sbom/pkgconfig/units.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/units.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: units
+Description: Conversion calculator
+URL: https://man.freebsd.org/cgi/man.cgi?query=units(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/units
+License: BSD-4-Clause AND BSD-2-Clause
+Copyright: 1993 by Adrian Mariano (adrian@cam.cornell.edu)
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt, libedit
diff --git a/share/sbom/pkgconfig/unlink.pc b/share/sbom/pkgconfig/unlink.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/unlink.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: unlink
+Description: Remove directory entries
+URL: https://man.freebsd.org/cgi/man.cgi?query=unlink(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/rm
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1990, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/unlzma.pc b/share/sbom/pkgconfig/unlzma.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/unlzma.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: unlzma
+Description: General purpose data compression library
+URL: https://tukaani.org/xz/
+Version: 5.8.1
+Source: https://github.com/tukaani-project/xz
+License: 0BSD
diff --git a/share/sbom/pkgconfig/unstr.pc b/share/sbom/pkgconfig/unstr.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/unstr.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: unstr
+Description: Create a random access file for storing strings
+URL: https://man.freebsd.org/cgi/man.cgi?query=unstr(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/fortune/strfile
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California, 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/unvis.pc b/share/sbom/pkgconfig/unvis.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/unvis.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: unvis
+Description: display non-printable characters in a visual format
+URL: https://man.freebsd.org/cgi/man.cgi?query=unvis(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/unvis
+License: BSD-3-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/unxz.pc b/share/sbom/pkgconfig/unxz.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/unxz.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: unxz
+Description: Compression/decompression tool using Lempel-Ziv coding (LZ77)
+URL: https://man.freebsd.org/cgi/man.cgi?query=gzip(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/gzip
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.2e42e2d8.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.88f437cf.txt, ${pcfiledir}/LICENSES/ISC.a506e8a5.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-sudo.e5838632.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt, ${pcfiledir}/LICENSES/Zlib.83bd71d4.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.715ec2cd.txt
+Copyright: 2018 The NetBSD Foundation, Inc., 2013-2018 Antonio Diaz Diaz, 2009 Xin LI <delphij@FreeBSD.org>, 2011 The NetBSD Foundation, Inc., 2003 Otto Moerbeek <otto@drijf.net>, 2022 Klara, Inc., 1985, 1986, 1992, 1993 The Regents of the University of California, 2003 Todd C. Miller <Todd.Miller@courtesan.com>, 2010 Joerg Sonnenberger <joerg@NetBSD.org>, 2006 The NetBSD Foundation, Inc., 1997, 1998, 2003, 2004, 2006, 2008, 2009, 2010, 2011, 2015, 2017 Matthew R. Green, 1997, 1998, 2003, 2004, 2006 Matthew R. Green
+Requires: csu, libc, libcompiler_rt, liblzma, libz, libzstd
diff --git a/share/sbom/pkgconfig/unzip.pc b/share/sbom/pkgconfig/unzip.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/unzip.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: unzip
+Description: Multi-format archive and compression library
+URL: https://libarchive.org
+Version: 3.8.2
+Source: https://github.com/libarchive/libarchive/tree/v3.8.2
+License: BSD-3-Clause AND BSD-2-Clause AND CC0-1.0 AND openssl AND Apache-2.0
diff --git a/share/sbom/pkgconfig/unzstd.pc b/share/sbom/pkgconfig/unzstd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/unzstd.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: unzstd
+Description: Compression/decompression tool using Lempel-Ziv coding (LZ77)
+URL: https://man.freebsd.org/cgi/man.cgi?query=gzip(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/gzip
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.2e42e2d8.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.88f437cf.txt, ${pcfiledir}/LICENSES/ISC.a506e8a5.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-sudo.e5838632.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt, ${pcfiledir}/LICENSES/Zlib.83bd71d4.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.715ec2cd.txt
+Copyright: 2018 The NetBSD Foundation, Inc., 2013-2018 Antonio Diaz Diaz, 2009 Xin LI <delphij@FreeBSD.org>, 2011 The NetBSD Foundation, Inc., 2003 Otto Moerbeek <otto@drijf.net>, 2022 Klara, Inc., 1985, 1986, 1992, 1993 The Regents of the University of California, 2003 Todd C. Miller <Todd.Miller@courtesan.com>, 2010 Joerg Sonnenberger <joerg@NetBSD.org>, 2006 The NetBSD Foundation, Inc., 1997, 1998, 2003, 2004, 2006, 2008, 2009, 2010, 2011, 2015, 2017 Matthew R. Green, 1997, 1998, 2003, 2004, 2006 Matthew R. Green
+Requires: csu, libc, libcompiler_rt, liblzma, libz, libzstd
diff --git a/share/sbom/pkgconfig/uptime.pc b/share/sbom/pkgconfig/uptime.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/uptime.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: uptime
+Description: Show how long system has been running
+URL: https://man.freebsd.org/cgi/man.cgi?query=uptime(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/w
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1990, 1993 The Regents of the University of California, 1980, 1991, 1993, 1994 The Regents of the University of California, 1993 The Regents of the University of California, 1990, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libkvm, libsbuf, libutil, libxo
diff --git a/share/sbom/pkgconfig/usbconfig.pc b/share/sbom/pkgconfig/usbconfig.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/usbconfig.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: usbconfig
+Description: Configure the USB subsystem
+URL: https://man.freebsd.org/cgi/man.cgi?query=usbconfig(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/usbconfig
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2008-2009 Hans Petter Selasky, 2008 Hans Petter Selasky, 2024 Baptiste Daroussin <bapt@FreeBSD.org>, 2025 The FreeBSD Foundation
+Requires: csu, libc, libcompiler_rt, libusb
diff --git a/share/sbom/pkgconfig/usbdump.pc b/share/sbom/pkgconfig/usbdump.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/usbdump.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: usbdump
+Description: Dump traffic on USB host controller
+URL: https://man.freebsd.org/cgi/man.cgi?query=usbdump(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/usbdump
+License: BSD-2-Clause
+Copyright: 2010 Weongyo Jeong <weongyo@freebsd.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/usbhidaction.pc b/share/sbom/pkgconfig/usbhidaction.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/usbhidaction.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: usbhidaction
+Description: Perform actions according to USB HID controls
+URL: https://man.freebsd.org/cgi/man.cgi?query=usbhidaction(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/usbhidaction
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt
+Copyright: 2000, 2002 The NetBSD Foundation, Inc.
+Requires: csu, libc, libcompiler_rt, libusbhid
diff --git a/share/sbom/pkgconfig/usbhidctl.pc b/share/sbom/pkgconfig/usbhidctl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/usbhidctl.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: usbhidctl
+Description: Manipulate USB HID devices
+URL: https://man.freebsd.org/cgi/man.cgi?query=usbhidctl(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/usbhidctl
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt
+Copyright: 1998 The NetBSD Foundation, Inc.
+Requires: csu, libc, libcompiler_rt, libusbhid
diff --git a/share/sbom/pkgconfig/users.pc b/share/sbom/pkgconfig/users.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/users.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: users
+Description: List current users
+URL: https://man.freebsd.org/cgi/man.cgi?query=users(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/users
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 2014 Pietro Cerutti <gahr@FreeBSD.org>
+Requires: csu, libc, libc++, libcapsicum, libcasper, libcompiler_rt, libcxxrt, msun
diff --git a/share/sbom/pkgconfig/utx.pc b/share/sbom/pkgconfig/utx.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/utx.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: utx
+Description: Manage the user accounting database
+URL: https://man.freebsd.org/cgi/man.cgi?query=utx(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/utx
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2011-2012 Ed Schouten <ed@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/uudecode.pc b/share/sbom/pkgconfig/uudecode.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/uudecode.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: uudecode
+Description: Encode / decode a binary file
+URL: https://man.freebsd.org/cgi/man.cgi?query=uudecode(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/bintrans
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.4c6ac0a5.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1983, 1993 The Regents of the University of California, 2022 The FreeBSD Foundation, 2020 Baptiste Daroussin <bapt@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/uuencode.pc b/share/sbom/pkgconfig/uuencode.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/uuencode.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: uuencode
+Description: Encode / decode a binary file
+URL: https://man.freebsd.org/cgi/man.cgi?query=uuencode(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/bintrans
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.4c6ac0a5.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1983, 1993 The Regents of the University of California, 2022 The FreeBSD Foundation, 2020 Baptiste Daroussin <bapt@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/uuidgen.pc b/share/sbom/pkgconfig/uuidgen.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/uuidgen.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: uuidgen
+Description: Generate universally unique identifiers
+URL: https://man.freebsd.org/cgi/man.cgi?query=uuidgen(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/bin/uuidgen
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt
+Copyright: 2002 Marcel Moolenaar, 2022 Tobias C. Berner
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/vacation.pc b/share/sbom/pkgconfig/vacation.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/vacation.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: vacation
+Description: General purpose internetwork email routing application
+URL: https://ftp.sendmail.org
+Version: 8.18.1
+Source: https://ftp.sendmail.org/sendmail.8.18.1.tar.gz
+License: Sendmail
+Requires: openssl
diff --git a/share/sbom/pkgconfig/valectl.pc b/share/sbom/pkgconfig/valectl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/valectl.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: valectl
+Description: Manage VALE network switches provided by netmap
+URL: https://man.freebsd.org/cgi/man.cgi?query=valectl(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/valectl
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2013-2014 Michio Honda
+Requires: csu, libc, libcompiler_rt, libnetmap
diff --git a/share/sbom/pkgconfig/vi.pc b/share/sbom/pkgconfig/vi.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/vi.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: vi
+Description: Multibyte fork of the nvi editor for BSD
+URL: https://github.com/lichray/nvi2
+Version: 2.2.2
+Source: https://github.com/lichray/nvi2/tree/v2.2.2
+License: BSD-3-Clause
+Requires: csu, libc, libutil, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/vidcontrol.pc b/share/sbom/pkgconfig/vidcontrol.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/vidcontrol.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: vidcontrol
+Description: System video console control and configuration utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=vidcontrol(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/vidcontrol
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-bsd-unchanged.5d0f81df.txt
+Copyright: 1994 Soren Schmidt, 1994-1996 Soren Schmidt
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/vidfont.pc b/share/sbom/pkgconfig/vidfont.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/vidfont.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: vidfont
+Description: System video console keyboard map/font dialog utilities
+URL: https://man.freebsd.org/cgi/man.cgi?query=vidfont(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/kbdmap
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2002 Jonathan Belson <jon@witchspace.com>
+Requires: csu, libbsddialog, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/view.pc b/share/sbom/pkgconfig/view.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/view.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: view
+Description: Multibyte fork of the nvi editor for BSD
+URL: https://github.com/lichray/nvi2
+Version: 2.2.2
+Source: https://github.com/lichray/nvi2/tree/v2.2.2
+License: BSD-3-Clause
+Requires: csu, libc, libutil, libncurses, libtinfo
diff --git a/share/sbom/pkgconfig/vigr.pc b/share/sbom/pkgconfig/vigr.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/vigr.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: vigr
+Description: Edit the group file
+URL: https://man.freebsd.org/cgi/man.cgi?query=vigr(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/vigr
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/vipw.pc b/share/sbom/pkgconfig/vipw.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/vipw.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: vipw
+Description: Edit the password file
+URL: https://man.freebsd.org/cgi/man.cgi?query=vipw(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/vipw
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1987, 1993, 1994 The Regents of the University of California, 2002 Networks Associates Technology, Inc.
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/virtual_bt_speaker.pc b/share/sbom/pkgconfig/virtual_bt_speaker.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/virtual_bt_speaker.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: virtual_bt_speaker
+Description: Virtual bluetooth speaker
+URL: https://man.freebsd.org/cgi/man.cgi?query=virtual_bt_speaker(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/virtual_oss/virtual_bt_speaker
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2019 Google LLC
diff --git a/share/sbom/pkgconfig/virtual_oss.pc b/share/sbom/pkgconfig/virtual_oss.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/virtual_oss.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: virtual_oss
+Description: Daemon to multiplex and demultiplex an OSS device
+URL: https://man.freebsd.org/cgi/man.cgi?query=virtual_oss(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/virtual_oss/virtual_oss
+License: BSD-2-Clause AND BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.987de04e.txt
+Copyright: 2021 Hans Petter Selasky, 2017 Hans Petter Selasky, 2012-2022 Hans Petter Selasky, 2018 Hans Petter Selasky, 2020 Hans Petter Selasky, 2014 Hans Petter Selasky, 2012-2020 Hans Petter Selasky, 2015 Hans Petter Selasky
diff --git a/share/sbom/pkgconfig/virtual_oss_cmd.pc b/share/sbom/pkgconfig/virtual_oss_cmd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/virtual_oss_cmd.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: virtual_oss_cmd
+Description: Modify a running virtual_oss(8) instance's options
+URL: https://man.freebsd.org/cgi/man.cgi?query=virtual_oss_cmd(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/virtual_oss/virtual_oss_cmd
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2021-2022 Hans Petter Selasky
diff --git a/share/sbom/pkgconfig/vis.pc b/share/sbom/pkgconfig/vis.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/vis.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: vis
+Description: display non-printable characters in a visual format
+URL: https://man.freebsd.org/cgi/man.cgi?query=vis(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/vis
+License: BSD-3-Clause
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/vmstat.pc b/share/sbom/pkgconfig/vmstat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/vmstat.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: vmstat
+Description: Report virtual memory statistics
+URL: https://man.freebsd.org/cgi/man.cgi?query=vmstat(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/vmstat
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1986, 1991, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libdevstat, libkvm, libmemstat, libutil, libxo
diff --git a/share/sbom/pkgconfig/vtfontcvt.pc b/share/sbom/pkgconfig/vtfontcvt.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/vtfontcvt.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: vtfontcvt
+Description: Convert font files for use by the video console
+URL: https://man.freebsd.org/cgi/man.cgi?query=vtfontcvt(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/vtfontcvt
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2009, 2014 The FreeBSD Foundation
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/w.pc b/share/sbom/pkgconfig/w.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/w.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: w
+Description: Display who is logged in and what they are doing
+URL: https://man.freebsd.org/cgi/man.cgi?query=w(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/w
+License: BSD-3-Clause AND Apache-2.0 WITH LLVM-exception
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1990, 1993 The Regents of the University of California, 1980, 1991, 1993, 1994 The Regents of the University of California, 1993 The Regents of the University of California, 1990, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libkvm, libsbuf, libutil, libxo
diff --git a/share/sbom/pkgconfig/wait.pc b/share/sbom/pkgconfig/wait.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/wait.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: wait
+Description: CAM Target Layer statistics utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=ctlstat(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/ctlstat
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-intel-bsd-2-clause.b794004b.txt
+Copyright: 2004, 2008, 2009 Silicon Graphics International Corp., 2017 Alexander Motin <mav@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt, libexpat, libsbuf
diff --git a/share/sbom/pkgconfig/wake.pc b/share/sbom/pkgconfig/wake.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/wake.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: wake
+Description: Send Wake on LAN frames to hosts on a local Ethernet network
+URL: https://man.freebsd.org/cgi/man.cgi?query=wake(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/wake
+License: BSD-2-Clause
+Copyright: 2006, 2007, 2008, 2009, 2010 Marc Balmer <marc@msys.ch>, 2000 Eugene M. Kim
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/wall.pc b/share/sbom/pkgconfig/wall.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/wall.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: wall
+Description: Write a message to users
+URL: https://man.freebsd.org/cgi/man.cgi?query=wall(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/wall
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1990, 1993 The Regents of the University of California, 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/watch.pc b/share/sbom/pkgconfig/watch.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/watch.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: watch
+Description: Snoop on another tty line
+URL: https://man.freebsd.org/cgi/man.cgi?query=watch(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/watch
+License: LicenseRef-scancode-other-permissive
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-other-permissive.ce7c2bce.txt
+Copyright: 1995 Ugen
+Requires: csu, libc, libcompiler_rt, libtinfo
diff --git a/share/sbom/pkgconfig/watchdog.pc b/share/sbom/pkgconfig/watchdog.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/watchdog.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: watchdog
+Description: Watchdog control program
+URL: https://man.freebsd.org/cgi/man.cgi?query=watchdog(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/watchdogd
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2003-2004 Sean M. Kelly <smkelly@FreeBSD.org>, 2013 iXsystems.com
+Requires: csu, libc, libcompiler_rt, libutil, msun
diff --git a/share/sbom/pkgconfig/watchdogd.pc b/share/sbom/pkgconfig/watchdogd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/watchdogd.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: watchdogd
+Description: Watchdog daemon
+URL: https://man.freebsd.org/cgi/man.cgi?query=watchdogd(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/watchdogd
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2003-2004 Sean M. Kelly <smkelly@FreeBSD.org>, 2013 iXsystems.com
+Requires: csu, libc, libcompiler_rt, libutil, msun
diff --git a/share/sbom/pkgconfig/wc.pc b/share/sbom/pkgconfig/wc.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/wc.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: wc
+Description: Word, line, character, and byte count
+URL: https://man.freebsd.org/cgi/man.cgi?query=wc(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/wc
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1987, 1991, 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcompiler_rt, libxo
diff --git a/share/sbom/pkgconfig/wg.pc b/share/sbom/pkgconfig/wg.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/wg.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: wg
+Description: Tools for configuring WireGuard
+URL: https://git.zx2c4.com/wireguard-tools/
+Version: 1.0.20250521
+Source: https://git.zx2c4.com/wireguard-tools/tag/?h=v1.0.20250521
+License: GPL-2.0
diff --git a/share/sbom/pkgconfig/what.pc b/share/sbom/pkgconfig/what.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/what.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: what
+Description: Show what versions of object modules were used to construct a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=what(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/what
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1988, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/whatis.pc b/share/sbom/pkgconfig/whatis.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/whatis.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: whatis
+Description: Show what versions of object modules were used to construct a file
+URL: https://man.freebsd.org/cgi/man.cgi?query=what(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/what
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1988, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/whereis.pc b/share/sbom/pkgconfig/whereis.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/whereis.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: whereis
+Description: Locate programs
+URL: https://man.freebsd.org/cgi/man.cgi?query=whereis(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/whereis
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.0bb055ab.txt
+Copyright: 2002, Jorg Wunsch
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/which.pc b/share/sbom/pkgconfig/which.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/which.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: which
+Description: Locate a program file in the user's path
+URL: https://man.freebsd.org/cgi/man.cgi?query=which(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/which
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.b5add324.txt
+Copyright: 2000 Dan Papasian
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/who.pc b/share/sbom/pkgconfig/who.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/who.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: who
+Description: Display who is on the system
+URL: https://man.freebsd.org/cgi/man.cgi?query=who(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/who
+License: BSD-4-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 2002 Tim J. Robbins
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/whoami.pc b/share/sbom/pkgconfig/whoami.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/whoami.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: whoami
+Description: Display effective user id
+URL: https://man.freebsd.org/cgi/man.cgi?query=whoami(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/id
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1991, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/whois.pc b/share/sbom/pkgconfig/whois.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/whois.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: whois
+Description: Internet domain name and network number directory service
+URL: https://man.freebsd.org/cgi/man.cgi?query=whois(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/whois
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/wlandebug.pc b/share/sbom/pkgconfig/wlandebug.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/wlandebug.pc
@@ -0,0 +1,13 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: wlandebug
+Description: Set/query 802.11 wireless debugging messages
+URL: https://man.freebsd.org/cgi/man.cgi?query=wlandebug(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/wlandebug
+License: NOASSERTION
+Copyright: 2002-2009 Sam Leffler, Errno Consulting
+Requires: csu, libc, libcompiler_rt, libifconfig, msun
diff --git a/share/sbom/pkgconfig/wlanstat.pc b/share/sbom/pkgconfig/wlanstat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/wlanstat.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: wlanstat
+Description: Query 802.11 wireless network statistics
+URL: https://man.freebsd.org/cgi/man.cgi?query=wlanstat(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/wlanstat
+License: NOASSERTION
+Copyright: 2002-2007 Sam Leffler, Errno Consulting
diff --git a/share/sbom/pkgconfig/wpa_cli.pc b/share/sbom/pkgconfig/wpa_cli.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/wpa_cli.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: wpa_cli
+Description: Console utility for WiFi authentication with wpa_supplicant
+URL: https://w1.fi/wpa_supplicant/
+Version: 2.11
+Source: https://w1.fi/releases/hostapd-2.11.tar.gz
+License: BSD-3-Clause
+Requires: csu, libc, libcompiler_rt, libpcap, libutil
diff --git a/share/sbom/pkgconfig/wpa_passphrase.pc b/share/sbom/pkgconfig/wpa_passphrase.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/wpa_passphrase.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: wpa_passphrase
+Description: Utility for generating a 256-bit pre-shared WPA key from an ASCII passphrase
+URL: https://w1.fi/wpa_supplicant/
+Version: 2.11
+Source: https://w1.fi/releases/hostapd-2.11.tar.gz
+License: BSD-3-Clause
+Requires: csu, libc, libcompiler_rt, libutil
diff --git a/share/sbom/pkgconfig/wpa_supplicant.pc b/share/sbom/pkgconfig/wpa_supplicant.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/wpa_supplicant.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: wpa_supplicant
+Description: WPA Supplicant for Linux, BSD, Mac OS X, and Windows with support for WPA, WPA2 (IEEE 802.11i / RSN), and WPA3.
+URL: https://w1.fi/wpa_supplicant/
+Version: 2.11
+Source: https://w1.fi/releases/hostapd-2.11.tar.gz
+License: BSD-3-Clause
+Requires: openssl
diff --git a/share/sbom/pkgconfig/write.pc b/share/sbom/pkgconfig/write.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/write.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: write
+Description: Send a message to another user
+URL: https://man.freebsd.org/cgi/man.cgi?query=write(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/write
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/xargs.pc b/share/sbom/pkgconfig/xargs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/xargs.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: xargs
+Description: Construct argument list(s) and execute utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=xargs(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/xargs
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1990, 1993 The Regents of the University of California, 2002 J. Mallett
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/xo.pc b/share/sbom/pkgconfig/xo.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/xo.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: xo
+Description: Library allows an application to generate text, XML, JSON, and HTML output using a common set of function calls.
+URL: https://github.com/Juniper/libxo
+Version: 1.4.0
+Source: https://github.com/Juniper/libxo/tree/1.4.0
+License: BSD-2-Clause
diff --git a/share/sbom/pkgconfig/xstr.pc b/share/sbom/pkgconfig/xstr.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/xstr.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: xstr
+Description: Extract strings from C programs to implement shared strings
+URL: https://man.freebsd.org/cgi/man.cgi?query=xstr(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/xstr
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1980, 1993 The Regents of the University of California, 1989, 1993 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/xz.pc b/share/sbom/pkgconfig/xz.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/xz.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: xz
+Description: General purpose data compression library
+URL: https://tukaani.org/xz/
+Version: 5.8.1
+Source: https://github.com/tukaani-project/xz
+License: 0BSD
diff --git a/share/sbom/pkgconfig/xzcat.pc b/share/sbom/pkgconfig/xzcat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/xzcat.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: xzcat
+Description: General purpose data compression library
+URL: https://tukaani.org/xz/
+Version: 5.8.1
+Source: https://github.com/tukaani-project/xz
+License: 0BSD
diff --git a/share/sbom/pkgconfig/xzdec.pc b/share/sbom/pkgconfig/xzdec.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/xzdec.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: xzdec
+Description: General purpose data compression library
+URL: https://tukaani.org/xz/
+Version: 5.8.1
+Source: https://github.com/tukaani-project/xz
+License: 0BSD
diff --git a/share/sbom/pkgconfig/xzdiff.pc b/share/sbom/pkgconfig/xzdiff.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/xzdiff.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: xzdiff
+Description: General purpose data compression library
+URL: https://tukaani.org/xz/
+Version: 5.8.1
+Source: https://github.com/tukaani-project/xz
+License: 0BSD
diff --git a/share/sbom/pkgconfig/xzegrep.pc b/share/sbom/pkgconfig/xzegrep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/xzegrep.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: xzegrep
+Description: Grep compressed files
+URL: https://man.freebsd.org/cgi/man.cgi?query=xzegrep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/grep
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999 James Howard and Dag-Erling Smorgrav, 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org>, 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>, 2017 Kyle Evans <kevans@FreeBSD.org>, 2010 Dimitry Andric <dimitry@andric.com>, 2020 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, libbz2, libc, libcompiler_rt, libregex, libz
diff --git a/share/sbom/pkgconfig/xzfgrep.pc b/share/sbom/pkgconfig/xzfgrep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/xzfgrep.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: xzfgrep
+Description: Grep compressed files
+URL: https://man.freebsd.org/cgi/man.cgi?query=xzfgrep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/grep
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999 James Howard and Dag-Erling Smorgrav, 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org>, 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>, 2017 Kyle Evans <kevans@FreeBSD.org>, 2010 Dimitry Andric <dimitry@andric.com>, 2020 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, libbz2, libc, libcompiler_rt, libregex, libz
diff --git a/share/sbom/pkgconfig/xzgrep.pc b/share/sbom/pkgconfig/xzgrep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/xzgrep.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: xzgrep
+Description: Grep compressed files
+URL: https://man.freebsd.org/cgi/man.cgi?query=xzgrep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/grep
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999 James Howard and Dag-Erling Smorgrav, 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org>, 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>, 2017 Kyle Evans <kevans@FreeBSD.org>, 2010 Dimitry Andric <dimitry@andric.com>, 2020 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, libbz2, libc, libcompiler_rt, libregex, libz
diff --git a/share/sbom/pkgconfig/xzless.pc b/share/sbom/pkgconfig/xzless.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/xzless.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: xzless
+Description: Open-source file pager
+URL: https://www.greenwoodsoftware.com/less/
+Version: 679
+Source: https://www.greenwoodsoftware.com/less/less-679.tar.gz
+License: BSD-2-Clause
+Requires: libncurses
diff --git a/share/sbom/pkgconfig/yacc.pc b/share/sbom/pkgconfig/yacc.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/yacc.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: yacc
+Description: Parser generator designed to be compatible with Yacc
+URL: https://invisible-island.net/byacc/
+Version: 20240109
+Source: https://invisible-island.net/datafiles/release/byacc.tar.gz
+License: LicenseRef-scancode-public-domain
diff --git a/share/sbom/pkgconfig/yes.pc b/share/sbom/pkgconfig/yes.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/yes.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: yes
+Description: Be repetitively affirmative
+URL: https://man.freebsd.org/cgi/man.cgi?query=yes(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/yes
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1987, 1993 The Regents of the University of California
+Requires: csu, libc, libcapsicum, libcasper, libcompiler_rt
diff --git a/share/sbom/pkgconfig/yp_mkdb.pc b/share/sbom/pkgconfig/yp_mkdb.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/yp_mkdb.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: yp_mkdb
+Description: Generate the NIS databases
+URL: https://man.freebsd.org/cgi/man.cgi?query=yp_mkdb(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/yp_mkdb
+License: BSD-4-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause.b7404244.txt
+Copyright: 1995, 1996 Bill Paul <wpaul@ctr.columbia.edu>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ypbind.pc b/share/sbom/pkgconfig/ypbind.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ypbind.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ypbind
+Description: NIS domain binding daemon
+URL: https://man.freebsd.org/cgi/man.cgi?query=ypbind(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/ypbind
+License: BSD-4-Clause AND BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause.b7404244.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.687e6a5a.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.b5add324.txt
+Copyright: 1996, 1997 Bill Paul <wpaul@ctr.columbia.edu>, 2009, Sun Microsystems, Inc., 1984, Sun Microsystems, Inc., 1992/3 Theo de Raadt <deraadt@fsa.ca>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ypcat.pc b/share/sbom/pkgconfig/ypcat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ypcat.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ypcat
+Description: Print the values of all keys in a NIS database
+URL: https://man.freebsd.org/cgi/man.cgi?query=ypcat(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/ypcat
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt
+Copyright: 1992, 1993, 1996 Theo de Raadt <deraadt@theos.com>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ypchfn.pc b/share/sbom/pkgconfig/ypchfn.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ypchfn.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ypchfn
+Description: Add or change user database information
+URL: https://man.freebsd.org/cgi/man.cgi?query=ypchfn(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/chpass
+License: BSD-4-Clause AND BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause-UC.06c1e96a.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1993, 1994 The Regents of the University of California, 2002 Networks Associates Technology, Inc., 1990, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libcrypt, libutil
diff --git a/share/sbom/pkgconfig/ypchpass.pc b/share/sbom/pkgconfig/ypchpass.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ypchpass.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ypchpass
+Description: Add or change user database information
+URL: https://man.freebsd.org/cgi/man.cgi?query=ypchpass(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/chpass
+License: BSD-4-Clause AND BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause-UC.06c1e96a.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1993, 1994 The Regents of the University of California, 2002 Networks Associates Technology, Inc., 1990, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libcrypt, libutil
diff --git a/share/sbom/pkgconfig/ypchsh.pc b/share/sbom/pkgconfig/ypchsh.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ypchsh.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ypchsh
+Description: Add or change user database information
+URL: https://man.freebsd.org/cgi/man.cgi?query=ypchsh(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/chpass
+License: BSD-4-Clause AND BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause-UC.06c1e96a.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt
+Copyright: 1988, 1993, 1994 The Regents of the University of California, 2002 Networks Associates Technology, Inc., 1990, 1993, 1994 The Regents of the University of California
+Requires: csu, libc, libcompiler_rt, libcrypt, libutil
diff --git a/share/sbom/pkgconfig/ypinit.pc b/share/sbom/pkgconfig/ypinit.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ypinit.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ypinit
+Description: Build and install NIS databases
+URL: https://man.freebsd.org/cgi/man.cgi?query=ypinit(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/ypserv
+License: BSD-4-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause.b7404244.txt, ${pcfiledir}/LICENSES/BSD-4-Clause.40d29ce9.txt
+Copyright: 1995 Bill Paul <wpaul@ctr.columbia.edu>, 1996 Bill Paul <wpaul@ctr.columbia.edu>, 1995, 1996 Bill Paul <wpaul@ctr.columbia.edu>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ypldap.pc b/share/sbom/pkgconfig/ypldap.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ypldap.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ypldap
+Description: YP map server using LDAP backend
+URL: https://man.freebsd.org/cgi/man.cgi?query=ypldap(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/ypldap
+License: ISC AND NTP-0
+License.file: ${pcfiledir}/LICENSES/ISC.a506e8a5.txt, ${pcfiledir}/LICENSES/ISC.e07b4364.txt, ${pcfiledir}/LICENSES/NTP-0.2ff06890.txt
+Copyright: 2008 Pierre-Yves Ritschard <pyr@openbsd.org>, 2008 Alexander Schrijver <aschrijver@openbsd.org>, 2006, 2007 Marc Balmer <mbalmer@openbsd.org>, 2003-2008 Henning Brauer <henning@openbsd.org>, 2007 Reyk Floeter <reyk@vantronix.net>, 2006, 2007 Claudio Jeker <claudio@openbsd.org>, 2003, 2004 Henning Brauer <henning@openbsd.org>
+Requires: csu, libc, libcompiler_rt, libevent1, libopenbsd, librpcsvc, libutil
diff --git a/share/sbom/pkgconfig/ypmatch.pc b/share/sbom/pkgconfig/ypmatch.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ypmatch.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ypmatch
+Description: Print the values of one or more keys in a NIS database
+URL: https://man.freebsd.org/cgi/man.cgi?query=ypmatch(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/ypmatch
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt
+Copyright: 1992, 1993, 1996 Theo de Raadt <deraadt@theos.com>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/yppasswd.pc b/share/sbom/pkgconfig/yppasswd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/yppasswd.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: yppasswd
+Description: Modify a user's password
+URL: https://man.freebsd.org/cgi/man.cgi?query=yppasswd(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/passwd
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.5bebe47e.txt
+Copyright: 2002 Networks Associates Technologies, Inc.
+Requires: csu, libc, libcompiler_rt, libpam
diff --git a/share/sbom/pkgconfig/yppoll.pc b/share/sbom/pkgconfig/yppoll.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/yppoll.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: yppoll
+Description: Ask version of NIS map from NIS server
+URL: https://man.freebsd.org/cgi/man.cgi?query=yppoll(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/yppoll
+License: BSD-3-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-3-Clause.b5add324.txt
+Copyright: 1992, 1993 Theo de Raadt <deraadt@openbsd.org>, 1992, 1993 John Brezak
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/yppush.pc b/share/sbom/pkgconfig/yppush.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/yppush.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: yppush
+Description: Force propagation of updated NIS databases
+URL: https://man.freebsd.org/cgi/man.cgi?query=yppush(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/yppush
+License: BSD-4-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause.b7404244.txt
+Copyright: 1995 Bill Paul <wpaul@ctr.columbia.edu>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ypserv.pc b/share/sbom/pkgconfig/ypserv.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ypserv.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ypserv
+Description: NIS database server
+URL: https://man.freebsd.org/cgi/man.cgi?query=ypserv(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/ypserv
+License: BSD-4-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-4-Clause.b7404244.txt, ${pcfiledir}/LICENSES/BSD-4-Clause.40d29ce9.txt
+Copyright: 1995 Bill Paul <wpaul@ctr.columbia.edu>, 1996 Bill Paul <wpaul@ctr.columbia.edu>, 1995, 1996 Bill Paul <wpaul@ctr.columbia.edu>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ypset.pc b/share/sbom/pkgconfig/ypset.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ypset.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ypset
+Description: Tell ypbind(8) which NIS server process to use
+URL: https://man.freebsd.org/cgi/man.cgi?query=ypset(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/ypset
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt
+Copyright: 1992, 1993 Theo de Raadt <deraadt@theos.com>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/ypwhich.pc b/share/sbom/pkgconfig/ypwhich.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ypwhich.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ypwhich
+Description: Return hostname of NIS server of map master
+URL: https://man.freebsd.org/cgi/man.cgi?query=ypwhich(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/ypwhich
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt
+Copyright: 1992, 1993 Theo de Raadt <deraadt@theos.com>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/zcat.pc b/share/sbom/pkgconfig/zcat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zcat.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zcat
+Description: Compression/decompression tool using Lempel-Ziv coding (LZ77)
+URL: https://man.freebsd.org/cgi/man.cgi?query=zcat(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/gzip
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.2e42e2d8.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.88f437cf.txt, ${pcfiledir}/LICENSES/ISC.a506e8a5.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-sudo.e5838632.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt, ${pcfiledir}/LICENSES/Zlib.83bd71d4.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.715ec2cd.txt
+Copyright: 2018 The NetBSD Foundation, Inc., 2013-2018 Antonio Diaz Diaz, 2009 Xin LI <delphij@FreeBSD.org>, 2011 The NetBSD Foundation, Inc., 2003 Otto Moerbeek <otto@drijf.net>, 2022 Klara, Inc., 1985, 1986, 1992, 1993 The Regents of the University of California, 2003 Todd C. Miller <Todd.Miller@courtesan.com>, 2010 Joerg Sonnenberger <joerg@NetBSD.org>, 2006 The NetBSD Foundation, Inc., 1997, 1998, 2003, 2004, 2006, 2008, 2009, 2010, 2011, 2015, 2017 Matthew R. Green, 1997, 1998, 2003, 2004, 2006 Matthew R. Green
+Requires: csu, libc, libcompiler_rt, liblzma, libz, libzstd
diff --git a/share/sbom/pkgconfig/zcmp.pc b/share/sbom/pkgconfig/zcmp.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zcmp.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zcmp
+Description: Compare compressed files
+URL: https://man.freebsd.org/cgi/man.cgi?query=zcmp(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/gzip
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.2e42e2d8.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.88f437cf.txt, ${pcfiledir}/LICENSES/ISC.a506e8a5.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-sudo.e5838632.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt, ${pcfiledir}/LICENSES/Zlib.83bd71d4.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.715ec2cd.txt
+Copyright: 2018 The NetBSD Foundation, Inc., 2013-2018 Antonio Diaz Diaz, 2009 Xin LI <delphij@FreeBSD.org>, 2011 The NetBSD Foundation, Inc., 2003 Otto Moerbeek <otto@drijf.net>, 2022 Klara, Inc., 1985, 1986, 1992, 1993 The Regents of the University of California, 2003 Todd C. Miller <Todd.Miller@courtesan.com>, 2010 Joerg Sonnenberger <joerg@NetBSD.org>, 2006 The NetBSD Foundation, Inc., 1997, 1998, 2003, 2004, 2006, 2008, 2009, 2010, 2011, 2015, 2017 Matthew R. Green, 1997, 1998, 2003, 2004, 2006 Matthew R. Green
+Requires: csu, libc, libcompiler_rt, liblzma, libz, libzstd
diff --git a/share/sbom/pkgconfig/zdb.pc b/share/sbom/pkgconfig/zdb.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zdb.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zdb
+Description: Open-source storage platform
+URL: https://openzfs.org/wiki/Main_Page
+Version: 2.4.0-rc3
+License: CDDL-1.0
diff --git a/share/sbom/pkgconfig/zdiff.pc b/share/sbom/pkgconfig/zdiff.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zdiff.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zdiff
+Description: Compare compressed files
+URL: https://man.freebsd.org/cgi/man.cgi?query=zdiff(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/gzip
+License: BSD-2-Clause AND BSD-3-Clause AND ISC AND LicenseRef-scancode-public-domain AND LicenseRef-scancode-sudo AND Zlib
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.2e42e2d8.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.88f437cf.txt, ${pcfiledir}/LICENSES/ISC.a506e8a5.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-sudo.e5838632.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt, ${pcfiledir}/LICENSES/Zlib.83bd71d4.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.715ec2cd.txt
+Copyright: 2018 The NetBSD Foundation, Inc., 2013-2018 Antonio Diaz Diaz, 2009 Xin LI <delphij@FreeBSD.org>, 2011 The NetBSD Foundation, Inc., 2003 Otto Moerbeek <otto@drijf.net>, 2022 Klara, Inc., 1985, 1986, 1992, 1993 The Regents of the University of California, 2003 Todd C. Miller <Todd.Miller@courtesan.com>, 2010 Joerg Sonnenberger <joerg@NetBSD.org>, 2006 The NetBSD Foundation, Inc., 1997, 1998, 2003, 2004, 2006, 2008, 2009, 2010, 2011, 2015, 2017 Matthew R. Green, 1997, 1998, 2003, 2004, 2006 Matthew R. Green
+Requires: csu, libc, libcompiler_rt, liblzma, libz, libzstd
diff --git a/share/sbom/pkgconfig/zdump.pc b/share/sbom/pkgconfig/zdump.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zdump.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zdump
+Description: Time Zone Code
+URL: https://www.iana.org/time-zones
+Version: 2025b
+Source: https://data.iana.org/time-zones/releases/tzcode2025b.tar.gz
diff --git a/share/sbom/pkgconfig/zegrep.pc b/share/sbom/pkgconfig/zegrep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zegrep.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zegrep
+Description: Grep compressed files
+URL: https://man.freebsd.org/cgi/man.cgi?query=zegrep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/grep
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999 James Howard and Dag-Erling Smorgrav, 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org>, 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>, 2017 Kyle Evans <kevans@FreeBSD.org>, 2010 Dimitry Andric <dimitry@andric.com>, 2020 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, libbz2, libc, libcompiler_rt, libregex, libz
diff --git a/share/sbom/pkgconfig/zfgrep.pc b/share/sbom/pkgconfig/zfgrep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zfgrep.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zfgrep
+Description: Grep compressed files
+URL: https://man.freebsd.org/cgi/man.cgi?query=zfgrep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/grep
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999 James Howard and Dag-Erling Smorgrav, 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org>, 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>, 2017 Kyle Evans <kevans@FreeBSD.org>, 2010 Dimitry Andric <dimitry@andric.com>, 2020 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, libbz2, libc, libcompiler_rt, libregex, libz
diff --git a/share/sbom/pkgconfig/zforce.pc b/share/sbom/pkgconfig/zforce.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zforce.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zforce
+Description: Force gzip files to have a .gz suffix
+URL: https://man.freebsd.org/cgi/man.cgi?query=zforce(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/gzip
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.2e42e2d8.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.88f437cf.txt, ${pcfiledir}/LICENSES/ISC.a506e8a5.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-sudo.e5838632.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt, ${pcfiledir}/LICENSES/Zlib.83bd71d4.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.715ec2cd.txt
+Copyright: 2018 The NetBSD Foundation, Inc., 2013-2018 Antonio Diaz Diaz, 2009 Xin LI <delphij@FreeBSD.org>, 2011 The NetBSD Foundation, Inc., 2003 Otto Moerbeek <otto@drijf.net>, 2022 Klara, Inc., 1985, 1986, 1992, 1993 The Regents of the University of California, 2003 Todd C. Miller <Todd.Miller@courtesan.com>, 2010 Joerg Sonnenberger <joerg@NetBSD.org>, 2006 The NetBSD Foundation, Inc., 1997, 1998, 2003, 2004, 2006, 2008, 2009, 2010, 2011, 2015, 2017 Matthew R. Green, 1997, 1998, 2003, 2004, 2006 Matthew R. Green
+Requires: csu, libc, libcompiler_rt, liblzma, libz, libzstd
diff --git a/share/sbom/pkgconfig/zfs.pc b/share/sbom/pkgconfig/zfs.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zfs.pc
@@ -0,0 +1,13 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: zfs
+Description: Manage ZFS boot environments
+URL: https://man.freebsd.org/cgi/man.cgi?query=bectl(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/bectl
+License: Beerware AND BSD-2-Clause
+Copyright: 2017 Kyle J. Kneitinger <kyle@kneit.in>, 2018 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, libbe, libc, libcompiler_rt, libjail, libutil
diff --git a/share/sbom/pkgconfig/zfsbootcfg.pc b/share/sbom/pkgconfig/zfsbootcfg.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zfsbootcfg.pc
@@ -0,0 +1,14 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: zfsbootcfg
+Description: Specify zfsboot options for the next boot
+URL: https://man.freebsd.org/cgi/man.cgi?query=zfsbootcfg(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/zfsbootcfg
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt
+Copyright: 2016 Andriy Gapon <avg@FreeBSD.org>
+Requires: csu, libc, libcompiler_rt
diff --git a/share/sbom/pkgconfig/zfsd.pc b/share/sbom/pkgconfig/zfsd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zfsd.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zfsd
+Description: Open-source storage platform
+URL: https://openzfs.org/wiki/Main_Page
+Version: 2.4.0-rc3
+License: CDDL-1.0
diff --git a/share/sbom/pkgconfig/zgrep.pc b/share/sbom/pkgconfig/zgrep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zgrep.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zgrep
+Description: Grep compressed files
+URL: https://man.freebsd.org/cgi/man.cgi?query=zgrep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/grep
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999 James Howard and Dag-Erling Smorgrav, 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org>, 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>, 2017 Kyle Evans <kevans@FreeBSD.org>, 2010 Dimitry Andric <dimitry@andric.com>, 2020 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, bzip2, libc, libcompiler_rt, libregex, libz
diff --git a/share/sbom/pkgconfig/zhack.pc b/share/sbom/pkgconfig/zhack.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zhack.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zhack
+Description: Open-source storage platform
+URL: https://openzfs.org/wiki/Main_Page
+Version: 2.4.0-rc3
+License: CDDL-1.0
diff --git a/share/sbom/pkgconfig/zic.pc b/share/sbom/pkgconfig/zic.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zic.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zic
+Description: Time Zone Code
+URL: https://www.iana.org/time-zones
+Version: 2025b
+Source: https://data.iana.org/time-zones/releases/tzcode2025b.tar.gz
diff --git a/share/sbom/pkgconfig/zinject.pc b/share/sbom/pkgconfig/zinject.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zinject.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zinject
+Description: Open-source storage platform
+URL: https://openzfs.org/wiki/Main_Page
+Version: 2.4.0-rc3
+License: CDDL-1.0
diff --git a/share/sbom/pkgconfig/zless.pc b/share/sbom/pkgconfig/zless.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zless.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zless
+Description: Open-source file pager
+URL: https://www.greenwoodsoftware.com/less/
+Version: 679
+Source: https://www.greenwoodsoftware.com/less/less-679.tar.gz
+License: BSD-2-Clause
+Requires: libncurses
diff --git a/share/sbom/pkgconfig/zlib.pc b/share/sbom/pkgconfig/zlib.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zlib.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: zlib
+Description: zlib compression library
+URL: https://zlib.net
+Version: 1.3.1
+Source: https://github.com/madler/zlib/tree/develop
+License: Zlib
diff --git a/share/sbom/pkgconfig/zmore.pc b/share/sbom/pkgconfig/zmore.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zmore.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zmore
+Description: View compressed files
+URL: https://man.freebsd.org/cgi/man.cgi?query=zmore(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/gzip
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.2e42e2d8.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.88f437cf.txt, ${pcfiledir}/LICENSES/ISC.a506e8a5.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-sudo.e5838632.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt, ${pcfiledir}/LICENSES/Zlib.83bd71d4.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.715ec2cd.txt
+Copyright: 2018 The NetBSD Foundation, Inc., 2013-2018 Antonio Diaz Diaz, 2009 Xin LI <delphij@FreeBSD.org>, 2011 The NetBSD Foundation, Inc., 2003 Otto Moerbeek <otto@drijf.net>, 2022 Klara, Inc., 1985, 1986, 1992, 1993 The Regents of the University of California, 2003 Todd C. Miller <Todd.Miller@courtesan.com>, 2010 Joerg Sonnenberger <joerg@NetBSD.org>, 2006 The NetBSD Foundation, Inc., 1997, 1998, 2003, 2004, 2006, 2008, 2009, 2010, 2011, 2015, 2017 Matthew R. Green, 1997, 1998, 2003, 2004, 2006 Matthew R. Green
+Requires: csu, libc, libcompiler_rt, liblzma, libz, libzstd
diff --git a/share/sbom/pkgconfig/znew.pc b/share/sbom/pkgconfig/znew.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/znew.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: znew
+Description: Convert compressed files to gzipped files
+URL: https://man.freebsd.org/cgi/man.cgi?query=znew(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/gzip
+License: BSD-3-Clause AND BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.7aec3d10.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.2e42e2d8.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-public-domain.88f437cf.txt, ${pcfiledir}/LICENSES/ISC.a506e8a5.txt, ${pcfiledir}/LICENSES/BSD-3-Clause.791687bc.txt, ${pcfiledir}/LICENSES/LicenseRef-scancode-sudo.e5838632.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.33ad0b90.txt, ${pcfiledir}/LICENSES/Zlib.83bd71d4.txt, ${pcfiledir}/LICENSES/BSD-2-Clause.715ec2cd.txt
+Copyright: 2018 The NetBSD Foundation, Inc., 2013-2018 Antonio Diaz Diaz, 2009 Xin LI <delphij@FreeBSD.org>, 2011 The NetBSD Foundation, Inc., 2003 Otto Moerbeek <otto@drijf.net>, 2022 Klara, Inc., 1985, 1986, 1992, 1993 The Regents of the University of California, 2003 Todd C. Miller <Todd.Miller@courtesan.com>, 2010 Joerg Sonnenberger <joerg@NetBSD.org>, 2006 The NetBSD Foundation, Inc., 1997, 1998, 2003, 2004, 2006, 2008, 2009, 2010, 2011, 2015, 2017 Matthew R. Green, 1997, 1998, 2003, 2004, 2006 Matthew R. Green
+Requires: csu, libc, libcompiler_rt, liblzma, libz, libzstd
diff --git a/share/sbom/pkgconfig/zonectl.pc b/share/sbom/pkgconfig/zonectl.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zonectl.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zonectl
+Description: Shingled Magnetic Recording Zone Control utility
+URL: https://man.freebsd.org/cgi/man.cgi?query=zonectl(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/zonectl
+License: LicenseRef-scancode-intel-bsd-2-clause
+License.file: ${pcfiledir}/LICENSES/LicenseRef-scancode-intel-bsd-2-clause.b794004b.txt
+Copyright: 2015, 2016 Spectra Logic Corporation
+Requires: csu, libc, libcam, libcompiler_rt, libsbuf, libutil
diff --git a/share/sbom/pkgconfig/zpool.pc b/share/sbom/pkgconfig/zpool.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zpool.pc
@@ -0,0 +1,13 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: zpool
+Description: Manage ZFS boot environments
+URL: https://man.freebsd.org/cgi/man.cgi?query=bectl(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/sbin/bectl
+License: Beerware AND BSD-2-Clause
+Copyright: 2017 Kyle J. Kneitinger <kyle@kneit.in>, 2018 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, libbe, libc, libcompiler_rt, libjail, libutil
diff --git a/share/sbom/pkgconfig/zstd.pc b/share/sbom/pkgconfig/zstd.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zstd.pc
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+# Copyright(c) 2026 The FreeBSD Foundation.
+#
+Name: zstd
+Description: Zstandard is a fast compression algorithm
+URL: https://facebook.github.io/zstd/
+Version: 1.5.2
+Source: https://github.com/facebook/zstd
+License: BSD-3-Clause
diff --git a/share/sbom/pkgconfig/zstdcat.pc b/share/sbom/pkgconfig/zstdcat.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zstdcat.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zstdcat
+Description: Grep compressed files
+URL: https://man.freebsd.org/cgi/man.cgi?query=zstdegrep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/grep
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999 James Howard and Dag-Erling Smorgrav, 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org>, 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>, 2017 Kyle Evans <kevans@FreeBSD.org>, 2010 Dimitry Andric <dimitry@andric.com>, 2020 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, libbz2, libc, libcompiler_rt, libregex, libz
diff --git a/share/sbom/pkgconfig/zstdegrep.pc b/share/sbom/pkgconfig/zstdegrep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zstdegrep.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zstdegrep
+Description: Grep compressed files
+URL: https://man.freebsd.org/cgi/man.cgi?query=zstdegrep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/grep
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999 James Howard and Dag-Erling Smorgrav, 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org>, 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>, 2017 Kyle Evans <kevans@FreeBSD.org>, 2010 Dimitry Andric <dimitry@andric.com>, 2020 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, libbz2, libc, libcompiler_rt, libregex, libz
diff --git a/share/sbom/pkgconfig/zstdfgrep.pc b/share/sbom/pkgconfig/zstdfgrep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zstdfgrep.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zstdfgrep
+Description: Grep compressed files
+URL: https://man.freebsd.org/cgi/man.cgi?query=zstdfgrep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/grep
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999 James Howard and Dag-Erling Smorgrav, 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org>, 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>, 2017 Kyle Evans <kevans@FreeBSD.org>, 2010 Dimitry Andric <dimitry@andric.com>, 2020 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, libbz2, libc, libcompiler_rt, libregex, libz
diff --git a/share/sbom/pkgconfig/zstdgrep.pc b/share/sbom/pkgconfig/zstdgrep.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zstdgrep.pc
@@ -0,0 +1,14 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zstdgrep
+Description: Grep compressed files
+URL: https://man.freebsd.org/cgi/man.cgi?query=zstdgrep(1)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.bin/grep
+License: BSD-2-Clause
+License.file: ${pcfiledir}/LICENSES/BSD-2-Clause.543b1492.txt
+Copyright: 1999 James Howard and Dag-Erling Smorgrav, 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org>, 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>, 2017 Kyle Evans <kevans@FreeBSD.org>, 2010 Dimitry Andric <dimitry@andric.com>, 2020 Kyle Evans <kevans@FreeBSD.org>
+Requires: csu, libbz2, libc, libcompiler_rt, libregex, libz
diff --git a/share/sbom/pkgconfig/zstdless.pc b/share/sbom/pkgconfig/zstdless.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zstdless.pc
@@ -0,0 +1,12 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zstdless
+Description: Open-source file pager
+URL: https://www.greenwoodsoftware.com/less/
+Version: 679
+Source: https://www.greenwoodsoftware.com/less/less-679.tar.gz
+License: BSD-2-Clause
+Requires: libncurses
diff --git a/share/sbom/pkgconfig/zstdmt.pc b/share/sbom/pkgconfig/zstdmt.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zstdmt.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zstdmt
+Description: Zstandard is a fast compression algorithm
+URL: https://facebook.github.io/zstd/
+Version: 1.5.2
+Source: https://github.com/facebook/zstd
+License: BSD-3-Clause
diff --git a/share/sbom/pkgconfig/zstream.pc b/share/sbom/pkgconfig/zstream.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zstream.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zstream
+Description: Open-source storage platform
+URL: https://openzfs.org/wiki/Main_Page
+Version: 2.4.0-rc3
+License: CDDL-1.0
diff --git a/share/sbom/pkgconfig/zstreamdump.pc b/share/sbom/pkgconfig/zstreamdump.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zstreamdump.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zstreamdump
+Description: Open-source storage platform
+URL: https://openzfs.org/wiki/Main_Page
+Version: 2.4.0-rc3
+License: CDDL-1.0
diff --git a/share/sbom/pkgconfig/ztest.pc b/share/sbom/pkgconfig/ztest.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/ztest.pc
@@ -0,0 +1,10 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: ztest
+Description: Open-source storage platform
+URL: https://openzfs.org/wiki/Main_Page
+Version: 2.4.0-rc3
+License: CDDL-1.0
diff --git a/share/sbom/pkgconfig/zzz.pc b/share/sbom/pkgconfig/zzz.pc
new file mode 100644
--- /dev/null
+++ b/share/sbom/pkgconfig/zzz.pc
@@ -0,0 +1,11 @@
+# Copyright (c) 2026 The FreeBSD Foundation.
+#
+# SPDX-License-Identifier: BSD-2-Clause AND LicenseRef-FreeBSD-SBOM
+# SPDX-FileCopyrightText: 2026 The FreeBSD Foundation.
+#
+Name: zzz
+Description: Suspend an ACPI or APM system
+URL: https://man.freebsd.org/cgi/man.cgi?query=zzz(8)
+Version: ${FREEBSD_VERSION}
+Source: https://cgit.freebsd.org/src/tree/usr.sbin/zzz
+License: NOASSERTION
diff --git a/usr.bin/spdxtool/Makefile b/usr.bin/spdxtool/Makefile
--- a/usr.bin/spdxtool/Makefile
+++ b/usr.bin/spdxtool/Makefile
@@ -13,10 +13,6 @@
LIBADD= pkgconf
-.if defined(TOOLS_PREFIX)
-NO_SHARED= yes
-.endif
-
PKGCONFDIR= ${SRCTOP}/contrib/pkgconf
WARNS?= 3

File Metadata

Mime Type
text/plain
Expires
Wed, Jul 22, 4:06 PM (8 h, 24 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
35352781
Default Alt Text
D56474.diff (672 KB)

Event Timeline