blob: f870a7533cbcff619eb50357107cc6f051d9116c (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/quake1-textures/quake1-textures-20040716.ebuild,v 1.6 2008/02/14 23:18:15 nyhm Exp $
inherit games
DESCRIPTION="a collection of new and high resolution textures for id's Quake"
HOMEPAGE="http://np.teamfortress.org/"
SRC_URI="http://np.teamfortress.org/iM/textures/textures-406files-7-16-04.zip"
LICENSE="as-is"
SLOT="0"
KEYWORDS="ppc x86"
IUSE=""
RDEPEND=""
DEPEND="app-arch/unzip"
S=${WORKDIR}
src_install () {
dodoc *.txt
rm *.txt
insinto "${GAMES_DATADIR}"/quake1/id1/textures
doins * || die "doins failed"
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
elog "Use a client like quakeforge (nq-glx) to take advantage of these"
}
|