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-rpg/bass | |
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-rpg/bass')
-rw-r--r-- | games-rpg/bass/Manifest | 2 | ||||
-rw-r--r-- | games-rpg/bass/bass-1.2-r1.ebuild | 33 | ||||
-rwxr-xr-x | games-rpg/bass/files/scummvmGetLang.sh | 19 | ||||
-rw-r--r-- | games-rpg/bass/metadata.xml | 8 |
4 files changed, 62 insertions, 0 deletions
diff --git a/games-rpg/bass/Manifest b/games-rpg/bass/Manifest new file mode 100644 index 000000000000..b72a8e4af017 --- /dev/null +++ b/games-rpg/bass/Manifest @@ -0,0 +1,2 @@ +DIST bass-cd-1.2.zip 69377781 SHA256 53209b9400eab6fd7fa71518b2f357c8de75cfeaa5ba57024575ab79cc974593 SHA512 ff896e723b4dbf2cc52851ee1260c1006aa285b768a727974719d63509bdac1c65be9ea565eb037d5e9e1c8fd8fd76a8c04776bcde46616ca9ccce18ea498d64 WHIRLPOOL 61fe423bd4738eaa41a7cbae2dce8408798b9ffd8c8e1ff19164190fb799f999d1d41f549ab52f162bb36d168b5c5b2c54d6d501ae8eb0b76e163b122ae5286b +DIST bass.png 27613 SHA256 cd27b33772c967bb2c248dcfaa187adc0ee4436d03899c8a57ccc4c6fd92e92c SHA512 c0f62257f025970f51f32a7f3284cf117a091d40bbcd6c7503e8f0e8e98954cf96e35a04a4e633a04a721ff01beb7a6e0f4c883e286e477c3e065d411db4c87e WHIRLPOOL 09e062628507e98e6365615dad4f88d66dfeb8ed6553b2ad0041c9fb7cfa461a7fa8e18f856c9dbd986740824b0016c34eb9dfa0c964dd3a9b5d761e06ea6f16 diff --git a/games-rpg/bass/bass-1.2-r1.ebuild b/games-rpg/bass/bass-1.2-r1.ebuild new file mode 100644 index 000000000000..613072cc94c4 --- /dev/null +++ b/games-rpg/bass/bass-1.2-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ +EAPI=5 +inherit eutils games + +DESCRIPTION="Beneath a Steel Sky: a science fiction thriller set in a bleak vision of the future" +#HOMEPAGE="http://www.revgames.com/_display.php?id=16" +HOMEPAGE="http://en.wikipedia.org/wiki/Beneath_a_Steel_Sky" +SRC_URI="mirror://sourceforge/scummvm/bass-cd-${PV}.zip + mirror://gentoo/${PN}.png" + +LICENSE="bass" +SLOT="0" +KEYWORDS="amd64 ~ppc ~ppc64 x86" +IUSE="" + +RDEPEND=">=games-engines/scummvm-0.5.0" +DEPEND="${RDEPEND} + app-arch/unzip" + +S=${WORKDIR}/bass-cd-${PV} + +src_install() { + games_make_wrapper bass "scummvm -f -p \"${GAMES_DATADIR}/${PN}\" -q\$(scummvmGetLang.sh) sky" . + dogamesbin "${FILESDIR}"/scummvmGetLang.sh + insinto "${GAMES_DATADIR}"/${PN} + doins sky.* + dodoc readme.txt + doicon "${DISTDIR}"/${PN}.png + make_desktop_entry ${PN} "Beneath a Steel Sky" + prepgamesdirs +} diff --git a/games-rpg/bass/files/scummvmGetLang.sh b/games-rpg/bass/files/scummvmGetLang.sh new file mode 100755 index 000000000000..b313cc7d81da --- /dev/null +++ b/games-rpg/bass/files/scummvmGetLang.sh @@ -0,0 +1,19 @@ +tmplang="$LANG" +test "$LC_MESSAGES" != "" && tmplang="$LC_MESSAGES" +test "$LC_ALL" != "" && tmplang="$LC_ALL" +test "$LANGUAGE" != "" && tmplang="$LANGUAGE" + +lang=`echo $tmplang|cut -d "_" -f 1` + +case $lang in + en) + lang=gb + echo $tmplang | grep en_US &>/dev/null && lang=en + ;; + de|fr|it|pt|es|se) + ;; + *) + lang=gb + ;; +esac +echo $lang diff --git a/games-rpg/bass/metadata.xml b/games-rpg/bass/metadata.xml new file mode 100644 index 000000000000..f325c8eea004 --- /dev/null +++ b/games-rpg/bass/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">scummvm</remote-id> + </upstream> +</pkgmetadata> |