diff options
Diffstat (limited to 'media-libs/libggi/libggi-2.0.1.ebuild')
-rw-r--r-- | media-libs/libggi/libggi-2.0.1.ebuild | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/media-libs/libggi/libggi-2.0.1.ebuild b/media-libs/libggi/libggi-2.0.1.ebuild new file mode 100644 index 000000000000..0d469f3a1663 --- /dev/null +++ b/media-libs/libggi/libggi-2.0.1.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/media-libs/libggi/libggi-2.0.1.ebuild,v 1.1 2002/04/14 18:44:21 seemant Exp $ + +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}.tar.bz2" +HOMEPAGE="http://www.ggi-project.org/" + +DEPEND=">=media-libs/libgii-0.8.1 + X? ( virtual/x11 ) + svga? ( >=media-libs/svgalib-1.4.2 ) + aalib? ( >=media-libs/aalib-1.2-r1 )" + +src_compile() { + + local myconf + + use X \ + || myconf="--without-x" + + use svga \ + || myconf="${myconf} --disable-svga --disable-vgagl" + + use directfb \ + && myconf="${myconf} --enable-fbdev --enable-directfb-renderer" \ + || myconf="${myconf} --disable-fbdev" + + use aalib \ + || myconf="${myconf} --disable-aa" + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --host=${CHOST} \ + ${myconf} || die + + emake || die + +} + +src_install () { + + make \ + DESTDIR=${D} \ + install || die + + #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} + +} |