From owner-svn-ports-head@freebsd.org Thu Oct 22 06:15:30 2015 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 87B42A1C30C; Thu, 22 Oct 2015 06:15:30 +0000 (UTC) (envelope-from hrs@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 3414C1AC3; Thu, 22 Oct 2015 06:15:30 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9M6FTcr070304; Thu, 22 Oct 2015 06:15:29 GMT (envelope-from hrs@FreeBSD.org) Received: (from hrs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9M6FSwc070300; Thu, 22 Oct 2015 06:15:28 GMT (envelope-from hrs@FreeBSD.org) Message-Id: <201510220615.t9M6FSwc070300@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: hrs set sender to hrs@FreeBSD.org using -f From: Hiroki Sato Date: Thu, 22 Oct 2015 06:15:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399948 - in head/japanese: font-elisa10 font-elisa10/files font-elisa8 font-elisa8/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.20 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, 22 Oct 2015 06:15:30 -0000 Author: hrs Date: Thu Oct 22 06:15:28 2015 New Revision: 399948 URL: https://svnweb.freebsd.org/changeset/ports/399948 Log: Fix a bug in Makefile.in which installed a BDF file as a gzip-compressed PCF. Submitted by: Yasuhito FUTATSUKI PR: 203414 Modified: head/japanese/font-elisa10/Makefile head/japanese/font-elisa10/files/Makefile.in head/japanese/font-elisa8/Makefile head/japanese/font-elisa8/files/Makefile.in Modified: head/japanese/font-elisa10/Makefile ============================================================================== --- head/japanese/font-elisa10/Makefile Thu Oct 22 03:47:23 2015 (r399947) +++ head/japanese/font-elisa10/Makefile Thu Oct 22 06:15:28 2015 (r399948) @@ -2,6 +2,7 @@ PORTNAME= elisa10 PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= japanese x11-fonts MASTER_SITES= http://www.wheel.gr.jp/~dai/software/ PKGNAMEPREFIX= ja-font- Modified: head/japanese/font-elisa10/files/Makefile.in ============================================================================== --- head/japanese/font-elisa10/files/Makefile.in Thu Oct 22 03:47:23 2015 (r399947) +++ head/japanese/font-elisa10/files/Makefile.in Thu Oct 22 06:15:28 2015 (r399948) @@ -13,7 +13,7 @@ all: ${F}.pcf.gz .endfor .for F in ${SRCS:R} -${DESTDIR}%%DATADIR%%/${F}.pcf.gz: ${F}.bdf +${DESTDIR}%%DATADIR%%/${F}.pcf.gz: ${F}.pcf.gz mkdir -p ${DESTDIR}%%DATADIR%% ${BSD_INSTALL_DATA} ${.ALLSRC} ${.TARGET} Modified: head/japanese/font-elisa8/Makefile ============================================================================== --- head/japanese/font-elisa8/Makefile Thu Oct 22 03:47:23 2015 (r399947) +++ head/japanese/font-elisa8/Makefile Thu Oct 22 06:15:28 2015 (r399948) @@ -3,6 +3,7 @@ PORTNAME= elisa8 PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= japanese x11-fonts MASTER_SITES= http://www.bsdbbq.org/~toshi/distfiles/ PKGNAMEPREFIX= ja-font- Modified: head/japanese/font-elisa8/files/Makefile.in ============================================================================== --- head/japanese/font-elisa8/files/Makefile.in Thu Oct 22 03:47:23 2015 (r399947) +++ head/japanese/font-elisa8/files/Makefile.in Thu Oct 22 06:15:28 2015 (r399948) @@ -13,7 +13,7 @@ all: ${F}.pcf.gz .endfor .for F in ${SRCS:R} -${DESTDIR}%%DATADIR%%/${F}.pcf.gz: ${F}.bdf +${DESTDIR}%%DATADIR%%/${F}.pcf.gz: ${F}.pcf.gz mkdir -p ${DESTDIR}%%DATADIR%% ${BSD_INSTALL_DATA} ${.ALLSRC} ${.TARGET}