blob: d9bc241f6502a02b6dfd987ccd1eef319d31ac0e (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-games/ogre/ogre-1.0.3_p1.ebuild,v 1.2 2005/07/25 23:16:21 vapier Exp $
inherit eutils
MY_PV=${PV//./-}
MY_PV=${MY_PV/_}
DESCRIPTION="Object-oriented Graphics Rendering Engine"
HOMEPAGE="http://www.ogre3d.org/"
SRC_URI="mirror://sourceforge/ogre/${PN}-linux_osx-v${MY_PV}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~x86"
IUSE="cegui cg devil double-precision doc gtk opengl openexr sdl threads"
RDEPEND=">=dev-libs/zziplib-0.13.36
=media-libs/freetype-2*
threads? ( dev-libs/boost )
cegui? ( >=dev-games/cegui-0.3.0 )
devil? ( >=media-libs/devil-1.5 )
openexr? ( >=media-libs/openexr-1.2 )
sdl? ( >=media-libs/libsdl-1.2.6 )
!sdl? ( !opengl? (
=dev-cpp/gtkglextmm-1.0*
=dev-cpp/libglademm-2.2*
) )
gtk? (
=dev-cpp/libglademm-2.2*
=dev-cpp/gtkmm-2.2*
)
virtual/opengl
sys-libs/zlib"
DEPEND="${RDEPEND}
sys-devel/flex
cg? ( >=media-gfx/nvidia-cg-toolkit-1.2 )"
S=${WORKDIR}/ogrenew
src_unpack() {
unpack ${A}
cd "${S}"
# bundled libtool goes boom, so force newer ... note, don't
# remove this until bundled libtool version != 1.4.3
sed -i 's:libtoolize:libtoolize --copy:' bootstrap
./bootstrap || die "bootstrap failed"
# Fails to build on amd64 w/gcc-3.4.4 so remove the flag ...
sed -i \
-e 's:-fno-rtti::g' \
configure || die "sed CFLAGS"
}
src_compile() {
# For the config toolkit:
# USE="gtk" -> gtk
# USE="-gtk" -> cli
local mycfgtk="cli"
use gtk && mycfgtk="gtk"
# For the renderer/platform manager:
# USE="sdl" -> SDL
# USE="-sdl opengl" -> GLX
# USE="-sdl -opengl" -> gtk
local myplat=""
if use sdl ; then
myplat="SDL"
elif use opengl ; then
myplat="GLX"
else
myplat="gtk"
fi
# --with-gl-support=${myplat}
econf \
--with-cfgtk=${mycfgtk} \
--with-platform=${myplat} \
$(use_enable devil) \
$(use_enable cg) \
$(use_enable openexr) \
$(use_enable threads threading) \
$(use_enable double-precision double) \
$(use_enable sdl sdltest) \
|| die
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
insinto /usr/share/OGRE/Media
doins Samples/Media/*
if use doc ; then
dohtml -r Docs/* Docs/Tutorials/*
insinto /usr/share/doc/${PF}/Samples
doins -r Samples/*
fi
dodoc AUTHORS BUGS LINUX.DEV README Docs/README.linux
dohtml Docs/*.html
}
|