blob: cd437041eb68825c0e6ff4bae69533517a478103 (
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
|
# Copyright 1999-2004 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.4 2005/11/05 22:43:44 vapier 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=""
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
einfo "Use a client like quakeforge (nq-glx) to take advantage of these"
}
|