From owner-svn-ports-head@freebsd.org Wed Jul 27 11:57:46 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 0D323BA4EAA; Wed, 27 Jul 2016 11:57:46 +0000 (UTC) (envelope-from tijl@freebsd.org) Received: from mailrelay110.isp.belgacom.be (mailrelay110.isp.belgacom.be [195.238.20.137]) (using TLSv1.2 with cipher RC4-SHA (128/128 bits)) (Client CN "relay.skynet.be", Issuer "GlobalSign Organization Validation CA - SHA256 - G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F0BAB1594; Wed, 27 Jul 2016 11:57:44 +0000 (UTC) (envelope-from tijl@freebsd.org) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: =?us-ascii?q?A2AgBQB0oJhX/0/dg21dgz9JDW0PuH6Bf?= =?us-ascii?q?SSFeQKBMDkUAQEBAQEBAV0nQQ4BhAwBAQQBOhweBQULCw4GBAkaCw8qHgYTiCk?= =?us-ascii?q?MCrttAQEBAQEBAQMBAQEBAQEBGwWKd4E5gweFWwWZMYYYiFpzjleMLYN4HjaCH?= =?us-ascii?q?SaBNzoyhlaBawEBAQ?= Received: from 79.221-131-109.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([109.131.221.79]) by relay.skynet.be with ESMTP; 27 Jul 2016 13:56:30 +0200 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.15.2/8.15.2) with ESMTP id u6RBuT8U026964; Wed, 27 Jul 2016 13:56:30 +0200 (CEST) (envelope-from tijl@FreeBSD.org) Date: Wed, 27 Jul 2016 13:56:29 +0200 From: Tijl Coosemans To: Jan Beich Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r419066 - in head: chinese/CJKUnifonts chinese/CNS11643-font chinese/arphicttf chinese/fireflyttf chinese/moettf chinese/opendesktop-fonts chinese/ttfm vietnamese/urwvn vietnamese/vietu... Message-ID: <20160727135629.749e03e8@kalimero.tijl.coosemans.org> In-Reply-To: <201607252110.u6PLAPeW098062@repo.freebsd.org> References: <201607252110.u6PLAPeW098062@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit 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: Wed, 27 Jul 2016 11:57:46 -0000 On Mon, 25 Jul 2016 21:10:25 +0000 (UTC) Jan Beich wrote: > Author: jbeich > Date: Mon Jul 25 21:10:25 2016 > New Revision: 419066 > URL: https://svnweb.freebsd.org/changeset/ports/419066 > > Log: > chinese/ttfm: don't touch user font cache on install > > This matches USES=fonts (@fc, @fcfontsdir) behavior. > > PR: 207263 > MFH: 2016Q3 > > Modified: > head/chinese/CJKUnifonts/Makefile (contents, props changed) > head/chinese/CNS11643-font/Makefile (contents, props changed) > head/chinese/arphicttf/Makefile (contents, props changed) > head/chinese/fireflyttf/Makefile (contents, props changed) > head/chinese/moettf/Makefile (contents, props changed) > head/chinese/opendesktop-fonts/Makefile (contents, props changed) > head/chinese/ttfm/Makefile.ttf (contents, props changed) > head/vietnamese/urwvn/Makefile (contents, props changed) > head/vietnamese/vietunicode-hannom/Makefile (contents, props changed) > head/vietnamese/vietunicode-trichlor/Makefile (contents, props changed) > head/vietnamese/vietunicode-web1/Makefile (contents, props changed) > > Modified: head/chinese/ttfm/Makefile.ttf > ============================================================================== > --- head/chinese/ttfm/Makefile.ttf Mon Jul 25 21:10:11 2016 (r419065) > +++ head/chinese/ttfm/Makefile.ttf Mon Jul 25 21:10:25 2016 (r419066) > @@ -63,7 +63,7 @@ do-install-ttf: > .endfor > .if ${PORT_OPTIONS:MX11} > @${ECHO_MSG} "===> Running fc-cache" > - -@${LOCALBASE}/bin/fc-cache -f -v ${STAGEDIR}${XFONTSDIR} > + -@${LOCALBASE}/bin/fc-cache -f -s -v ${STAGEDIR}${XFONTSDIR} > .endif Is it really necessary to run fc-cache in STAGEDIR? > add-plist-post: add-plist-ttf > @@ -82,8 +82,8 @@ add-plist-ttf: > . endfor > .endfor > .if ${PORT_OPTIONS:MX11} > - @${ECHO_CMD} "@unexec ${LOCALBASE}/bin/fc-cache -f -v ${XFONTSDIR} || true" >> ${TMPPLIST} > - @${ECHO_CMD} "@exec ${LOCALBASE}/bin/fc-cache -f -v ${XFONTSDIR} || true" >> ${TMPPLIST} > + @${ECHO_CMD} "@unexec ${LOCALBASE}/bin/fc-cache -f -s -v ${XFONTSDIR} || true" >> ${TMPPLIST} > + @${ECHO_CMD} "@exec ${LOCALBASE}/bin/fc-cache -f -s -v ${XFONTSDIR} || true" >> ${TMPPLIST} > @${ECHO_CMD} "@unexec find ${XFONTSDIR} -size -3c -delete || true" >> ${TMPPLIST} > .endif