summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2005-03-14 09:02:51 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2005-03-14 09:02:51 +0000
commitccece514b54e4cd2c9a52c59020b4623bfc1d64b (patch)
treea53d6a26778e611a16e030a6e5e58c1b9918757d /games-arcade/methane/methane-1.4.6.ebuild
parentVersion bump. (diff)
downloadgentoo-2-ccece514b54e4cd2c9a52c59020b4623bfc1d64b.tar.gz
gentoo-2-ccece514b54e4cd2c9a52c59020b4623bfc1d64b.tar.bz2
gentoo-2-ccece514b54e4cd2c9a52c59020b4623bfc1d64b.zip
version bump (bug #85173); clean old version
(Portage version: 2.0.51.19)
Diffstat (limited to 'games-arcade/methane/methane-1.4.6.ebuild')
-rw-r--r--games-arcade/methane/methane-1.4.6.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/games-arcade/methane/methane-1.4.6.ebuild b/games-arcade/methane/methane-1.4.6.ebuild
deleted file mode 100644
index 040790b6e79b..000000000000
--- a/games-arcade/methane/methane-1.4.6.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2005 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.11 2005/03/02 04:03:14 mr_bones_ Exp $
-
-inherit flag-o-matic 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="~amd64 x86"
-IUSE="mikmod"
-
-DEPEND="=dev-games/clanlib-0.6.5*
- mikmod? ( media-libs/libmikmod )"
-
-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 "sed failed"
- fi
- sed -i \
- -e "s:-lclanCore:-lclanCore -L${ROOT}/usr/lib/clanlib-0.6.5:" \
- makefile \
- || die "sed failed"
-}
-
-src_compile() {
- append-flags -I"${ROOT}/usr/include/clanlib-0.6.5"
- 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 history install todo
- dohtml ${S}/docs/*
- prepgamesdirs
- fperms g+w "${GAMES_STATEDIR}/methanescores"
-}