summaryrefslogtreecommitdiff
blob: 5f1816dc91a48345309019d384e2b9040959126c (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
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/clanbomber/clanbomber-1.04.ebuild,v 1.5 2004/07/14 14:18:05 agriffis Exp $

inherit games flag-o-matic eutils

DESCRIPTION="free (GPL) Bomberman-like multiplayer game"
HOMEPAGE="http://clanbomber.sourceforge.net/"
SRC_URI="mirror://sourceforge/clanbomber/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""

DEPEND="sys-libs/zlib
	media-libs/hermes
	=dev-games/clanlib-0.6.5*"

pkg_setup() {
	clanlib-config 0.6.5
}

src_unpack() {
	unpack ${A}
	cd ${S}
	sed -i \
		's:\(@datadir@/clanbomber/\):$(DESTDIR)\1:' \
		clanbomber/{,*/}Makefile.in
	epatch ${FILESDIR}/${PV}-no-display.patch
}

src_compile() {
	egamesconf || die
	emake -j1 || die
}

src_install() {
	emake install DESTDIR=${D} || die
	dodoc AUTHORS ChangeLog IDEAS QUOTES README TODO
}