blob: 0cf634454e343ba8a74a73a2eba09a3ebac9b042 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/doom3-lms/doom3-lms-4.ebuild,v 1.2 2009/10/10 17:13:34 nyhm Exp $
EAPI=2
MOD_DESC="add co-op support and/or play against swarms of monsters"
MOD_NAME="Last Man Standing"
MOD_DIR="lms4"
inherit games games-mods
HOMEPAGE="http://doom3coop.com/"
SRC_URI="LastManStandingCoop4Multiplatform.zip"
LICENSE="freedist"
KEYWORDS="amd64 x86"
IUSE="dedicated opengl"
RESTRICT="fetch"
pkg_nofetch() {
elog "Please download ${SRC_URI} from:"
elog "http://www.filefront.com/9934113"
elog "and move it to ${DISTDIR}"
}
src_prepare() {
cd ${MOD_DIR} || die
rm -f *.{bat,url} game_lms40{0,2}.pk4
}
|