blob: 664f539fbca7767b436b3ea71f6f6bfc2c81a65f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/bitefusion/bitefusion-1.0.1.ebuild,v 1.2 2007/08/27 23:47:11 tupone Exp $
inherit eutils games
DESCRIPTION="A snake game with 15 levels"
HOMEPAGE="http://www.junoplay.com"
SRC_URI="http://www.junoplay.com/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="media-libs/libsdl"
src_unpack() {
unpack ${A}
cd "${S}"
#just to avoid QA notice
epatch "${FILESDIR}"/${P}-gentoo.patch
}
src_install() {
dogamesbin ${PN} || die "dogamesbin failed"
dodoc AUTHORS
prepgamesdirs
}
|