svn commit: r337096 - head/Keywords
Niclas Zeising
zeising at FreeBSD.org
Fri Dec 20 22:26:14 UTC 2013
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
More information about the svn-ports-all
mailing list