#!/bin/sh # $FreeBSD: head/japanese/font-mplus-outline/files/pkg-install.in 397494 2015-09-21 14:39:18Z hrs $ catfontsdir () { while read _IN do case "${_IN}" in *-mplus-*|[0-9]*|"") ;; *) echo ${_IN} ;; esac done } ROMA="" ITAL="ai=0.15" OBLI="ai=0.15" RITA="ai=0.08" ROBL="ai=0.08" make_xlfd() { _enc=$1 _file=$2 _vendor=$3 _weight=$4 _fname=$5 _poc=$6 case "${_poc}:${_enc}" in p:jisx0201.1976-*) PFIX="bw=0.5" ;; c:jisx0201.1976-*) PFIX="bw=0.5" ;; p:*) PFIX="" ;; c:*) PFIX="" ;; esac set -- "${ROMA}" r \ ${ITAL} i \ ${OBLI} o \ ${RITA} ri \ ${ROBL} ro; while [ $# != 0 ]; do _prefix="${PFIX}:$1"; shift _variant=$1; shift printf "%s:%s -%s-%s-%s-%s-normal--0-0-0-0-%s-0-%s\n" \ $_prefix $_file $_vendor $_fname $_weight $_variant $_poc $_enc done | sed -e 's,::,:,g' -e 's,^:,,' } addentries () { for ENC in iso8859-1 iso10646-1 jisx0201.1976-0 jisx0208.1983-0 jisx0208.1990-0 do for W in black bold heavy light medium regular thin do make_xlfd $ENC mplus-1c-${W}.ttf mplus $W 1c p make_xlfd $ENC mplus-2c-${W}.ttf mplus $W 2c p make_xlfd $ENC mplus-1p-${W}.ttf mplus $W 1p p make_xlfd $ENC mplus-2p-${W}.ttf mplus $W 2p p make_xlfd $ENC mplus-1m-${W}.ttf mplus $W 1m c make_xlfd $ENC mplus-1mn-${W}.ttf mplus $W 1mn c make_xlfd $ENC mplus-2m-${W}.ttf mplus $W 2m c done done } nfonts () { _L=0; while read _IN; do _L=$((${_L}+1)); done; echo ${_L} } case "$2" in POST-INSTALL) cd %%FONTSDIR%% touch fonts.dir (catfontsdir < fonts.dir; addentries) > fonts.dir.tmp nfonts < fonts.dir.tmp > fonts.dir cat fonts.dir.tmp >> fonts.dir rm -f fonts.dir.tmp ;; DEINSTALL) cd %%FONTSDIR%% catfontsdir < fonts.dir > fonts.dir.tmp nfonts < fonts.dir.tmp > fonts.dir cat fonts.dir.tmp >> fonts.dir rm -f fonts.dir.tmp if [ -r fonts.dir -a `wc -l < fonts.dir` = 1 ]; then rm -f fonts.dir fi ;; esac