# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger # $Header: /var/cvsroot/gentoo-x86/media-libs/libggi/libggi-20010313.ebuild,v 1.3 2002/04/14 18:27:29 seemant Exp $ P=ggi-devel-${P} A=${P}.tar.bz2 S=${WORKDIR}/degas/lib/libggi DESCRIPTION="Fast and safe graphics and drivers for about any graphics card to the Linux kernel (sometimes)" SRC_URI="ftp://ftp.ggi-project.org/pub/ggi/ggi-snapshots/${A}" HOMEPAGE="http://www.ggi-project.org/" DEPEND="virtual/glibc >=media-libs/libgii-20010313 X? ( virtual/x11 ) svga? ( >=media-libs/svgalib-1.4.2 ) aalib? ( >=media-libs/aalib-1.2-r1 )" src_unpack() { unpack ${A} cd ${S} patch -p0 < ${FILESDIR}/glibc-2.2.2-speed.diff } src_compile() { local myconf if [ -z "`use X`" ] then myconf="--without-x" fi if [ -z "`use svga`" ] then myconf="$myconf --disable-svga --disable-vgagl" fi if [ -z "`use fbcon`" ] then myconf="$myconf --disable-fbdev" fi if [ -z "`use aalib`" ] then myconf="$myconf --disable-aa" fi try ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man --host=${CHOST} $myconf try make } src_install () { cd ${S} try make DESTDIR=${D} install #This la file seems to bug mesa rm ${D}/usr/lib/*.la dodoc ChangeLog* FAQ NEWS README docinto txt dodoc doc/*.txt docinto docbook dodoc doc/docbook/*.{dsl,sgml} }