summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2017-12-20 22:30:11 +0100
committerDavid Seifert <soap@gentoo.org>2017-12-21 02:32:59 +0100
commit3909381e87b920231db1fdb1bf39accfe8e70ef4 (patch)
treeee443af6564913f0b6c25a6c1472440f64fccbf8
parentgames-action/transcend: Remove old (diff)
downloadgentoo-3909381e87b920231db1fdb1bf39accfe8e70ef4.tar.gz
gentoo-3909381e87b920231db1fdb1bf39accfe8e70ef4.tar.bz2
gentoo-3909381e87b920231db1fdb1bf39accfe8e70ef4.zip
games-action/trine-bin: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
-rw-r--r--games-action/trine-bin/trine-bin-1.08.ebuild67
1 files changed, 0 insertions, 67 deletions
diff --git a/games-action/trine-bin/trine-bin-1.08.ebuild b/games-action/trine-bin/trine-bin-1.08.ebuild
deleted file mode 100644
index 0a3658bb2562..000000000000
--- a/games-action/trine-bin/trine-bin-1.08.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-# these are ELFs that include a ZIP (504b0304) appended to it
-# dd if=Trine.64.run of=Trine.64.zip ibs=$((0x342a8)) skip=1
-# dd if=Trine.32.run of=Trine.32.zip ibs=$((0x31c24)) skip=1
-# but `unzip` will skip the ELF at the start. both ELFs contain
-# the same zip appended, so only need to hash one of them.
-
-EAPI=5
-inherit unpacker eutils games
-
-DESCRIPTION="A physics-based action game with character-dependent solutions to challenges"
-HOMEPAGE="http://trine-thegame.com/"
-SRC_URI="Trine.64.run"
-
-LICENSE="frozenbyte-eula"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
-IUSE=""
-RESTRICT="fetch strip"
-
-DEPEND="app-arch/unzip"
-RDEPEND=">=sys-libs/glibc-2.4
- >=sys-devel/gcc-4.3.0
- dev-libs/libx86
- gnome-base/libglade"
-
-S=${WORKDIR}
-
-d=${GAMES_PREFIX_OPT}/${PN}
-QA_PREBUILT="${d#/}/trine-launcher ${d#/}/trine-bin ${d#/}/lib*/lib*.so*"
-
-pkg_nofetch() {
- einfo "Fetch ${SRC_URI} and put it into ${DISTDIR}"
- einfo "See http://www.humblebundle.com/ for more info."
-}
-
-src_unpack() {
- # manually run unzip as the initial seek causes it to exit(1)
- unpack_zip ${A}
- rm lib*/lib{gcc_s,m,rt,selinux}.so.?
-}
-
-src_install() {
- local b bb
- local sfx=$(usex x86 32 64)
-
- doicon Trine.xpm
- for b in bin launcher ; do
- bb="trine-${b}"
- exeinto ${d}
- newexe ${bb}${sfx} ${bb}
- games_make_wrapper ${bb} "./${bb}" "${d}"
- make_desktop_entry ${bb} "Trine ${b}" Trine
- done
-
- exeinto ${d}/lib${sfx}
- doexe lib${sfx}/*
-
- insinto ${d}
- doins -r binds config data dev profiles *.fbz *.glade trine-logo.png
-
- dodoc Trine_Manual_linux.pdf Trine_updates.txt
-
- prepgamesdirs
-}