summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2008-06-23 19:57:29 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2008-06-23 19:57:29 +0000
commit298857abf70a4e3f4275cb731e864e701f0012b8 (patch)
treea772d4f43021bd9b5b8533b0911e8700f92968a7 /games-arcade/methane
parentold (diff)
downloadgentoo-2-298857abf70a4e3f4275cb731e864e701f0012b8.tar.gz
gentoo-2-298857abf70a4e3f4275cb731e864e701f0012b8.tar.bz2
gentoo-2-298857abf70a4e3f4275cb731e864e701f0012b8.zip
old
(Portage version: 2.1.4.4)
Diffstat (limited to 'games-arcade/methane')
-rw-r--r--games-arcade/methane/methane-1.4.7.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/games-arcade/methane/methane-1.4.7.ebuild b/games-arcade/methane/methane-1.4.7.ebuild
deleted file mode 100644
index dfc257438fd0..000000000000
--- a/games-arcade/methane/methane-1.4.7.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-arcade/methane/methane-1.4.7.ebuild,v 1.5 2007/04/11 17:19:27 nyhm Exp $
-
-inherit eutils games
-
-DESCRIPTION="Port from an old amiga game"
-HOMEPAGE="http://methane.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="mikmod"
-
-DEPEND="=dev-games/clanlib-0.7*
- mikmod? ( media-libs/libmikmod )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- if ! use mikmod ; then
- sed -i \
- -e '/^METHANE_SND/s/^/#/' \
- source/linux/makefile \
- || die "sed failed"
- fi
- sed -i \
- -e "s:/var/games:${GAMES_STATEDIR}:" \
- source/linux/doc.cpp history \
- || die "sed failed"
-}
-
-src_compile() {
- emake -C source/linux -j1 || die "emake failed"
-}
-
-src_install() {
- dogamesbin source/linux/methane || die "dogamesbin failed"
- dodir "${GAMES_STATEDIR}"
- touch "${D}/${GAMES_STATEDIR}"/methanescores
- fperms g+w "${GAMES_STATEDIR}"/methanescores
- newicon docs/puff.gif ${PN}.gif
- make_desktop_entry ${PN} "Super Methane Brothers" /usr/share/pixmaps/${PN}.gif
- dodoc authors history readme todo
- dohtml "${S}"/docs/*
- prepgamesdirs
-}