blob: 6b123bb8de234ca75e185ef38ecabd7782a9c8af (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/glob2/glob2-0.8.9.ebuild,v 1.3 2004/11/24 21:30:15 josejx Exp $
inherit flag-o-matic games
DESCRIPTION="state of the art Real Time Strategy (RTS) game"
HOMEPAGE="http://www.ysagoon.com/glob2/"
SRC_URI="http://www.ysagoon.com/glob2/data/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc ~amd64"
IUSE=""
DEPEND="virtual/libc
virtual/opengl
>=media-libs/libsdl-1.2.0
media-libs/libpng
media-libs/sdl-net
media-libs/sdl-image
media-libs/libvorbis
=media-libs/freetype-2*
sys-libs/zlib"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "s/defaultLanguage = 1/defaultLanguage = 0/" src/Settings.cpp \
|| die "sed failed"
# bug #67718
sed -i \
-e "s/nsamples == SAMPLE_COUNT_PER_SLICE/nsamples/" src/SoundMixer.cpp \
|| die "sed failed"
}
src_compile() {
# comment from bug #64150 to fix compile issue.
filter-flags -O?
#./configure assumes that vorbis will be installed under PREFIX bug #46352
egamesconf \
--with-vorbis=/usr \
|| die
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS README TODO
prepgamesdirs
}
|