blob: 64d759a36996affe7a0aa27a8b08b1ef4c34f2f6 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-misc/c++robots/c++robots-0.ebuild,v 1.4 2004/06/24 22:53:45 agriffis Exp $
inherit eutils games
DESCRIPTION="ongoing 'King of the Hill' (KotH) tournament"
HOMEPAGE="http://www.gamerz.net/c++robots/"
SRC_URI="http://www.gamerz.net/c++robots/c++robots.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE="static"
DEPEND="virtual/glibc"
S="${WORKDIR}/${PN}"
src_unpack() {
unpack ${A}
cd ${S}
epatch "${FILESDIR}/proper-coding.patch"
}
src_compile() {
local myldflags="${LDFLAGS}"
use static && myldflags="${myldflags} -static"
emake CFLAGS="${CFLAGS}" LDFLAGS="${myldflags}" || die "emake failed"
}
src_install() {
dogamesbin combat cylon target tracker || die "dogamesbin failed"
dodoc README
prepgamesdirs
}
|