Date: Fri, 20 Dec 2013 22:26:13 +0000 (UTC) From: Niclas Zeising <zeising@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337096 - head/Keywords Message-ID: <201312202226.rBKMQDJh076431@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: zeising Date: Fri Dec 20 22:26:13 2013 New Revision: 337096 URL: http://svnweb.freebsd.org/changeset/ports/337096 Log: Fix fontdir handling to work properly. Fix the name of mkfontdir and use correct paths. Modified: head/Keywords/fontsdir.yaml Modified: head/Keywords/fontsdir.yaml ============================================================================== --- head/Keywords/fontsdir.yaml Fri Dec 20 21:55:52 2013 (r337095) +++ head/Keywords/fontsdir.yaml Fri Dec 20 22:26:13 2013 (r337096) @@ -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?201312202226.rBKMQDJh076431>