blob: 381f07dfd5733dc60b09d75f988ff55c77f4176b (
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-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/xscavenger/xscavenger-1.4.4.ebuild,v 1.11 2015/02/06 13:42:44 ago Exp $
EAPI=5
inherit eutils toolchain-funcs games
DESCRIPTION="Lode-Runner-like arcade game"
HOMEPAGE="http://www.xdr.com/dash/scavenger.html"
SRC_URI="http://www.xdr.com/dash/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
RDEPEND="x11-libs/libXext"
DEPEND="${RDEPEND}
x11-misc/imake"
S=${WORKDIR}/${P}/src
src_prepare() {
epatch "${FILESDIR}/${PV}-gentoo.patch"
sed -i \
-e "s:GENTOO_DATADIR:${GAMES_DATADIR}:" \
-e "s:GENTOO_BINDIR:${GAMES_BINDIR}:" \
Imakefile \
|| die
}
src_configure() {
xmkmf || die
}
src_compile() {
emake \
CC="$(tc-getCC)" \
CDEBUGFLAGS="${CFLAGS}" \
EXTRA_LDOPTIONS="${LDFLAGS}"
}
src_install() {
emake DESTDIR="${D}" install
dodoc ../{CREDITS,DOC,README,TODO,changelog}
prepgamesdirs
}
|