# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-games/neoengine/neoengine-0.8.0.ebuild,v 1.4 2004/06/29 15:06:26 vapier Exp $ inherit eutils DESCRIPTION="An open source, platform independent, 3D game engine written in C++" HOMEPAGE="http://www.neoengine.org/" SRC_URI="mirror://sourceforge/neoengine/${P}.tar.bz2" LICENSE="MPL-1.1" SLOT="0" KEYWORDS="~ppc ~x86" IUSE="doc" DEPEND="virtual/opengl media-libs/alsa-lib doc? ( app-doc/doxygen )" S="${WORKDIR}/${P}/neoengine" src_compile() { econf || die "./configure failed" emake || die "Compilation failed" if use doc; then for i in "*.doxygen"; do doxygen ${i}; done fi } src_install() { einstall || die "Installation failed" dodoc AUTHORS ChangeLog INSTALL README TODO if use doc; then mkdir -p ${D}/usr/share/doc/${PF} for i in "*-api"; do cp -r ${i} ${D}/usr/share/doc/${PF}; done fi }