blob: d217ffb433a847be952ddc1c05547a98b4bcc247 (
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
49
50
51
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/gemhun/gemhun-20040529.ebuild,v 1.6 2008/02/29 19:34:20 carlo Exp $
inherit eutils autotools games
DESCRIPTION="A puzzle game about grouping gems of a chosen amount together"
HOMEPAGE="http://gemhun.sourceforge.net/"
SRC_URI="mirror://sourceforge/gemhun/GemHunters-src-${PV}.tar.gz
mirror://sourceforge/gemhun/fairylands-bin-${PV}.tar.gz
mirror://sourceforge/gemhun/stars_in_the_night-bin-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ppc x86"
IUSE=""
DEPEND="dev-games/kyra
media-libs/sdl-mixer
virtual/opengl
media-libs/sdl-net
media-libs/libpng"
S=${WORKDIR}/GemHunters-${PV}
src_unpack() {
unpack ${A}
cd "${S}"
# Fix to comply with gentoo-path
# and to remove a nasty violation by commenting a network calls
# Until upstream fix, that is
epatch \
"${FILESDIR}/${PV}-gentoo.patch" \
"${FILESDIR}"/${P}-srand.patch
AT_M4DIR=m4 eautoreconf
}
src_compile() {
egamesconf --disable-nls || die
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog README TODO
insinto "${GAMES_DATADIR}/GemHunters/pax/"
doins -r ../fairylands ../stars_in_the_night || die "doins failed"
doicon pixmaps/${PN}.png
make_desktop_entry ${PN} "GemHunter" ${PN}
prepgamesdirs
}
|