mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
1d45334d44
Fix the name of mkfontdir and use correct paths.
18 lines
495 B
YAML
18 lines
495 B
YAML
# $FreeBSD$
|
|
#
|
|
# MAINTAINER: x11@FreeBSD.org
|
|
|
|
actions: [dirrmtry]
|
|
post-install: |
|
|
mkfontscale %D/%@ 2>/dev/null || true
|
|
mkfontdir %D/%@ 2>/dev/null || true
|
|
post-deinstall: |
|
|
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 %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
|