You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-arcade/methane/methane-1.5.1.ebuild

44 lines
1.1 KiB

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils flag-o-matic 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=""
RDEPEND="dev-games/clanlib:2.3[opengl,mikmod]"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
epatch "${FILESDIR}"/${P}-gentoo.patch
sed -i \
-e "s:@GENTOO_DATADIR@:${GAMES_DATADIR}:" \
sources/target.cpp || die
# fix weird parallel make issue wrt #450422
mkdir build || die
append-cxxflags -Wno-narrowing # build with gcc5 (bug #573788)
}
src_install() {
dogamesbin methane
insinto "${GAMES_DATADIR}"/${PN}
doins resources/*
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.txt history.txt readme.txt
dohtml docs/*
prepgamesdirs
}