blob: c5db37aec49f3f56fffe2af8595de6486fd55bb0 (
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-2007 Gentoo Foundation and Arcady Genkin <agenkin@thpoon.com>
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/koth/koth-0.8.0.ebuild,v 1.15 2007/07/27 11:23:50 uberlord Exp $
inherit eutils games
DESCRIPTION="Multiplayer, networked game of little tanks with really big weapons"
HOMEPAGE="http://www.nongnu.org/koth/"
SRC_URI="http://savannah.nongnu.org/download/${PN}/default.pkg/${PV}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ppc x86 ~x86-fbsd"
IUSE=""
DEPEND="media-libs/libggi"
src_unpack() {
unpack "${A}"
cd "${S}"
sed -i 's:-g -O2::' configure \
|| die "sed configure failed"
cd src
epatch "${FILESDIR}"/${P}-gcc-3.4.patch
sed -i "s:/etc/koth:${GAMES_SYSCONFDIR}:" cfgfile.h \
|| die "sed cfgfile.h failed"
sed -i 's:(uint16):(uint16_t):' gfx.c gfx.h \
|| die "sed gfx.c gfx.h failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
insinto "${GAMES_SYSCONFDIR}"
doins src/koth.cfg || die "doins failed"
dodoc AUTHORS ChangeLog NEWS README doc/*.txt
prepgamesdirs
}
|