Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Dec 2013 22:39:09 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r337098 - branches/2014Q1/Keywords
Message-ID:  <201312202239.rBKMd9Iu081009@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: antoine
Date: Fri Dec 20 22:39:09 2013
New Revision: 337098
URL: http://svnweb.freebsd.org/changeset/ports/337098

Log:
  MFH: r337096
  
  Fix fontdir handling to work properly.
  
  Fix the name of mkfontdir and use correct paths.
  
  Approved by:	portmgr (implicit)

Modified:
  branches/2014Q1/Keywords/fontsdir.yaml
Directory Properties:
  branches/2014Q1/   (props changed)

Modified: branches/2014Q1/Keywords/fontsdir.yaml
==============================================================================
--- branches/2014Q1/Keywords/fontsdir.yaml	Fri Dec 20 22:33:05 2013	(r337097)
+++ branches/2014Q1/Keywords/fontsdir.yaml	Fri Dec 20 22:39:09 2013	(r337098)
@@ -5,13 +5,13 @@
 actions: [dirrmtry]
 post-install: |
   mkfontscale %D/%@ 2>/dev/null || true
-  mkfontsdir %D/%@ 2>/dev/null || true
+  mkfontdir %D/%@ 2>/dev/null || true
 post-deinstall: |
-  mkfontscale %@ 2>/dev/null || true
+  mkfontscale %D/%@ 2>/dev/null || true
   if [ -e %D/%@/fonts.scale -a "`stat -f '%%z' %D/%@/fonts.scale 2>/dev/null`" = '2' ]; then
     rm %D/%@/fonts.scale
   fi
-  mkfontdir %@ 2>/dev/null || true
-  if [ -e %D/%@/fonts.dir -a "`stat -f '%%z' %D/%@§fonts.dir 2>/dev/null`" = '2' ]; then
+  mkfontdir %D/%@ 2>/dev/null || true
+  if [ -e %D/%@/fonts.dir -a "`stat -f '%%z' %D/%@/fonts.dir 2>/dev/null`" = '2' ]; then
     rm %D/%@/fonts.dir
   fi



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312202239.rBKMd9Iu081009>