As described in bug #225125, japanese/font-mona has not been usable since the latest update of x11-fonts/libXfont (CVE-2017-16611). Because japanese/font-mona installs font files as symbolic links, and the latest x11-fonts/libXfont does not handle other than regular font files. * How to repeat ** Without the patch $ pkg info --show-name-only libXfont libXfont-1.5.4,2 # > 1.5.2,2 $ pkg install ja-font-mona $ xset fp rehash $ xlsfonts -fn monak12 monak12 $ xlsfonts -ll -fn monak12 xlsfonts: unable to get info about font "monak12" $ ** With the patch $ xset fp+ /usr/local/share/fonts/mona $ xlsfonts -fn monak12 monak12 $ xlsfonts -ll -fn monak12 name: monak12 direction: left to right indexing: matrix rows: 0x21 thru 0x7c (33 thru 124) columns: 0x21 thru 0x7e (33 thru 126) all chars exist: no default char: 0x2126 (8486) ascent: 10 descent: 2 font type: Proportional (min and max widths not equal) bounds: width left right asc desc attr keysym min 3 0 3 10 2 0x0000 max 12 0 12 10 2 0x0000 properties: 22 FONTNAME_REGISTRY FOUNDRY Mona FAMILY_NAME Gothic WEIGHT_NAME Medium SLANT R SETWIDTH_NAME Normal ADD_STYLE_NAME PIXEL_SIZE 12 POINT_SIZE 110 RESOLUTION_X 75 RESOLUTION_Y 75 SPACING P AVERAGE_WIDTH 120 CHARSET_REGISTRY JISX0208.1990 CHARSET_ENCODING 0 COPYRIGHT Public Domain _XMBDFED_INFO 499 FONT -Mona-Gothic-Medium-R-Normal--12-110-75-75-P-120-JISX0208.1990-0 WEIGHT 10 RESOLUTION 103 X_HEIGHT 10 QUAD_WIDTH 7 $ * How to fix (1) Install font files to ${FONTSDIR} instead of ${DATADIR}. (2) Stop to make symbolic links from the font files to ${PREFIX}/share/fonts/misc/, which is found in the default font path. (3) Add pkg-message.in to display additional font path settings (Copied from head/japanese/k10, r397891 with typo fix).
Created attachment 191408 [details] A patch for japanese/font-mona
Created attachment 191413 [details] A patch for japanese/font-mona The old one has a typo.
Created attachment 191414 [details] poudriere testport log with the patch (japanese/font-mona)
A commit references this bug: Author: nobutaka Date: Sun Mar 11 14:57:29 UTC 2018 New revision: 464177 URL: https://svnweb.freebsd.org/changeset/ports/464177 Log: - Install font files to ${FONTSDIR} instead of ${DATADIR}. - Stop to make symbolic links from the font files to ${PREFIX}/share/fonts/misc/, which is found in the default font path, because recent libXfont does not follow symbolic links. - Add pkg-message.in to show additional font path settings. - Remove unnecessary pkg-install.in. - Bump PORTREVISION. PR: 225125 [1], 226519 [2] Submitted by: WATANABE Kazuhiro <CQG00620@nifty.ne.jp> [2] Reported by: Shigeharu TAKENO <shige@iee.niit.ac.jp> [1] Changes: head/japanese/font-mona/Makefile head/japanese/font-mona/files/patch-Makefile head/japanese/font-mona/files/pkg-install.in head/japanese/font-mona/files/pkg-message.in head/japanese/font-mona/pkg-plist
I have committed your patch. Thanks!