# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/games-sports/ultimatestunts/ultimatestunts-0.7.5.ebuild,v 1.5 2009/01/08 00:44:34 mr_bones_ Exp $ EAPI=2 inherit autotools eutils versionator games MY_P=${PN}-srcdata-$(replace_all_version_separators)1 DESCRIPTION="Remake of the famous Stunts game" HOMEPAGE="http://www.ultimatestunts.nl/" SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 x86" IUSE="nls" RDEPEND="media-libs/libsdl[opengl] media-libs/sdl-image >=media-libs/openal-1 media-libs/freealut virtual/opengl virtual/glu nls? ( virtual/libintl )" DEPEND="${RDEPEND} dev-util/cvs sys-devel/gettext" S=${WORKDIR}/${MY_P} src_prepare() { ecvs_clean epatch "${FILESDIR}"/${P}-paths.patch autopoint -f || die "autopoint failed" sed -i \ -e 's:$(datadir)/locale:@top_srcdir@/data/lang:' \ po/Makefile.in.in \ || die "sed failed" AT_M4DIR=m4 eautoreconf } src_configure() { egamesconf \ --disable-dependency-tracking \ $(use_enable nls) } src_compile() { emake -C trackedit libtrackedit.a || die "emake failed" emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" newicon data/cars/diablo/steer.png ${PN}.png make_desktop_entry ustunts "Ultimate Stunts" dodoc AUTHORS README prepgamesdirs }