forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wrogue-0.8.0b-r1.ebuild
48 lines (38 loc) · 1019 Bytes
/
wrogue-0.8.0b-r1.ebuild
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
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils
DESCRIPTION="Gothic science fantasy roguelike game"
HOMEPAGE="https://freecode.com/projects/wrogue"
SRC_URI="mirror://gentoo/${P}.zip"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="media-libs/libsdl[video]"
DEPEND="${RDEPEND}
app-arch/unzip"
PATCHES=(
"${FILESDIR}"/${P}-ldflags.patch
)
src_prepare() {
default
sed -i \
-e "/AppData\[0\]/ s:AppData.*:strcpy(AppData, \"/usr/share/${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
}
src_install() {
dobin ${PN}
insinto /usr/share/${PN}
doins -r data
dodoc changes.txt
newicon data/ui/icon.bmp ${PN}.bmp
make_desktop_entry ${PN} "Warp Rogue" /usr/share/pixmaps/${PN}.bmp
}