summaryrefslogtreecommitdiff
blob: c9d665d8bae5dcbbd205174f4b3b8fbc52dd1a1c (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
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/hoh-bin/hoh-bin-1.01.ebuild,v 1.3 2004/06/04 19:35:23 jhuebel Exp $

inherit games

S="${WORKDIR}/hoh-install-${PV}"
DESCRIPTION="PC remake of the spectrum game"
HOMEPAGE="http://retrospec.sgn.net/games/hoh/"
SRC_URI="http://retrospec.sgn.net/download.php?id=63\&path=games/hoh/bin/hohlin-${PV/./}.tar.bz2"

RESTRICT="nostrip"
LICENSE="free-noncomm"
SLOT="0"
KEYWORDS="x86 ~amd64"
IUSE=""

DEPEND="virtual/x11
	amd64? ( >=app-emulation/emul-linux-x86-xlibs-1.0 )"

src_compile() {
	cat > "${T}/hoh" <<-EOF
		#!/bin/bash
		export LD_LIBRARY_PATH="${GAMES_PREFIX_OPT}/HoH/data/runtime"
		cd "${GAMES_PREFIX_OPT}/HoH/data"
		exec ./HoH \$@
EOF
}

src_install() {
	local DATADIR="${GAMES_PREFIX_OPT}/HoH/data"
	local DOCDIR="${GAMES_PREFIX_OPT}/HoH/docs"

	dogamesbin "${T}/hoh"            || die "dogames bin failed"
	dodir "${DATADIR}" "${DOCDIR}"   || die "dodir failed"
	cp -af data/* "${D}/${DATADIR}/" || die "cp failed (data)"
	cp -af docs/* "${D}/${DOCDIR}/"  || die "cp failed (docs)"
	prepgamesdirs
}