# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ # Nonofficial ebuild by Ycarus. For new version look here : http://gentoo.zugaina.org/ # This ebuild is a small modification of the official supertuxkart ebuild inherit eutils games DESCRIPTION="A kart racing game starring Tux, the linux penguin (TuxKart fork)" HOMEPAGE="http://supertuxkart.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2 mirror://gentoo/${PN}.png" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="" DEPEND=">=media-libs/plib-1.8.4 virtual/opengl media-libs/libmikmod media-libs/libvorbis media-libs/openal media-libs/freealut media-libs/libsdl" src_compile() { egamesconf --datadir="${GAMES_DATADIR_BASE}" --bindir="${GAMES_BINDIR}" || die emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" exeinto ${GAMES_BINDIR} doexe /usr/games/games/${PN} rm ${D}/usr/games/games/${PN} doicon "${DISTDIR}"/${PN}.png make_desktop_entry ${PN} SuperTuxKart dodoc AUTHORS ChangeLog README TODO prepgamesdirs }