diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-01-17 02:15:08 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-01-17 02:15:08 +0000 |
commit | d738e630f3031c79201d3c8cba661401b46c59b6 (patch) | |
tree | 5251453f3a59585ee56026b2ba17fe991d7b93fb /games-fps/quake1-movies/quake1-movies-0.ebuild | |
parent | 4.2 final release of Xfce4. (diff) | |
download | gentoo-2-d738e630f3031c79201d3c8cba661401b46c59b6.tar.gz gentoo-2-d738e630f3031c79201d3c8cba661401b46c59b6.tar.bz2 gentoo-2-d738e630f3031c79201d3c8cba661401b46c59b6.zip |
initial import
(Portage version: 2.0.51-r13)
Diffstat (limited to 'games-fps/quake1-movies/quake1-movies-0.ebuild')
-rw-r--r-- | games-fps/quake1-movies/quake1-movies-0.ebuild | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/games-fps/quake1-movies/quake1-movies-0.ebuild b/games-fps/quake1-movies/quake1-movies-0.ebuild new file mode 100644 index 000000000000..0039b569db80 --- /dev/null +++ b/games-fps/quake1-movies/quake1-movies-0.ebuild @@ -0,0 +1,86 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-fps/quake1-movies/quake1-movies-0.ebuild,v 1.1 2005/01/17 02:15:08 vapier Exp $ + +inherit games eutils + +DESCRIPTION="a collection of all the greatest Quake movies" +HOMEPAGE="http://www.planetquake.com/cineplex/history.html" +SRC_URI="http://ftp.se.kde.org/pub/pc/games/idgames2/planetquake/cineplex/camper.zip + http://ftp.se.kde.org/pub/pc/games/idgames2/planetquake/cineplex/rgb.zip + http://ftp.se.kde.org/pub/pc/games/idgames2/planetquake/cineplex/rgb2.zip + http://ftp.se.kde.org/pub/pc/games/idgames2/planetquake/cineplex/rgb3_preview.zip + http://ftp.se.kde.org/pub/pc/games/idgames2/planetquake/cineplex/ta2.zip + http://ftp.se.kde.org/pub/pc/games/idgames2/planetquake/cineplex/op_bays.zip + http://ftp.se.kde.org/pub/pc/games/idgames2/planetquake/cineplex/artifact.zip + mirror://gentoo/blahmov.zip + mirror://gentoo/blahouts.zip + " + +LICENSE="as-is" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="" + +RDEPEND="" +DEPEND="app-arch/unzip" + +S=${WORKDIR} + +myunpack() { + echo ">>> Unpacking $1 to ${PWD}" + unzip -qoLL "${DISTDIR}"/$1 || die "unpacking $1 failed" +} + +src_unpack() { + cd ${S} + einfo "Diary of a Camper ..." + mkdir id1 + cd id1 + myunpack camper.zip + mv movies.txt movies-camper.txt + + cd ${S} + einfo "Ranger Gone Bad ..." + cd id1 + myunpack rgb.zip + mv movies.txt movies-rgb.txt + myunpack rgb2.zip + mv movies.txt movies-rgb2.txt + cd .. + myunpack rgb3_preview.zip + rm *.bat + mkdir ta2 + cd ta2 + myunpack ta2.zip + + cd ${S} + einfo "Operation Bayshield ..." + mkdir op_bays + cd op_bays + myunpack op_bays.zip + + cd ${S} + einfo "The Artifact ..." + mkdir artifact + cd artifact + myunpack artifact.zip + + cd ${S} + einfo "Blahbalicious ..." + myunpack blahmov.zip + rm *.bat + cd blah + myunpack blahouts.zip + + cd ${S} + edos2unix $(find . -name '*.txt' -o -name '*.cfg') +} + +src_install() { + local dir=${GAMES_DATADIR}/quake-data + dodir "${dir}" + insinto "${dir}" + doins -r * || die "doins" + prepgamesdirs +} |