blob: 98554236229985c6d68d8a6f0ad7c3f65ceea544 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/enemy-territory-fortress/enemy-territory-fortress-1.6-r1.ebuild,v 1.4 2006/10/02 07:27:44 mr_bones_ Exp $
MOD_DESC="Fortress"
MOD_NAME=etf
inherit eutils games games-etmod
HOMEPAGE="http://www.etfgame.com/"
SRC_URI="http://www.etf-center.com/files/etf_${PV}-english-2.run
http://www.sonnensturm.net/download/etf_${PV}-english-2.run
mirror://liflg/etf_${PV}-english-2.run"
LICENSE="as-is"
RESTRICT="mirror strip"
QA_TEXTRELS="${GAMES_PREFIX_OPT:1}/enemy-territory/etf/etf/omnibot_etf.so ${GAMES_PREFIX_OPT:1}/enemy-territory/etf/omnibot_etf.so"
src_unpack() {
unpack_makeself
rm -rf setup.* bin
tar xfz etf.tar.gz
rm *.tar.gz search.sh
cd "${S}"
find . -type f -print0 | xargs -0 chmod a-x
}
|