diff options
Diffstat (limited to 'games-fps/transfusion-bin')
-rw-r--r-- | games-fps/transfusion-bin/ChangeLog | 10 | ||||
-rw-r--r-- | games-fps/transfusion-bin/Manifest | 4 | ||||
-rw-r--r-- | games-fps/transfusion-bin/files/digest-transfusion-bin-1.01 | 2 | ||||
-rw-r--r-- | games-fps/transfusion-bin/files/transfusion | 2 | ||||
-rw-r--r-- | games-fps/transfusion-bin/transfusion-bin-1.01.ebuild | 48 |
5 files changed, 66 insertions, 0 deletions
diff --git a/games-fps/transfusion-bin/ChangeLog b/games-fps/transfusion-bin/ChangeLog new file mode 100644 index 000000000000..8a9514b7f31d --- /dev/null +++ b/games-fps/transfusion-bin/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-games/transfusion-bin +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-fps/transfusion-bin/ChangeLog,v 1.1 2003/09/09 18:10:14 vapier Exp $ + +*transfusion-bin-1.01 (13 Aug 2003) + + 13 Aug 2003; Michael Sterrett <msterret@gentoo.org> + transfusion-bin-1.01.ebuild, files/transfusion: + initial commit. (bug 26228) + diff --git a/games-fps/transfusion-bin/Manifest b/games-fps/transfusion-bin/Manifest new file mode 100644 index 000000000000..6bf9a0a6fa9b --- /dev/null +++ b/games-fps/transfusion-bin/Manifest @@ -0,0 +1,4 @@ +MD5 98fbb443fc3dc6128e495977c02a5d99 transfusion-bin-1.01.ebuild 1138 +MD5 964b6a3b08b385384eec2999e4feac92 ChangeLog 406 +MD5 29086edf8b4ad73829f8b3c59088042b files/transfusion 65 +MD5 bb61fedc5e54bc874cbb937a0696103e files/digest-transfusion-bin-1.01 160 diff --git a/games-fps/transfusion-bin/files/digest-transfusion-bin-1.01 b/games-fps/transfusion-bin/files/digest-transfusion-bin-1.01 new file mode 100644 index 000000000000..8b782d949222 --- /dev/null +++ b/games-fps/transfusion-bin/files/digest-transfusion-bin-1.01 @@ -0,0 +1,2 @@ +MD5 58e8655f1a512b2c21096f54aeede38d transfusion-1.0-linux.i386.zip 40532193 +MD5 158ac79783e73217cea157b023c93b9d transfusion-patch-1.01-linux.i386.zip 8790776 diff --git a/games-fps/transfusion-bin/files/transfusion b/games-fps/transfusion-bin/files/transfusion new file mode 100644 index 000000000000..316b16625997 --- /dev/null +++ b/games-fps/transfusion-bin/files/transfusion @@ -0,0 +1,2 @@ +#!/bin/sh +cd GENTOO_DIR && exec ./transfusion-glx ${@} || exit 1 diff --git a/games-fps/transfusion-bin/transfusion-bin-1.01.ebuild b/games-fps/transfusion-bin/transfusion-bin-1.01.ebuild new file mode 100644 index 000000000000..cea92bd38d72 --- /dev/null +++ b/games-fps/transfusion-bin/transfusion-bin-1.01.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# + +inherit games + +MY_PN=${PN/-bin/} +DESCRIPTION="Blood remake" +HOMEPAGE="http://www.planetblood.com/qblood/" +SRC_URI="mirror://sourceforge/blood/${MY_PN}-1.0-linux.i386.zip + mirror://sourceforge/blood/${MY_PN}-patch-${PV}-linux.i386.zip" + +RESTRICT="nostrip" +KEYWORDS="-* x86" +LICENSE="GPL-2" +SLOT="0" + +DEPEND=">=sys-apps/sed-4" + +S="${WORKDIR}/${MY_PN}" + +src_install() { + local dir=${GAMES_PREFIX_OPT}/${MY_PN} + + dodir ${dir} + + # install everything that looks anything like docs... + dodoc ${MY_PN}/doc/*.txt ${MY_PN}/*txt qw/*txt + dohtml ${MY_PN}/doc/*.html + + #...then mass copy everything to the install dir... + cp -R * ${D}/${dir}/ + + # ...and remove the docs since we don't need them installed twice. + rm -rf \ + ${D}/${dir}/${MY_PN}/doc \ + ${D}/${dir}/qw/*txt \ + ${D}/${dir}/${MY_PN}/*txt + + # install the wrapper... + dogamesbin ${FILESDIR}/transfusion + # ...and make it cd to the right place. + sed -i \ + -e "s:GENTOO_DIR:${dir}:" ${D}/${GAMES_BINDIR}/transfusion || \ + die "sed transfusion failed" + + prepgamesdirs +} |