Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-action/chromium-bsu/
Date: Sat, 30 Sep 2017 04:48:09
Message-Id: 1506746870.d4ce6c317501a88956dbb57d36c2996eb199656a.kensington@gentoo
1 commit: d4ce6c317501a88956dbb57d36c2996eb199656a
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 30 04:47:25 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 30 04:47:50 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4ce6c31
7
8 games-action/chromium-bsu: remove 0.9.15.1-r0
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11
12 .../chromium-bsu/chromium-bsu-0.9.15.1.ebuild | 77 ----------------------
13 1 file changed, 77 deletions(-)
14
15 diff --git a/games-action/chromium-bsu/chromium-bsu-0.9.15.1.ebuild b/games-action/chromium-bsu/chromium-bsu-0.9.15.1.ebuild
16 deleted file mode 100644
17 index 37eaa2c3a02..00000000000
18 --- a/games-action/chromium-bsu/chromium-bsu-0.9.15.1.ebuild
19 +++ /dev/null
20 @@ -1,77 +0,0 @@
21 -# Copyright 1999-2013 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -inherit eutils gnome2-utils games
26 -
27 -DESCRIPTION="Chromium B.S.U. - an arcade game"
28 -HOMEPAGE="http://chromium-bsu.sourceforge.net/"
29 -SRC_URI="mirror://sourceforge/chromium-bsu/${P}.tar.gz"
30 -
31 -LICENSE="Clarified-Artistic"
32 -SLOT="0"
33 -KEYWORDS="amd64 x86"
34 -IUSE="mixer nls +sdl"
35 -
36 -RDEPEND="media-fonts/dejavu
37 - media-libs/quesoglc
38 - media-libs/glpng
39 - virtual/opengl
40 - virtual/glu
41 - x11-libs/libXmu
42 - mixer? ( media-libs/sdl-mixer )
43 - !mixer? (
44 - media-libs/freealut
45 - media-libs/openal
46 - )
47 - nls? ( virtual/libintl )
48 - sdl? (
49 - media-libs/libsdl[X]
50 - media-libs/sdl-image[png]
51 - )
52 - !sdl? ( media-libs/freeglut )"
53 -DEPEND="${RDEPEND}
54 - nls? ( sys-devel/gettext )"
55 -
56 -src_configure() {
57 - egamesconf \
58 - --disable-ftgl \
59 - --enable-glc \
60 - $(use_enable mixer sdlmixer) \
61 - $(use_enable !mixer openal) \
62 - $(use_enable nls) \
63 - $(use_enable sdl) \
64 - $(use_enable sdl sdlimage) \
65 - $(use_enable !sdl glut)
66 -}
67 -
68 -src_install() {
69 - emake DESTDIR="${D}" install
70 -
71 - # remove installed /usr/games/share stuff
72 - rm -rf "${D}"/"${GAMES_PREFIX}"/share/
73 -
74 - newicon -s 64 misc/${PN}.png ${PN}.png
75 - domenu misc/chromium-bsu.desktop
76 -
77 - # install documentation
78 - dodoc AUTHORS README NEWS
79 - dohtml "${S}"/data/doc/*.htm
80 - dohtml -r "${S}"/data/doc/images
81 -
82 - prepgamesdirs
83 -}
84 -
85 -pkg_preinst() {
86 - games_pkg_preinst
87 - gnome2_icon_savelist
88 -}
89 -
90 -pkg_postinst() {
91 - games_pkg_postinst
92 - gnome2_icon_cache_update
93 -}
94 -
95 -pkg_postrm() {
96 - gnome2_icon_cache_update
97 -}