# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/games-arcade/supertux/supertux-0.1.3.ebuild,v 1.9 2007/02/07 13:42:06 nyhm Exp $ GAMES_USE_SDL="nojoystick" #bug #100372 inherit eutils games DESCRIPTION="A game similar to Super Mario Bros." HOMEPAGE="http://super-tux.sourceforge.net" SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc ~ppc64 sparc x86" IUSE="opengl" DEPEND="media-libs/libsdl media-libs/sdl-image media-libs/sdl-mixer x11-libs/libXt" pkg_setup() { if ! built_with_use media-libs/sdl-mixer mikmod ; then die "Please emerge sdl-mixer with USE=mikmod" fi games_pkg_setup } src_unpack() { unpack ${A} epatch "${FILESDIR}"/${P}-gcc41.patch } src_compile() { egamesconf \ --disable-dependency-tracking \ --disable-debug \ $(use_enable opengl) \ || die emake || die "emake failed" } src_install() { emake DESTDIR="${D}" \ desktopdir=/usr/share/applications \ icondir=/usr/share/pixmaps \ install || die "emake install failed" dodoc AUTHORS ChangeLog LEVELDESIGN README TODO prepgamesdirs }