# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/games-arcade/abe/abe-1.1.ebuild,v 1.3 2006/10/17 17:56:28 nyhm Exp $ inherit eutils toolchain-funcs games DESCRIPTION="A scrolling, platform-jumping, key-collecting, ancient pyramid exploring game" HOMEPAGE="http://abe.sourceforge.net/" SRC_URI="mirror://sourceforge/abe/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc x86" IUSE="" DEPEND=">=media-libs/libsdl-1.2.3 >=media-libs/sdl-mixer-1.2.5" src_unpack() { unpack ${A} cd "${S}" sed -i \ -e "/^TR_CFLAGS/d" \ -e "/^TR_CXXFLAGS/d" \ configure \ || die "sed failed" } src_compile() { egamesconf --with-data-dir="${GAMES_DATADIR}/${PN}" || die emake CC=$(tc-getCC) || die "emake failed" } src_install() { dogamesbin src/abe || die "dogamesbin failed" insinto "${GAMES_DATADIR}/${PN}" doins -r images sounds maps || die "doins failed" dodoc AUTHORS ChangeLog README cd images tar f images.tar -x tom1.bmp newicon tom1.bmp abe.bmp make_desktop_entry abe "Abe's amazing aventure" /usr/share/pixmaps/abe.bmp prepgamesdirs }