blob: 91d58ab51059865dc82a98fe81205d75e7ec4b87 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/glob2/glob2-0.8.21.ebuild,v 1.2 2006/08/07 18:35:04 mr_bones_ Exp $
inherit games
DESCRIPTION="Real Time Strategy (RTS) game involving a brave army of globs"
HOMEPAGE="http://globulation2.org/"
SRC_URI="http://globulation2.org/releases/${PV}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ppc x86"
IUSE=""
DEPEND="virtual/opengl
dev-libs/boost
>=media-libs/libsdl-1.2.0
media-libs/libpng
media-libs/sdl-net
media-libs/sdl-ttf
media-libs/sdl-image
media-libs/libvorbis
>=media-libs/speex-1.1
=media-libs/freetype-2*
sys-libs/zlib"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "/^glob2linkdir/s:\$(datadir):/usr/share:" \
data/Makefile.in \
|| die "sed failed"
sed -i \
-e "/^glob2icondir/s:\$(datadir):/usr/share:" \
data/icons/Makefile.in \
|| die "sed failed"
}
src_compile() {
#./configure assumes that vorbis will be installed under PREFIX bug #46352
egamesconf \
--disable-dependency-tracking \
--with-vorbis=/usr \
--with-speex=/usr \
--with-speex-includes=/usr/include/speex \
|| die
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS README TODO
prepgamesdirs
}
|