blob: 3f4fa773851fae0ae185b39cd34d481ba3b745d7 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/4stattack/4stattack-2.1.4.ebuild,v 1.9 2007/03/15 14:07:57 nyhm Exp $
inherit eutils games
DESCRIPTION="Connect-4 game, single or network multiplayer"
HOMEPAGE="http://forcedattack.sourceforge.net/"
SRC_URI="mirror://sourceforge/forcedattack/4stAttack-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 hppa ppc x86"
IUSE=""
RDEPEND="dev-python/pygame"
S=${WORKDIR}/4stAttack-${PV}
src_unpack() {
unpack ${A}
cd "${S}"
# move the doc files aside so it's easier to install the game files
mv README.txt credits.txt changelog.txt ..
rm -f GPL version~
# This patch makes the game save settings in $HOME
epatch "${FILESDIR}"/${P}-gentoo.diff
}
src_install() {
games_make_wrapper ${PN} "python ${PN}.py" "${GAMES_DATADIR}"/${PN}
insinto "${GAMES_DATADIR}"/${PN}
doins -r * || die "doins failed"
newicon kde/icons/48x48/forcedattack2.png ${PN}.png
make_desktop_entry ${PN} "4st Attack 2"
dodoc ../{README.txt,credits.txt,changelog.txt}
prepgamesdirs
}
|