blob: 4f2069001abbd984c1efc0fdb06ca346866fb8b4 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-roguelike/wrogue/wrogue-0.8.0b.ebuild,v 1.2 2009/12/16 21:22:52 maekke Exp $
EAPI=2
inherit eutils games
DESCRIPTION="Gothic science fantasy roguelike game"
HOMEPAGE="http://todoom.sourceforge.net/"
SRC_URI="mirror://sourceforge/todoom/${P}.zip"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="media-libs/libsdl[video]"
DEPEND="${RDEPEND}
app-arch/unzip"
src_prepare() {
sed -i \
-e "/AppData\[0\]/ s:AppData.*:strcpy(AppData, \"${GAMES_DATADIR}/${PN}/\");:" \
src/lib/appdir.c \
|| die "sed failed"
}
src_compile() {
local myCPPFLAGS="-std=c99 -Iinclude -Ilib -Iui -Igenerate"
local myCFLAGS="$(sdl-config --cflags) ${CFLAGS}"
emake -C src -f linux.mak STRIP_BINARY=NO \
CFLAGS="${myCPPFLAGS} ${myCFLAGS}" release || die "emake failed"
}
src_install() {
dogamesbin ${PN} || die "dogamesbin failed"
insinto "${GAMES_DATADIR}/${PN}"
doins -r data || die "doins failed"
dodoc changes.txt
newicon data/ui/icon.bmp ${PN}.bmp
make_desktop_entry ${PN} "Warp Rogue" /usr/share/pixmaps/${PN}.bmp
prepgamesdirs
}
|