blob: 591dc793512858279bfa25938750c0099921352c (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/gweled/gweled-0.7.ebuild,v 1.2 2005/10/31 08:40:31 mr_bones_ Exp $
inherit flag-o-matic games
DESCRIPTION="Bejeweled clone game"
HOMEPAGE="http://sebdelestaing.free.fr/gweled/"
SRC_URI="http://sebdelestaing.free.fr/gweled/Release/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE=""
DEPEND=">=x11-libs/gtk+-2
media-libs/libmikmod
>=gnome-base/librsvg-2
>=gnome-base/libgnomeui-2"
src_unpack() {
unpack ${A}
sed -i \
-e "209d" \
-e "368 s/swap_sfx/click_sfx/" \
"${S}/src/main.c" \
|| die "sed failed"
sed -i \
-e "/free (message)/ s/free/g_free/" "${S}/src/graphic_engine.c" \
|| die "sed failed"
}
src_compile() {
filter-flags -fomit-frame-pointer
econf --disable-setgid || die
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
# FIXME: /var/lib is hard-coded. Need to patch this.
touch "${D}/var/lib/games/gweled.timed.scores"
fperms 664 /var/lib/games/gweled.timed.scores
gamesowners -R "${D}/var/lib/games/"
dodoc AUTHORS NEWS
prepgamesdirs
}
|