39 lines
920 B
Bash
39 lines
920 B
Bash
# Copyright 1999-2008 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
inherit games
|
|
|
|
IUSE=""
|
|
DESCRIPTION="Community Bonus Pack for UT2003"
|
|
HOMEPAGE="http://www.unrealtournament2003.com/"
|
|
SRC_URI="ftp://dl3.edgefiles.com/games-fusion.net/www/patches/ut2003/cbp2003.zip
|
|
ftp://ftp.multiplay.co.uk/pub/games/fps/unrealtournament2003/mappacks/cbp2003.zip
|
|
http://ftp1.gamesweb.com/cq2ert6g/cbp2003.zip"
|
|
|
|
LICENSE="ut2003"
|
|
SLOT="1"
|
|
KEYWORDS="x86"
|
|
RESTRICT="mirror strip"
|
|
|
|
DEPEND="app-arch/unzip"
|
|
RDEPEND="games-fps/ut2003"
|
|
|
|
S=${WORKDIR}
|
|
|
|
dir=${GAMES_PREFIX_OPT}/ut2003
|
|
Ddir=${D}/${dir}
|
|
|
|
src_unpack() {
|
|
unzip -qq "${DISTDIR}"/${A} || die "unpacking"
|
|
}
|
|
|
|
src_install() {
|
|
for i in Animations Help Music Maps StaticMeshes Textures System
|
|
do
|
|
mkdir -p "${Ddir}"/${i}
|
|
done
|
|
games_umod_unpack CBP2003.ut2mod
|
|
rm "${Ddir}/Readme.txt" "${Ddir}/cbp installer logo1.bmp"
|
|
prepgamesdirs
|
|
}
|