# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/allegrogl/allegrogl-0.2.4-r1.ebuild,v 1.3 2006/05/28 21:41:56 tupone Exp $ inherit eutils MY_PN="alleggl" DESCRIPTION="A library to mix OpenGL graphics with Allegro routines" HOMEPAGE="http://allegrogl.sourceforge.net" SRC_URI="mirror://sourceforge/allegrogl/${MY_PN}-${PV}.tar.bz2" LICENSE="ZLIB" SLOT="0" KEYWORDS="~amd64 ~sparc ~x86" IUSE="examples" DEPEND=">=media-libs/allegro-4.2.0 virtual/opengl virtual/glu" S=${WORKDIR}/${MY_PN} #src_unpack() { # unpack ${A} # cd "${S}" # epatch "${FILESDIR}"/${P}-glx_bug_1586789.patch #} src_compile() { econf || die "econf failed" emake -j1 || die "emake failed" } src_install() { make DESTDIR="${D}" install || die "make install failed" dodoc changelog {bugs,extensions,faq,howto,quickstart,readme,todo}.txt insinto /usr/share/doc/${P}/html doins -r docs/html/* if use examples ; then insinto /usr/share/${PN}/examples doins examp/*.{bmp,c,dat,h,pcx,tga} || die "doins failed" fi }