blob: 88d504dcd4237e733f6539451fdd458b670d2d01 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/njam/njam-0.96.ebuild,v 1.5 2004/07/14 14:23:36 agriffis Exp $
inherit games eutils
MY_P="${P}-src"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="Multi or single-player network Pacman-like game in SDL"
HOMEPAGE="http://njam.sourceforge.net/"
SRC_URI="mirror://sourceforge/njam/${MY_P}.tar.gz"
RESTRICT="nomirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=">=media-libs/sdl-mixer-1.2.5
>=media-libs/sdl-image-1.2.2
>=media-libs/libsdl-1.2.5
>=media-libs/sdl-net-1.2.4"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${PV}/njam.diff
epatch ${FILESDIR}/${PV}/njamgame.diff
}
src_compile() {
emake PREFIX="/usr/share" || die "emake failed"
}
src_install() {
dogamesbin njam
dodoc CHANGES README TODO
dohtml html/*
insinto ${GAMES_DATADIR}/njam/data
doins data/*
insinto ${GAMES_DATADIR}/njam/skins
doins skins/*
prepgamesdirs
}
|