# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ IUSE="X aalib svga fbcon directfb" S="${WORKDIR}/${P}" DESCRIPTION="Fast and safe graphics and drivers for about any graphics card to the Linux kernel (sometimes)" SRC_URI="http://www.ggi-project.org/ftp/ggi/v2.0/${P}.src.tar.bz2" HOMEPAGE="http://www.ggi-project.org/" SLOT="0" LICENSE="LGPL-2" KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~ia64" DEPEND=">=media-libs/libgii-0.8.4 X? ( virtual/x11 ) svga? ( >=media-libs/svgalib-1.4.2 ) aalib? ( >=media-libs/aalib-1.2-r1 )" src_unpack() { unpack ${A} cd ${S} epatch ${FILESDIR}/libggi-2.0.4_x_text_fix.diff epatch ${FILESDIR}/libggi-2.0.4_x_expose_fix.diff } src_compile() { local myconf="" use X \ || myconf="--without-x" use svga \ || myconf="${myconf} --disable-svga --disable-vgagl" use fbcon \ && myconf="${myconf} --enable-fbdev" use directfb \ && myconf="${myconf} --enable-fbdev --enable-directfb-renderer" \ (use fbcon || use directfb) \ || myconf="${myconf} --disable-fbdev" use aalib \ || myconf="${myconf} --disable-aa" econf ${myconf} || die emake || die } src_install () { make \ DESTDIR=${D} \ install || die dodoc ChangeLog* FAQ NEWS README TODO docinto txt dodoc doc/*.txt }