blob: cf22305b6e1105d6047ac08f1aae8196b61c6968 (
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
30
31
32
33
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit autotools eutils git-2
DESCRIPTION="Free Software fighting game"
HOMEPAGE="http://plaimi.net/games/"
EGIT_REPO_URI="git://github.com/stiell/limbs-off.git"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE=""
RDEPEND="
media-libs/fontconfig
media-libs/libpng
media-libs/libsdl
media-libs/sdl-ttf
virtual/opengl
"
src_prepare() {
eautoreconf
}
src_install() {
default
dodoc HACKING
}
|