# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ MY_P=vgafonts DESCRIPTION="X ANSI Fonts including vga, sabvga, fkp and nexus" HOMEPAGE="http://home.earthlink.net/~us5zahns/enl/ansifont.html" SRC_URI="http://home.earthlink.net/~us5zahns/enl/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="" S=${WORKDIR}/${MY_P} DEPEND="virtual/x11 sys-apps/gzip app-arch/ncompress" update_xfindex() { ebegin "Updating font index" mkfontdir -- /usr/X11R6/lib/X11/fonts/misc/ > /dev/null 2>&1 eend if [ "${DISPLAY}" != "" ] then ebegin "Rehasing font index" xset fp rehash eend fi } src_install() { insinto /usr/X11R6/lib/X11/fonts/misc/ ebegin "Compressing fonts" uncompress *.Z gzip -9 *.pcf *.bdf *.fnt eend doins *.gz dodoc README* } pkg_postinst() { update_xfindex } pkg_postrm() { update_xfindex }