aboutsummaryrefslogtreecommitdiff
path: root/Keywords/fontsdir.ucl
blob: d4974074f448f96d1dab2ba73209d993b044e99a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# $FreeBSD$
#
# MAINTAINER: x11@FreeBSD.org

actions: [dirrmtry]
post-install: <<EOD
  mkfontscale %D/%@ 2>/dev/null || true
  mkfontdir %D/%@ 2>/dev/null || true
EOD
post-deinstall: <<EOD
  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
EOD