blob: 1c4396fb78c01169ceb01eac75183c71414683d5 (
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-2006 Gentoo Foundation
# 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.15 2006/12/06 17:21:51 wolf31o2 Exp $
inherit eutils games
DESCRIPTION="Minesweeper clone with hexagonal, rectangular and triangular grid"
HOMEPAGE="http://www.gedanken.demon.co.uk/xbomb/"
SRC_URI="ftp://ftp.ibiblio.org/pub/Linux/games/strategy/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ia64 ppc ppc64 x86"
IUSE=""
DEPEND="x11-libs/libXaw"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}.diff
sed -i \
-e '/strip/d' \
-e "/^CFLAGS/ { s:=.*:=${CFLAGS}: }" \
-e "s:/usr/bin:${GAMES_BINDIR}:" \
"${S}"/Makefile \
|| die "sed Makefile failed"
sed -i \
-e "s:/var/tmp:${GAMES_STATEDIR}/${PN}:g" \
"${S}"/hiscore.c \
|| die "sed hiscore.c failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc README LSM
dodir "${GAMES_STATEDIR}"/${PN}
touch "${D}/${GAMES_STATEDIR}"/${PN}/${PN}{3,4,6}.hi || die "touch failed"
fperms 660 "${GAMES_STATEDIR}"/${PN}/${PN}{3,4,6}.hi || die "fperms failed"
prepgamesdirs
}
|