blob: 09820c586c299332b9d8d1eced2d6637f221baea (
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
53
54
55
56
57
58
59
60
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-rpg/sacred-gold/sacred-gold-1.0.ebuild,v 1.4 2014/10/15 08:28:29 pacho Exp $
EAPI=5
inherit eutils cdrom games
DESCRIPTION="Action role-playing game"
HOMEPAGE="http://linuxgamepublishing.com/info.php?id=sacred"
SRC_URI=""
LICENSE="all-rights-reserved GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="-* ~amd64 ~x86"
IUSE=""
RESTRICT="bindist strip"
RDEPEND="
|| (
(
x11-libs/libX11[abi_x86_32(-)]
x11-libs/libXext[abi_x86_32(-)]
x11-libs/libXi[abi_x86_32(-)]
virtual/opengl[abi_x86_32(-)]
)
amd64? (
app-emulation/emul-linux-x86-opengl[-abi_x86_32(-)]
app-emulation/emul-linux-x86-xlibs[-abi_x86_32(-)]
)
)
"
DEPEND=""
S=${WORKDIR}
src_unpack() {
cdrom_get_cds .data/bin/Linux/x86/sacred
ln -sfn "${CDROM_ROOT}"/.data cd
unpack ./cd/data/data.tar.gz
rm -f cd
mv lib/lib{1,2}/* lib
rmdir lib/lib{1,2}
cp -f "${CDROM_ROOT}"/.data/bin/Linux/x86/sacred* . || die
cp -f "${CDROM_ROOT}"/README* . || die
cp -f "${CDROM_ROOT}"/manual.pdf . || die
}
src_install() {
dir=${GAMES_PREFIX_OPT}/${PN}
insinto "${dir}"
mv * "${D}/${dir}" || die
games_make_wrapper ${PN} ./sacred "${dir}" "${dir}"/lib
newicon "${CDROM_ROOT}"/.data/icon.xpm ${PN}.xpm
make_desktop_entry ${PN} "Sacred - Gold" ${PN}
prepgamesdirs
}
|