blob: 20754240f64bbb7e016c7cf6451ddb7931b52f87 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/unreal-tournament-infiltration/unreal-tournament-infiltration-290.ebuild,v 1.4 2004/06/24 22:48:32 agriffis Exp $
inherit games
DESCRIPTION="Realistic mod for Unreal Tournament"
HOMEPAGE="http://infiltration.sentrystudios.net/"
SRC_URI="infiltration${PV}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RESTRICT="fetch"
DEPEND="app-arch/unzip
|| ( games-fps/unreal-tournament games-fps/unreal-tournament-goty )"
S="${WORKDIR}"
pkg_nofetch() {
einfo "Please visit the following site and download ${A}"
einfo "http://files.worthplaying.com/files/modules.php?name=Downloads&d_op=viewdownload&cid=604"
einfo "Then just place the file in ${DISTDIR}"
}
src_install() {
local dir=${GAMES_PREFIX_OPT}/unreal-tournament
dodir ${dir}
cp -r ${S}/* ${D}/${dir}/
dogamesbin ${FILESDIR}/ut-inf
prepgamesdirs
}
|