# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ ECLASS=font EXPORT_FUNCTIONS pkg_postinst pkg_postrm INHERITED="$INHERITED $ECLASS" DESCRIPTION="Based on the ${ECLASS} eclass" DEPEND="media-fonts/chkfontpath" font_pkg_postinst() { if [ -n "${FONTPATH}" -a -x /usr/X11R6/bin/chkfontpath ] ; then for fp in ${FONTPATH} do einfo "Adding ${fp} to XF86Config and xfs..." /usr/X11R6/bin/chkfontpath -qa ${fp} done fi } font_pkg_postrm() { if [ -n "${FONTPATH}" -a -x /usr/X11R6/bin/chkfontpath ] ; then for fp in "${FONTPATH}" do einfo "Removing ${fp} from XF86Config and xfs..." /usr/X11R6/bin/chkfontpath -qr ${fp} done fi }