Some random FreeBSD Ports information for future me
- Add
BATCH=YES
to prevent questions and dialog4ports(1) from slowing you down.
config
to force a configuration display/choice (even if BATCH=YES has been defined)fetch
andfetch-recursive
to download the source packages if not cachedinstall
andreinstall
to install and force-reinstall the port and register with package databasedeinstall
to uninstall/remove the port and de-register from package databasebuild-depends-list
,run-depends-list
,all-depends-list
to just list the names of the dependanciesclean
anddistclean
Remove (source code or distfiles) of port and dependanciessearch
to search the INDEX file for akey
orname
value (e.g.make search key=fido
)depends
to make all of the dependancies. This can be very slow if you end up having to compile things like compilers or build tools on top of other ports.
which
to determine what packagename impacts which installed binary. (e.g.pkg which $(which curl)
orpkg which $SHELL
orpkg which /usr/local/bin/git
)info
to determing what options, and overview package metadata (e.g.pkg info gnupg
)update
to fetch the latest pkg catalog database as per configured repos (pkg config repos_dir
)audit -F
to check for known security vulnerabilities on installed packages
By default, freebsd ports has make depends
and make build-depends-list
, but nothing to install the build dependancies from binary pkg
packages.
I use this to avoid having to build a large dependancy list of packages all from source when I only want to build a single package from source.
bld_dep_list="$(make build-depends-list | sed s/\\\/usr\\\/ports\\\///g)"
pkg install ${bld_dep_list}