blob: f670f91ae06b1e22dbf8b3a2ca55d7808ca19a59 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-rpg/tmw/tmw-0.0.27.ebuild,v 1.1 2009/01/09 13:55:19 mr_bones_ Exp $
EAPI=2
inherit eutils games
MUSIC=tmwmusic-0.0.20
DESCRIPTION="A fully free and open source MMORPG game with the looks of \"old-fashioned\" 2D RPG"
HOMEPAGE="http://themanaworld.org/"
SRC_URI="mirror://sourceforge/themanaworld/${P}.tar.gz
mirror://sourceforge/themanaworld/${MUSIC}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="opengl"
PATCHES=( "${FILESDIR}"/${P}-desktop.patch )
DEPEND=">=dev-games/physfs-1.0.0
opengl? ( virtual/opengl )
dev-libs/libxml2
media-libs/sdl-mixer[vorbis]
media-libs/sdl-image[png]
media-libs/sdl-net
net-misc/curl
>=dev-games/guichan-0.8.1[sdl]"
src_configure() {
egamesconf \
--disable-dependency-tracking \
$(use_with opengl) || die
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog NEWS README
cd "${WORKDIR}"
insinto "${GAMES_DATADIR}"/${PN}/data/music
doins ${MUSIC}/data/music/*.ogg || die
newdoc ${MUSIC}/README README.music
prepgamesdirs
}
|