blob: 74587d068bd3cd113847b99de7c6954de70ec3f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-games/neoengine/neoengine-0.8.1.ebuild,v 1.7 2005/09/30 18:41:18 wolf31o2 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="~x86 ~ppc"
IUSE="doc"
DEPEND="virtual/opengl
media-libs/alsa-lib
doc? ( app-doc/doxygen )"
S="${WORKDIR}/${P}/neoengine"
src_compile() {
local i
econf \
--disable-dependency-tracking \
|| die
emake || die "emake failed"
if use doc; then
for i in "*.doxygen"; do
doxygen ${i}
done
fi
}
src_install() {
local i
einstall || die "Installation failed"
dodoc AUTHORS ChangeLog README TODO
if use doc; then
dodir /usr/share/doc/${PF}
for i in "*-api"; do
cp -r ${i} "${D}/usr/share/doc/${PF}"
done
fi
}
|