blob: c234f13ed565bb5cfb81d6cdc95f0d9e21fc237f (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xbomb/xbomb-2.1-r1.ebuild,v 1.1 2003/09/10 06:36:00 vapier Exp $
inherit games
DESCRIPTION="Minesweeper clone with hexagonal, rectangular and triangular grid"
SRC_URI="ftp://ftp.ibiblio.org/pub/Linux/games/strategy/${P}.tgz"
HOMEPAGE="http://www.gedanken.demon.co.uk/xbomb/"
LICENSE="GPL-2"
KEYWORDS="x86"
SLOT="0"
DEPEND="virtual/x11
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
patch -p0 < ${FILESDIR}/${P}.diff || die
sed -i \
-e "/^CFLAGS/ { s:=.*:=${CFLAGS}: }" \
-e "s:/usr/bin:${GAMES_BINDIR}:" ${S}/Makefile || \
die "sed Makefile failed"
sed -i \
-e "s:/var/tmp:/var/games:g" ${S}/hiscore.c || \
die "sed hiscore.c failed"
}
src_compile() {
emake || die
}
src_install() {
einstall DESTDIR=${D} || die
dodoc README LSM || die
keepdir /var/games || die
touch ${D}/var/games/xbomb{3,4,6}.hi || die "touch failed"
fperms 664 /var/games/xbomb{3,4,6}.hi || die
prepall
prepgamesdirs
}
|