textproc/groff needed for man pages?

Neither of those exist.

Code:
SHELL=/usr/local/bin/bash
LSCOLORS=ExGxFxdxCxDxDxhbadExEx
EDITOR=/usr/local/bin/nano
PWD=/home/<username>
LOGNAME=<username>
HOME=/home/<username>
SSH_CONNECTION=xx.xx.xx.xx
TERM=xterm
USER=<username>
SHLVL=1
SSH_CLIENT=xx.xx.xx.xx
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/home/<username>/bin
BLOCKSIZE=K
MAIL=Mail queue is empty
SSH_TTY=/dev/pts/0
_=/usr/bin/env
 
Code:
$ man -P more screen
This manpage needs groff(1) to be rendered
First install groff(1):
pkg install groff

This only started to happen after upgrading to FreeBSD 12.
 
There are two things happening:
  • groff was removed from base system in 12.0
  • man uses mandoc(1) for rendering now, and before displaying the page, it checks that there are no reported by mandoc, and if errors are reported, man fallbacks to using groff (from ports for 12.0)
 
Back
Top