# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

DESCRIPTION="a really simple implementation of the game snake with SDL"
HOMEPAGE="http://www.hs.no-ip.info/software/snake.html"
SRC_URI="http://www.hs.no-ip.info/software/${P}.tar.bz2"

inherit games

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="media-libs/libsdl
		media-libs/sdl-gfx
		media-libs/sdl-image
		media-libs/sdl-mixer
		media-libs/sdl-ttf"


src_unpack() {
	unpack ${A}
	cd "${S}"
}

src_compile() {
	emake || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "install failed"
}

