blob: 0a6819fbb8fa245bdae8e853b9531a9ea49a27be (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/doom3-ducttape/doom3-ducttape-0006.ebuild,v 1.4 2006/03/20 00:02:07 halcy0n Exp $
inherit games
DESCRIPTION="sticks flashlights to your machinegun and shotgun"
HOMEPAGE="http://ducttape.glenmurphy.com/"
SRC_URI="http://ducttape.glenmurphy.com/ducttape${PV}.zip"
LICENSE="as-is"
SLOT="0"
KEYWORDS="-* amd64 x86"
IUSE=""
RDEPEND="games-fps/doom3"
DEPEND="${RDEPEND}
app-arch/unzip"
S="${WORKDIR}"
src_install() {
insinto "${GAMES_PREFIX_OPT}"/doom3/base
doins pak008.pk4 || die "doins failed"
insinto "${GAMES_PREFIX_OPT}"/doom3/d3xp
doins pak002.pk4 || die "doins failed"
newins readme.txt ${PN}-readme.txt
prepgamesdirs
}
|