blob: 61604a5d9b5a716ff84d2fb505d3675009555873 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/methane/methane-1.4.6.ebuild,v 1.7 2004/06/24 22:07:59 agriffis Exp $
inherit games
DESCRIPTION="Port from an old amiga game"
HOMEPAGE="http://www.methane.fsnet.co.uk/"
SRC_URI="http://www.methane.fsnet.co.uk/${PN}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~alpha ~amd64"
IUSE="mikmod"
RDEPEND="=dev-games/clanlib-0.6.5*
mikmod? ( media-libs/libmikmod )"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
pkg_setup() {
clanlib-config 0.6.5
}
src_unpack() {
unpack ${A}
cd ${S}/source/linux
if ! use mikmod ; then
sed -i \
-e 's/^\(MIKMOD_LIBS\)/#\1/g' \
-e 's/^\(METHANE_FLAGS\)/#\1/g' makefile \
|| die "mikmod sed failed"
fi
}
src_compile() {
cd source/linux
emake -j1 || die "emake failed"
}
src_install() {
dogamesbin source/linux/methane || die "dogamesbin failed"
dodir "${GAMES_STATEDIR}"
touch "${D}/${GAMES_STATEDIR}/methanescores"
dodoc authors copying history install todo
dohtml ${S}/docs/*
prepgamesdirs
fperms g+w "${GAMES_STATEDIR}/methanescores"
}
|