blob: e24cdba0b61904b7eea0a4e2c3549b6ef5a53c72 (
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
|
# 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.6.ebuild,v 1.4 2004/08/19 10:57:28 mr_bones_ 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="~x86 ~ppc"
IUSE="doc"
DEPEND="media-libs/jpeg
sys-libs/zlib
virtual/opengl
virtual/x11"
src_unpack() {
unpack ${A}
cd ${S}/source
unzip -qo source.zip || die "unpacking source.zip"
rm -rf source.zip 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"
epatch "${FILESDIR}/${PV}-matrix4.patch"
}
src_compile() {
cd source
emake || die "emake failed"
}
src_install() {
dolib.a lib/Linux/libIrrlicht.a
insinto /usr/include/${PN}
doins include/*
dodoc changes.txt readme.txt
use doc && cp -r examples media "${D}/usr/share/doc/${PF}/"
}
|