blob: 9d97a1ce8b2afe03fba182e9d07deade4a3340aa (
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
34
35
36
37
|
# 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_configure() {
econf --with-popt
}
src_install() {
default
dodoc HACKING
}
|