blob: 7d5657d6574b94fd1166108c1a5acb2d0089598e (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/sdl-jewels/sdl-jewels-1.1.1.ebuild,v 1.2 2011/01/04 07:46:22 mr_bones_ Exp $
EAPI=2
inherit eutils games
DESCRIPTION="Swap and match 3 or more jewels in a line in order to score points"
HOMEPAGE="http://www.linuxmotors.com/gljewel/"
SRC_URI="http://www.linuxmotors.com/gljewel/downloads/SDL_jewels-${PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RESTRICT="test"
DEPEND="media-libs/libsdl[opengl,video]
virtual/opengl"
S=${WORKDIR}/SDL_jewels-${PV}
src_prepare() {
epatch "${FILESDIR}/${P}-Makefile.patch"
# fix the data dir locations as it looks to be intended to run from src dir
sed -i -e "s|\"data\"|\"${GAMES_DATADIR}/${PN}\"|" sound.c || die
sed -i -e "s|data/bigfont.ppm|${GAMES_DATADIR}/${PN}/bigfont.ppm|" gljewel.c || die
ecvs_clean
}
src_install() {
dogamesbin gljewel || die
insinto "${GAMES_DATADIR}/${PN}"
doins -r data/* || die
dodoc ChangeLog README
make_desktop_entry gljewel SDL_jewels
prepgamesdirs
}
|