From owner-svn-ports-head@freebsd.org Thu Jul 21 14:04:33 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C33AABA053D; Thu, 21 Jul 2016 14:04:33 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9DCB41BB7; Thu, 21 Jul 2016 14:04:33 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6LE4Wa5082415; Thu, 21 Jul 2016 14:04:32 GMT (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6LE4WTb082413; Thu, 21 Jul 2016 14:04:32 GMT (envelope-from ume@FreeBSD.org) Message-Id: <201607211404.u6LE4WTb082413@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ume set sender to ume@FreeBSD.org using -f From: Hajimu UMEMOTO Date: Thu, 21 Jul 2016 14:04:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418874 - in head/japanese/font-nasu: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jul 2016 14:04:33 -0000 Author: ume Date: Thu Jul 21 14:04:32 2016 New Revision: 418874 URL: https://svnweb.freebsd.org/changeset/ports/418874 Log: Generate better fonts.dir for Japanese. Added: head/japanese/font-nasu/files/pkg-install.in (contents, props changed) Modified: head/japanese/font-nasu/Makefile Modified: head/japanese/font-nasu/Makefile ============================================================================== --- head/japanese/font-nasu/Makefile Thu Jul 21 13:58:57 2016 (r418873) +++ head/japanese/font-nasu/Makefile Thu Jul 21 14:04:32 2016 (r418874) @@ -2,7 +2,7 @@ PORTNAME= nasu PORTVERSION= 20141215 -#PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= japanese x11-fonts MASTER_SITES= SOURCEFORGE_JP MASTER_SITE_SUBDIR=users/7/7587 @@ -14,10 +14,13 @@ COMMENT= Nasu Japanese TrueType fonts LICENSE= APACHE20 -USES= fonts zip +USES= fonts:fc zip FONTNAME= nasu NO_ARCH= yes NO_BUILD= yes +PKGINSTALL= ${WRKDIR}/pkg-install +PKGDEINSTALL= ${WRKDIR}/pkg-install +SUB_FILES= pkg-install WRKSRC= ${WRKDIR}/${DISTNAME:C/-//} PORTDOCS= * Added: head/japanese/font-nasu/files/pkg-install.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/japanese/font-nasu/files/pkg-install.in Thu Jul 21 14:04:32 2016 (r418874) @@ -0,0 +1,105 @@ +#!/bin/sh +# $FreeBSD$ + +catfontsdir() +{ + while read _IN + do + case "${_IN}" in + *-adobe-nasu-*|*-adobe-nasum-*|[0-9]*|"") ;; + *) echo ${_IN} ;; + esac + done +} + +ROMA="" +BOLD="ds=y" +ITAL="ai=0.15" +OBLI="ai=0.15" +RITA="ai=0.08" +ROBL="ai=0.08" + +make_xlfd() +{ + _enc=$1 + _file=$2 + _vendor=$3 + _fname=$4 + _poc=$5 + _weight=$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 -- "" ${_weight}-r \ + ${ITAL} ${_weight}-i \ + ${OBLI} ${_weight}-o \ + ${RITA} ${_weight}-ri \ + ${ROBL} ${_weight}-ro + while [ $# != 0 ]; do + _prefix="${PFIX}:$1"; shift + _variant=$1; shift + [ ${index_type} = "scale" -a ${_prefix} != ":" ] && continue + printf "%s:%s -%s-%s-%s-normal--0-0-0-0-%s-0-%s\n" \ + $_prefix $_file $_vendor "$_fname" $_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 jisx0208.1997-0 jisx0213.2004-1 + do + make_xlfd $ENC Nasu-Regular-20141215.ttf adobe "nasu" p medium + make_xlfd $ENC Nasu-Bold-20141215.ttf adobe "nasu" p bold + make_xlfd $ENC NasuM-Regular-20141215.ttf adobe "nasum" c medium + make_xlfd $ENC NasuM-Bold-20141215.ttf adobe "nasum" c bold + done +} + +nfonts() +{ + _L=0; while read _IN; do _L=$((${_L}+1)); done; echo ${_L} +} + +install_fontsdir() +{ + index_type=${1:-"dir"} + index="fonts.${index_type}" + tmpfile="${index}.tmp" + touch ${index} + (catfontsdir < ${index}; addentries ${index_type}) > ${tmpfile} + nfonts < ${tmpfile} > ${index} + cat ${tmpfile} >> ${index} + rm -f ${tmpfile} +} + +deinstall_fontsdir() +{ + index_type=${1:-"dir"} + index="fonts.${index_type}" + tmpfile="${index}.tmp" + catfontsdir < ${index} > ${tmpfile} + nfonts < ${tmpfile} > ${index} + cat ${tmpfile} >> ${index} + rm -f ${tmpfile} + if [ -r ${index} -a $(wc -l < ${index}) = 1 ]; then + rm -f ${index} + fi +} + +case "$2" in +POST-INSTALL) + cd %%FONTSDIR%% + install_fontsdir dir + install_fontsdir scale + ;; +POST-DEINSTALL) + cd %%FONTSDIR%% + deinstall_fontsdir dir + deinstall_fontsdir scale + ;; +esac