summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2015-03-12 19:02:27 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2015-03-12 19:02:27 +0000
commit720e2cb49e1a7cb6b46d2fe9b875d2ab2be37bf0 (patch)
tree1d3312fb044142f0e7a488130ae927d04d1d5320 /games-arcade
parentImprove changelog description (diff)
downloadgentoo-2-720e2cb49e1a7cb6b46d2fe9b875d2ab2be37bf0.tar.gz
gentoo-2-720e2cb49e1a7cb6b46d2fe9b875d2ab2be37bf0.tar.bz2
gentoo-2-720e2cb49e1a7cb6b46d2fe9b875d2ab2be37bf0.zip
old
(Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-arcade')
-rw-r--r--games-arcade/gish-demo/ChangeLog5
-rw-r--r--games-arcade/gish-demo/gish-demo-1.0.0.ebuild52
2 files changed, 4 insertions, 53 deletions
diff --git a/games-arcade/gish-demo/ChangeLog b/games-arcade/gish-demo/ChangeLog
index 77f7ee3e57af..6589f359f986 100644
--- a/games-arcade/gish-demo/ChangeLog
+++ b/games-arcade/gish-demo/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for games-arcade/gish-demo
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-arcade/gish-demo/ChangeLog,v 1.17 2015/02/25 15:57:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-arcade/gish-demo/ChangeLog,v 1.18 2015/03/12 19:02:27 mr_bones_ Exp $
+
+ 12 Mar 2015; Michael Sterrett <mr_bones_@gentoo.org> -gish-demo-1.0.0.ebuild:
+ old
25 Feb 2015; Agostino Sarubbo <ago@gentoo.org> gish-demo-1.6.ebuild:
Stable for x86, wrt bug #540610
diff --git a/games-arcade/gish-demo/gish-demo-1.0.0.ebuild b/games-arcade/gish-demo/gish-demo-1.0.0.ebuild
deleted file mode 100644
index 8585c16c79d5..000000000000
--- a/games-arcade/gish-demo/gish-demo-1.0.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-arcade/gish-demo/gish-demo-1.0.0.ebuild,v 1.16 2014/05/06 16:18:43 ulm Exp $
-
-inherit eutils multilib games
-
-DESCRIPTION="play as an amorphous ball of tar that rolls and squishes around"
-HOMEPAGE="http://www.chroniclogic.com/gish.htm"
-SRC_URI="ftp://demos.garagegames.com/gish/gishdemo-${PV}.tar.gz"
-
-LICENSE="all-rights-reserved"
-SLOT="0"
-KEYWORDS="-* ~amd64 x86"
-IUSE=""
-RESTRICT="mirror bindist strip"
-QA_PREBUILT="${GAMES_PREFIX_OPT:1}/${PN}/gish"
-
-RDEPEND="media-libs/libsdl
- >=media-libs/openal-1.6.372
- media-libs/freealut
- virtual/opengl
- media-libs/libvorbis
- amd64? (
- app-emulation/emul-linux-x86-xlibs
- app-emulation/emul-linux-x86-sdl
- )"
-
-S=${WORKDIR}/gishdemo
-
-src_install() {
- local dir=${GAMES_PREFIX_OPT}/${PN}
-
- insinto "${dir}"
- doins -r * || die "doins failed"
- fperms +x "${dir}"/gish
- games_make_wrapper gish ./gish-wrapper "${dir}"
-
- # looks like when they built the game they accidently
- # linked it against openssl ... lets fake it
- use amd64 && multilib_toolchain_setup x86
- dosym /$(get_libdir)/libc.so.6 "${dir}"/libssl.so.4
- dosym /$(get_libdir)/libc.so.6 "${dir}"/libcrypto.so.4
-
- # it wants libopenal.so.0 but seems to work with libopenal.so.1
- # (tested with media-libs/openal-1.6.372)
- dosym /usr/$(get_libdir)/libopenal.so.1 "${dir}"/libopenal.so.0
-
- exeinto "${dir}"
- doexe "${FILESDIR}"/gish-wrapper || die "doexe failed"
-
- prepgamesdirs
-}