# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="A completely OpenSourced alternative to the OpenGL Utility Toolkit (GLUT) library" HOMEPAGE="http://freeglut.sourceforge.net/" SRC_URI="mirror://sourceforge/freeglut/${P}.tar.gz" LICENSE="X11" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND="virtual/opengl virtual/glu !virtual/glut" PROVIDE="virtual/glut" src_compile() { econf || die "configure failed" emake || die "emake failed" } src_install() { make DESTDIR=${D} install || die "make install failed" dodoc AUTHORS COPYING ChangeLog NEWS README TODO docinto doc dohtml -r doc/*.html doc/*.png }