# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit games DESCRIPTION="Port from a old amiga game." HOMEPAGE="http://www.methane.fsnet.co.uk/" SRC_URI="http://www.methane.fsnet.co.uk/${PN}.tgz" KEYWORDS="~x86" LICENSE="GPL-2" SLOT="0" IUSE="mikmod" DEPEND="=dev-games/clanlib-0.6.5* mikmod? ( >=media-sound/mikmod-3.1 ) >=sys-apps/sed-4" src_compile() { cd source/linux use mikmod || sed -i -e 's/^\(MIKMOD_LIBS\)/#\1/g' \ -e 's/^\(METHANE_FLAGS\)/#\1/g' makefile sed -i 's,/var/games/methanescores,'${GAMES_DATADIR}'/'${PN}'/methanescores,g' ./{doc.cpp,main.cpp} || die emake || die } src_install() { dogamesbin source/linux/methane || die dodir $GAMES_DATADIR/${PN} || die touch ${D}/${GAMES_DATADIR}/${PN}/methanescores || die fowners root:games ${GAMES_DATADIR}/${PN}/methanescores || die fperms 775 ${GAMES_DATADIR}/${PN}/methanescores || die dodoc authors copying history install todo || die dohtml ${S}/docs/* || die }