# Copyright 1999-2008 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.11 2008/02/26 22:27:40 mr_bones_ 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 ~x86-fbsd" 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 \ "${FILESDIR}"/${P}-ndebug.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 }