diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /games-fps/transfusion-bin | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'games-fps/transfusion-bin')
-rw-r--r-- | games-fps/transfusion-bin/Manifest | 3 | ||||
-rw-r--r-- | games-fps/transfusion-bin/files/transfusion | 2 | ||||
-rw-r--r-- | games-fps/transfusion-bin/metadata.xml | 8 | ||||
-rw-r--r-- | games-fps/transfusion-bin/transfusion-bin-1.01.ebuild | 49 |
4 files changed, 62 insertions, 0 deletions
diff --git a/games-fps/transfusion-bin/Manifest b/games-fps/transfusion-bin/Manifest new file mode 100644 index 000000000000..db72731950a2 --- /dev/null +++ b/games-fps/transfusion-bin/Manifest @@ -0,0 +1,3 @@ +DIST transfusion-1.0-linux.i386.zip 40532193 SHA256 fda279d7bcf6531cbbabcc94177a8b0db96b465579acdc8f0412cac8a088987b +DIST transfusion-patch-1.01-linux.i386.zip 8790776 SHA256 929a74df264d199ce9b17458b7c741be2c98388581202661cee25893f4b4a1fb +DIST transfusion.png 2102 SHA256 7fbc033eb4dd16fd7886bc817450ebe57b27a6ef9587f41b12b8df89c18bd7f5 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/metadata.xml b/games-fps/transfusion-bin/metadata.xml new file mode 100644 index 000000000000..b23a3240761b --- /dev/null +++ b/games-fps/transfusion-bin/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>games</herd> + <upstream> + <remote-id type="sourceforge">blood</remote-id> + </upstream> +</pkgmetadata> 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..1c2361aa376b --- /dev/null +++ b/games-fps/transfusion-bin/transfusion-bin-1.01.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +inherit eutils games + +MY_PN=${PN/-bin/} +DESCRIPTION="Blood remake" +HOMEPAGE="http://www.transfusion-game.com/" +SRC_URI="mirror://sourceforge/blood/${MY_PN}-1.0-linux.i386.zip + mirror://sourceforge/blood/${MY_PN}-patch-${PV}-linux.i386.zip + mirror://gentoo/${MY_PN}.png" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="-* x86" +IUSE="" +RESTRICT="strip" + +RDEPEND="sys-libs/glibc" +DEPEND="${RDEPEND} + app-arch/unzip" + +S=${WORKDIR}/${MY_PN} + +dir=${GAMES_PREFIX_OPT}/${MY_PN} +Ddir=${D}/${dir} + +src_install() { + # 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... + dodir "${dir}" + cp -R * "${Ddir}" || die "cp failed" + + # ...and remove the docs since we don't need them installed twice. + rm -rf \ + "${Ddir}"/${MY_PN}/doc \ + "${Ddir}"/qw/*txt \ + "${Ddir}"/${MY_PN}/*txt + + doicon "${DISTDIR}"/${MY_PN}.png + games_make_wrapper ${MY_PN} ./${MY_PN}-glx "${dir}" "${dir}" + make_desktop_entry ${MY_PN} "Transfusion" ${MY_PN} + + prepgamesdirs +} |