blob: 27789e6d019638f3f8d16e68a9f7e74603e1141c (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/quake3-matrix/quake3-matrix-2.4_beta-r1.ebuild,v 1.1 2006/10/23 22:58:23 wolf31o2 Exp $
MOD_DESC="Matrix conversion mod"
MOD_NAME="matrix"
MOD_DIR="matrix"
inherit games games-mods
# All other HOMEPAGE have disappeared
HOMEPAGE="http://mods.moddb.com/3388/matrix-quake-3/"
SRC_URI="matrix24.zip"
LICENSE="freedist"
RESTRICT="strip fetch"
KEYWORDS="-* ~amd64 ~ppc ~x86"
RDEPEND="ppc? ( games-fps/${GAME} )
!ppc? (
|| (
games-fps/${GAME}
games-fps/${GAME}-bin ) )"
pkg_nofetch() {
einfo "Download the following files from FilePlanet and put them in"
einfo "${DISTDIR}"
einfo
einfo "http://www.fileplanet.com/download.aspx?f=110838"
}
src_unpack() {
games-mods_src_unpack
mkdir -p ${S}/matrix
mv *.pk3 *.txt matrix
}
|