blob: 5d461b71edc3feba07f126e860950738b6add918 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/kajaani-kombat/kajaani-kombat-0.7.ebuild,v 1.4 2008/03/25 15:04:21 coldwind Exp $
inherit eutils games
DESCRIPTION="A rampart-like game set in space"
HOMEPAGE="http://kombat.kajaani.net/"
SRC_URI="http://kombat.kajaani.net/dl/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ~x86 ~x86-fbsd"
IUSE=""
DEPEND="media-libs/libsdl
media-libs/sdl-net
media-libs/sdl-image
media-libs/sdl-ttf
media-libs/sdl-mixer
sys-libs/ncurses
sys-libs/readline"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PV}-makefile.patch"
sed -i \
-e "s:GENTOODIR:${GAMES_DATADIR}/${PN}/:" \
Makefile \
|| die "sed failed"
sed -i \
-e 's/IMG_Load/img_load/' \
gui_screens.cpp \
|| die "sed failed"
}
src_install() {
dogamesbin kajaani-kombat || die "dogamesbin failed"
insinto "${GAMES_DATADIR}/${PN}"
doins *.{png,ttf,ogg} || die "doins failed"
dodoc AUTHORS ChangeLog README
doman kajaani-kombat.6
prepgamesdirs
}
|