blob: c8621501d6e972e6a6f57039a89831f263e8a472 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-games/irrlicht/irrlicht-0.7.ebuild,v 1.2 2004/11/03 00:12:00 vapier Exp $
inherit eutils
DESCRIPTION="open source high performance realtime 3D engine written in C++"
HOMEPAGE="http://irrlicht.sourceforge.net/"
SRC_URI="mirror://sourceforge/irrlicht/${P}.zip"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="ppc x86"
IUSE="doc"
RDEPEND="media-libs/jpeg
sys-libs/zlib
virtual/opengl
virtual/x11"
DEPEND="${RDEPEND}
app-arch/unzip"
src_unpack() {
unpack ${A}
cd ${S}/source
unzip -qo source.zip || die "unpacking source.zip"
rm -rf source.zip
cd Irrlicht
rm -rf zlib jpeglib
ln -s /usr/include jpeglib
ln -s /usr/include zlib
epatch "${FILESDIR}/${PV}-system-libs.patch"
epatch "${FILESDIR}/${PV}-jpeg.patch"
epatch "${FILESDIR}/${PV}-opengl.patch"
}
src_compile() {
cd source/Irrlicht
emake || die "emake failed"
}
src_install() {
dolib.a lib/Linux/libIrrlicht.a || die "dolib.a failed"
insinto /usr/include/${PN}
doins include/* || die "doins failed"
dodoc changes.txt readme.txt
use doc && cp -r examples media "${D}/usr/share/doc/${PF}/"
}
|