From owner-svn-ports-all@freebsd.org Sat Sep 12 23:13:07 2015 Return-Path: Delivered-To: svn-ports-all@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 17092A02B1E; Sat, 12 Sep 2015 23:13:07 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 03A251DCB; Sat, 12 Sep 2015 23:13:07 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8CND6D3001156; Sat, 12 Sep 2015 23:13:06 GMT (envelope-from hrs@FreeBSD.org) Received: (from hrs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8CND6fb001154; Sat, 12 Sep 2015 23:13:06 GMT (envelope-from hrs@FreeBSD.org) Message-Id: <201509122313.t8CND6fb001154@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: hrs set sender to hrs@FreeBSD.org using -f From: Hiroki Sato Date: Sat, 12 Sep 2015 23:13:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r396784 - in head/japanese/font-ipa: . 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-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Sep 2015 23:13:07 -0000 Author: hrs Date: Sat Sep 12 23:13:05 2015 New Revision: 396784 URL: https://svnweb.freebsd.org/changeset/ports/396784 Log: Fix fonts.dir. It was totally broken since r381876. Modified: head/japanese/font-ipa/Makefile head/japanese/font-ipa/files/pkg-install.in Modified: head/japanese/font-ipa/Makefile ============================================================================== --- head/japanese/font-ipa/Makefile Sat Sep 12 22:26:35 2015 (r396783) +++ head/japanese/font-ipa/Makefile Sat Sep 12 23:13:05 2015 (r396784) @@ -2,7 +2,7 @@ PORTNAME= ipa PORTVERSION= 00303 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= japanese x11-fonts MASTER_SITES= http://info.openlab.ipa.go.jp/ipafont/fontdata/ PKGNAMEPREFIX= ja-font- Modified: head/japanese/font-ipa/files/pkg-install.in ============================================================================== --- head/japanese/font-ipa/files/pkg-install.in Sat Sep 12 22:26:35 2015 (r396783) +++ head/japanese/font-ipa/files/pkg-install.in Sat Sep 12 23:13:05 2015 (r396784) @@ -1,8 +1,6 @@ #!/bin/sh # $FreeBSD$ -FONTSDIR=%%FONTSDIR%%/OTF - catfontsdir () { while read _IN @@ -77,7 +75,7 @@ nfonts () case "$2" in POST-INSTALL) - cd ${FONTSDIR} + cd %%FONTSDIR%% touch fonts.dir (catfontsdir < fonts.dir; addentries) > fonts.dir.tmp nfonts < fonts.dir.tmp > fonts.dir @@ -85,7 +83,7 @@ POST-INSTALL) rm -f fonts.dir.tmp ;; POST-DEINSTALL) - cd ${FONTSDIR} + cd %%FONTSDIR%% catfontsdir < fonts.dir > fonts.dir.tmp nfonts < fonts.dir.tmp > fonts.dir cat fonts.dir.tmp >> fonts.dir