Gentoo Archives: gentoo-commits

From: Daniel Campbell <zlg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-action/beathazardultra/
Date: Sun, 10 Dec 2017 01:36:24
Message-Id: 1512869757.07bc229517788302a98653327f065b2c81a7da88.zlg@gentoo
1 commit: 07bc229517788302a98653327f065b2c81a7da88
2 Author: Daniel Campbell <zlg <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 10 01:35:57 2017 +0000
4 Commit: Daniel Campbell <zlg <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 10 01:35:57 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07bc2295
7
8 games-action/beathazardultra: remove old
9
10 Package-Manager: Portage-2.3.16, Repoman-2.3.6
11
12 .../beathazardultra-20130308.ebuild | 82 ----------------------
13 1 file changed, 82 deletions(-)
14
15 diff --git a/games-action/beathazardultra/beathazardultra-20130308.ebuild b/games-action/beathazardultra/beathazardultra-20130308.ebuild
16 deleted file mode 100644
17 index ae5c376da75..00000000000
18 --- a/games-action/beathazardultra/beathazardultra-20130308.ebuild
19 +++ /dev/null
20 @@ -1,82 +0,0 @@
21 -# Copyright 1999-2015 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -# TODO: unbundle allegro[gtk...] (no multilib on amd64 and 5.0.9 soname)
25 -
26 -EAPI=5
27 -inherit eutils unpacker games
28 -
29 -DESCRIPTION="Intense music-driven arcade shooter powered by your music"
30 -HOMEPAGE="http://www.coldbeamgames.com/"
31 -SRC_URI="beathazard-installer_03-08-13"
32 -
33 -LICENSE="all-rights-reserved"
34 -SLOT="0"
35 -KEYWORDS="-* ~amd64 ~x86"
36 -IUSE="bundled-libs"
37 -RESTRICT="bindist fetch splitdebug"
38 -
39 -MYGAMEDIR=${GAMES_PREFIX_OPT}/${PN}
40 -QA_PREBUILT="${MYGAMEDIR#/}/BeatHazard_Linux2
41 - ${MYGAMEDIR#/}/hge_lib/*"
42 -
43 -DEPEND="app-arch/unzip"
44 -RDEPEND="
45 - virtual/opengl
46 - amd64? (
47 - !bundled-libs? (
48 - >=media-libs/libpng-1.2.51:1.2[abi_x86_32(-)]
49 - >=virtual/jpeg-0-r2[abi_x86_32(-)]
50 - )
51 - >=x11-libs/gtk+-2.24.23:2[abi_x86_32(-)]
52 - >=virtual/opengl-7.0-r1[abi_x86_32(-)]
53 - >=x11-libs/libX11-1.6.2[abi_x86_32(-)]
54 - >=x11-libs/libXcursor-1.1.14[abi_x86_32(-)]
55 - >=x11-libs/libXinerama-1.1.3[abi_x86_32(-)]
56 - >=x11-libs/libXrandr-1.4.2[abi_x86_32(-)]
57 - )
58 - x86? (
59 - x11-libs/gtk+:2
60 - x11-libs/libX11
61 - x11-libs/libXcursor
62 - x11-libs/libXinerama
63 - x11-libs/libXrandr
64 - !bundled-libs? (
65 - media-libs/libpng:1.2
66 - virtual/jpeg
67 - )
68 - )"
69 -
70 -S=${WORKDIR}/data
71 -
72 -pkg_nofetch() {
73 - einfo "Please buy & download ${SRC_URI} from:"
74 - einfo " ${HOMEPAGE}"
75 - einfo "and move it to ${DISTDIR}"
76 - einfo
77 -}
78 -
79 -src_unpack() {
80 - unpack_zip ${A}
81 -}
82 -
83 -src_prepare() {
84 - if ! use bundled-libs ; then
85 - einfo "Removing bundled libs..."
86 - rm -v all/hge_lib/libjpeg.so* all/hge_lib/libpng12.so* || die
87 - fi
88 -}
89 -
90 -src_install() {
91 - insinto "${MYGAMEDIR}"
92 - doins -r all/*
93 -
94 - dodoc Linux.README
95 -
96 - newicon SmileLogo.png ${PN}.png
97 - make_desktop_entry ${PN}
98 - games_make_wrapper ${PN} "./BeatHazard_Linux2" "${MYGAMEDIR}" "${MYGAMEDIR}/hge_lib"
99 -
100 - fperms +x "${MYGAMEDIR}"/BeatHazard_Linux2
101 - prepgamesdirs
102 -}