Sophie

Sophie

distrib > Scientific%20Linux > 5x > x86_64 > by-pkgid > 1656d3dff7549fd0a924f7ab9a0ce747 > scriptlet

xorg-x11-fonts-misc-7.1-2.1.el5.noarch.rpm

POSTIN

/bin/sh
{
  FONTDIR=/usr/share/X11/fonts/misc
  mkfontdir $FONTDIR 
  # NOTE: We add the ":unscaled" suffix to avoid ugly bitmap fonts.
  /usr/sbin/chkfontpath -qa /usr/share/X11/fonts/misc:unscaled
  # FIXME: This should only be done on upgrades.
  # Remove the Speedo directory from xfs config as X.Org no longer provides
  # Speedo font support.
  /usr/sbin/chkfontpath -qr /usr/share/X11/fonts/Speedo
  fc-cache $FONTDIR
}
# &> /dev/null || :

POSTUN

/bin/sh
{
  # Rebuild fonts.dir when uninstalling package. (exclude the local, CID dirs)
  if [ "$1" = "0" -a -d /usr/share/X11/fonts/misc ]; then
    mkfontdir /usr/share/X11/fonts/misc
    # Only run fc-cache in the Type1 dir, gzipped pcf's take forever
    fc-cache /usr/share/X11/fonts/misc
  fi
}
# &> /dev/null || :