Created attachment 191805 [details] Fix man pages generation for tinc Tinc port installs two man pages, but both of them are empty. $ gzip -l /usr/local/man/man8/tincd.8.gz compressed uncompressed ratio uncompressed_name 20 0 -99.9% /usr/local/man/man8/tincd.8 $ gzip -l /usr/local/man/man5/tinc.conf.5.gz compressed uncompressed ratio uncompressed_name 20 0 -99.9% /usr/local/man/man5/tinc.conf.5 The problem is in the Makefile of tinc. It causes sed to read input files from (empty) stdin and write empty outputs because our make implementation doesn't recognize '$<' in non-suffix rules. Upstream has fixed the problem in git, but no releases has been made since the fix was committed.
A commit references this bug: Author: dinoex Date: Mon Apr 2 06:13:32 UTC 2018 New revision: 466201 URL: https://svnweb.freebsd.org/changeset/ports/466201 Log: - fix content of manpages PR: 226917 Changes: head/security/tinc/Makefile head/security/tinc/files/patch-doc-Makefile.am
Commited, Thanks.