summaryrefslogtreecommitdiff
blob: ab75c5601fdf284aed96c7113da025360ee156d1 (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
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-rpg/wastesedge/wastesedge-0.3.3.ebuild,v 1.2 2003/09/10 18:48:37 vapier Exp $

inherit games

DESCRIPTION="role playing game to showcase the adonthell engine"
SRC_URI="http://savannah.nongnu.org/download/adonthell/src/${P}.tar.gz"
HOMEPAGE="http://adonthell.linuxgames.com/"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
IUSE="oggvorbis doc nls"

DEPEND="virtual/x11
	>=media-libs/libsdl-1.1.6
	>=dev-lang/python-2.0
	oggvorbis? ( >=media-libs/libvorbis-1.0
		>=media-libs/libogg-1.0 )
	doc? ( >=app-doc/doxygen-1.2 )
	>=games-rpg/adonthell-${PV}"

src_compile(){
	egamesconf \
		`use_enable nls` \
		`use_enable doc` \
		--with-adonthell-binary=${GAMES_BINDIR}/adonthell \
		|| die
	emake || die
}

src_install(){
	emake install DESTDIR=${D} || die
	dodoc AUTHORS ChangeLog NEWS PLAYING README
	prepgamesdirs
}