blob: 349f7aa1f5007ab5cb7f4aea393ea3fbd5c3afeb (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-0.8.2.ebuild,v 1.2 2004/08/16 23:59:22 mr_bones_ Exp $
inherit flag-o-matic gcc games
DESCRIPTION="A fantasy turn-based strategy game"
HOMEPAGE="http://www.wesnoth.org/"
SRC_URI="http://www.wesnoth.org/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc amd64"
IUSE="server editor tools gnome kde nomusic"
DEPEND=">=media-libs/libsdl-1.2.7
>=media-libs/sdl-image-1.2
>=media-libs/sdl-mixer-1.2
>=media-libs/sdl-ttf-2.0
media-libs/sdl-net
virtual/x11"
src_compile() {
[ "$(gcc-fullversion)" == "3.4.0" ] && filter-flags -ftracer
egamesconf \
--disable-dependency-tracking \
$(use_enable nomusic lite) \
$(use_enable server) \
$(use_enable editor) \
$(use_enable tools) \
$(use_enable gnome) \
$(use_enable kde) \
|| die
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
mv "${D}${GAMES_DATADIR}/icons" "${D}/usr/share/"
dodoc MANUAL changelog || die "dodoc failed"
prepgamesdirs
}
|