blob: d0e4111493417c1fed9f093ae702f38102e6b0bb (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit subversion autotools
ESVN_REPO_URI="https://ogreal.svn.sourceforge.net/svnroot/ogreal/trunk/OgreAL-Eihort"
DESCRIPTION="an OpenAL wrapper for Ogre"
HOMEPAGE="http://sourceforge.net/projects/ogreal"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND=">=dev-games/ogre-1.4
>=media-libs/openal-0.0.8
media-libs/libvorbis
dev-games/ois"
RDEPEND=${DEPEND}
ESVN_BOOTSTRAP="eautoreconf"
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
}
|