blob: f3d0d8ef2a165b48ad8c5ed69b9e0654e871cec9 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=3
inherit eutils games
DESCRIPTION="First-person ego-shooter, built as a total conversion of Cube Engine 2"
HOMEPAGE="http://www.redeclipse.net/"
SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}_linux_bsd.tar.bz2"
# According to license.txt file
LICENSE="as-is ZLIB CCPL-Attribution-ShareAlike-3.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dedicated"
DEPEND="!dedicated? (
media-libs/libsdl[opengl]
media-libs/sdl-image[jpeg,png]
media-libs/sdl-mixer[mp3,vorbis]
virtual/opengl
x11-libs/libX11
)
net-libs/enet:1.3
sys-libs/zlib
"
RDEPEND="${DEPEND}"
S="${WORKDIR}"/${PN}
src_prepare() {
# Respect GAMES_DATADIR
sed -i -e "s:\(addpackagedir(\"\)data:\1${GAMES_DATADIR}/${PN}/data:" \
src/engine/server.cpp || die "sed failed"
# Unbundle enet
sed -i \
-e "s:\(client\)\: libenet:\1\::" \
-e "s:\(server\)\: libenet:\1\::" \
src/Makefile || die "sed failed"
# Remove strip
sed -i "/STRIP=strip/d" src/Makefile || die "sed failed"
}
src_compile() {
cd src
if ! use dedicated ; then
emake CXXFLAGS="${CXXFLAGS}" client server || die "Make failed"
else
emake CXXFLAGS="${CXXFLAGS}" server
fi
}
src_install() {
newgamesbin src/reserver ${PN}-server || die
dodoc readme.txt
if ! use dedicated ; then
newgamesbin src/reclient ${PN} || die
insinto "${GAMES_DATADIR}"/${PN}
doins -r data
newicon src/site/bits/favicon.png ${PN}.png || die
make_desktop_entry ${PN} "Red Eclipse" ${PN}
fi
prepgamesdirs
}
|