blob: 103bdf334acbcdb44d941dbd2c703187f0d2a590 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/ut2004-crossfire/ut2004-crossfire-1.5.ebuild,v 1.1 2007/01/10 21:24:23 wolf31o2 Exp $
MOD_NAME="Crossfire"
MOD_DESC="Special Forces vs Terrorists"
MOD_DIR="TOCrossfire"
MOD_BINS="crossfire"
MOD_ICON=Help/icons/TOC_TERROR2.png
inherit games games-mods
HOMEPAGE="http://www.to-crossfire.net/"
SRC_URI="ftp://mirror1.to-crossfire.net/client/TOCrossfire_beta1.2_full.zip
ftp://mirror1.to-crossfire.net/client/TOCrossfire_beta${PV}_update.zip
http://www.speicherland.com/TOCrossfire_beta${PV}_update.zip"
# See /opt/ut2004/TOCrossfire/Help/EULA.txt
LICENSE="free-noncomm"
KEYWORDS="~amd64 ~x86"
RDEPEND="${CATEGORY}/${GAME}"
src_unpack() {
games-mods_src_unpack
unpack ./TOCrossfire_beta_1.2_full/TOCinstall.tgz
unpack ./TOCrossfire_beta${PV}_update/TOCinstall.tgz
cd "${MOD_DIR}" || die
rm -f *.exe Help/*.{exe,zip}
}
|