blob: a0c0c360e519996288b83cea43bf61cd111ae9c1 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-games/ogre/ogre-1.2.3.ebuild,v 1.1 2006/11/08 03:22:46 mr_bones_ Exp $
inherit eutils autotools
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 examples gtk openexr threads"
RDEPEND=">=dev-libs/zziplib-0.13.36
>=media-libs/freetype-2.1.10
threads? ( >=dev-libs/boost-1.33.0 )
cegui? ( >=dev-games/cegui-0.4.0 )
devil? ( >=media-libs/devil-1.6.7 )
openexr? ( >=media-libs/openexr-1.2 )
gtk? ( >=dev-cpp/gtkmm-2.4 >=dev-cpp/libglademm-2.4 )
virtual/opengl
x11-libs/libXaw x11-libs/libXrandr x11-libs/libXt x11-libs/libX11
sys-libs/zlib"
DEPEND="${RDEPEND}
x11-proto/xf86vidmodeproto
dev-util/pkgconfig
sys-devel/flex
cg? ( >=media-gfx/nvidia-cg-toolkit-1.2 )"
S=${WORKDIR}/ogrenew
pkg_setup() {
if use threads ; then
if ! built_with_use dev-libs/boost threads ; then
die "Please emerge dev-libs/boost with USE=threads"
fi
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
./bootstrap || die "bootstrap failed"
find Samples/Media -name CVS -print0 | xargs -0 rm -rf
if use examples ; then
cp -r Samples install-examples || die
find install-examples \
'(' -name 'Makefile*' -o -name CVS -o -name obj -o \
-name bin -o -name '*.cbp' -o -name '*.vcproj*' ')' \
-print0 | xargs -0 rm -rf
fi
}
src_compile() {
# For the config toolkit:
local mycfgtk="cli"
use gtk && mycfgtk="gtk"
econf \
--with-cfgtk=${mycfgtk} \
--with-platform=GLX \
$(use_enable devil) \
$(use_enable cg) \
$(use_enable openexr) \
$(use_enable threads threading) \
$(use_enable double-precision double) \
|| die
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
insinto /usr/share/OGRE/Media
doins -r Samples/Media/*
if use examples ; then
dohtml -r Docs/* Docs/Tutorials/*
insinto /usr/share/doc/${PF}/Samples
doins -r install-examples/*
fi
dodoc AUTHORS BUGS LINUX.DEV README Docs/README.linux
dohtml Docs/*.html
}
|