# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/games-puzzle/xye/xye-0.7.6.ebuild,v 1.3 2006/06/29 16:20:23 wolf31o2 Exp $ inherit autotools eutils games DESCRIPTION="Free version of the classic game Kye" HOMEPAGE="http://xye.sourceforge.net/" SRC_URI="mirror://sourceforge/xye/${P}.tar.gz" LICENSE="ZLIB" SLOT="0" KEYWORDS="x86" IUSE="" DEPEND=">=media-libs/libsdl-1.2.7 media-libs/sdl-image" pkg_setup() { if ! built_with_use media-libs/sdl-image png ; then eerror "You need the png useflag enabled on media-libs/sdl-image." eerror "Please emerge media-libs/sdl-image with USE=\"png\"" die "Missing png useflag." fi games_pkg_setup } src_unpack() { unpack ${A} cd "${S}" sed -i '/^xye_LDFLAGS/d' Makefile.am || die "sed failed" eautoreconf } src_install() { dogamesbin "${PN}" || die "dogamesbin failed" insinto "${GAMES_DATADIR}/${PN}" doins -r levels res || die "doins failed" dodoc format.txt template.xye.xml GAMEINTRO.txt AUTHORS \ ChangeLog README NEWS newicon xyeicon.png "${PN}.png" make_desktop_entry "${PN}" Xye prepgamesdirs }