blob: 24cff139b633c499e1d388b7512be3c5cd0df248 (
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
52
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-roguelike/fargoal/fargoal-20040629.ebuild,v 1.3 2006/06/29 19:24:31 wolf31o2 Exp $
inherit eutils games
DESCRIPTION="The Sword of Fargoal - a remake of C64's old dungeon crawler game"
HOMEPAGE="http://squidfighter.sourceforge.net/fargoal/"
SRC_URI="mirror://sourceforge/squidfighter/${P/-}.zip"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ppc x86"
IUSE=""
RDEPEND="media-libs/allegro"
DEPEND="${RDEPEND}
app-arch/unzip"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd "${S}/src"
epatch "${FILESDIR}/gentoo-home-write.patch"
sed -i \
-e "s/-O3/${CFLAGS}/" \
-e '/^LDFLAGS/d' Makefile \
|| die "sed failed"
sed -i \
-e "s:sfx/:${GAMES_DATADIR}/${PN}/sfx/:g" \
-e "s:gfx/:${GAMES_DATADIR}/${PN}/gfx/:g" \
-e "s:data/:${GAMES_DATADIR}/${PN}/data/:g" {*,../data/sof.cfg} \
|| die "sed failed"
sed -i \
-e "s:agreement.txt:${GAMES_DATADIR}/${PN}/&:" main.c \
|| die "sed failed"
}
src_compile() {
emake -C src || die "emake failed"
}
src_install() {
# install as fargoal instead of sword since that may conflict with
# other packages.
newgamesbin sword fargoal || die "newgamesbin failed"
insinto "${GAMES_DATADIR}"/${PN}
doins -r agreement.txt {data,gfx,sfx} || die "doins failed"
dohtml readme.html
prepgamesdirs
}
|