blob: 808781aa9317f703e117c4be786f200ca6ca1ab1 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-engines/sarien/sarien-0.7.0.ebuild,v 1.8 2006/01/29 00:11:39 joshuabaergen Exp $
inherit games
DESCRIPTION="Sierra AGI resource interpreter engine"
HOMEPAGE="http://sarien.sourceforge.net/"
SRC_URI="mirror://sourceforge/sarien/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc ~amd64"
IUSE=""
RDEPEND="virtual/libc
|| ( x11-libs/libXext virtual/x11 )"
DEPEND="${RDEPEND}
|| ( ( x11-proto/xextproto
x11-proto/xf86dgaproto
x11-proto/xf86vidmodeproto )
virtual/x11 )
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}
sed -i \
-e "s:/etc:${GAMES_SYSCONFDIR}:" src/filesys/unix/path.c \
|| die "sed src/filesys/unix/path.c failed"
}
src_compile() {
egamesconf || die
# buggy build - comments on bug #45813
emake -j1 || die "emake failed"
}
src_install() {
dogamesbin bin/sarien || die "dogamesbin failed"
insinto "${GAMES_SYSCONFDIR}"
doins etc/sarien.cfg || die "doins failed"
dodoc doc/{AUTHORS,BUGS,Changelog,README*,TODO,roadmap.txt}
prepgamesdirs
}
|