Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-action/chromium-bsu: chromium-bsu-0.9.15.1.ebuild ChangeLog
Date: Sun, 26 May 2013 04:23:19
Message-Id: 20130526042312.896AF2171D@flycatcher.gentoo.org
1 mr_bones_ 13/05/26 04:23:12
2
3 Modified: ChangeLog
4 Added: chromium-bsu-0.9.15.1.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.1.11.62/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.3 games-action/chromium-bsu/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/chromium-bsu/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/chromium-bsu/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/chromium-bsu/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-action/chromium-bsu/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 5 Nov 2012 22:42:32 -0000 1.2
24 +++ ChangeLog 26 May 2013 04:23:12 -0000 1.3
25 @@ -1,6 +1,12 @@
26 # ChangeLog for games-action/chromium-bsu
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-action/chromium-bsu/ChangeLog,v 1.2 2012/11/05 22:42:32 blueness Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/games-action/chromium-bsu/ChangeLog,v 1.3 2013/05/26 04:23:12 mr_bones_ Exp $
31 +
32 +*chromium-bsu-0.9.15.1 (26 May 2013)
33 +
34 + 26 May 2013; Michael Sterrett <mr_bones_@g.o>
35 + +chromium-bsu-0.9.15.1.ebuild:
36 + version bump
37
38 05 Nov 2012; Anthony G. Basile <blueness@g.o>
39 chromium-bsu-0.9.15.ebuild:
40
41
42
43 1.1 games-action/chromium-bsu/chromium-bsu-0.9.15.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/chromium-bsu/chromium-bsu-0.9.15.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/chromium-bsu/chromium-bsu-0.9.15.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: chromium-bsu-0.9.15.1.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/games-action/chromium-bsu/chromium-bsu-0.9.15.1.ebuild,v 1.1 2013/05/26 04:23:12 mr_bones_ Exp $
53
54 EAPI=5
55 inherit eutils gnome2-utils games
56
57 DESCRIPTION="Chromium B.S.U. - an arcade game"
58 HOMEPAGE="http://chromium-bsu.sourceforge.net/"
59 SRC_URI="mirror://sourceforge/chromium-bsu/${P}.tar.gz"
60
61 LICENSE="Clarified-Artistic"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE="mixer nls +sdl"
65
66 RDEPEND="media-fonts/dejavu
67 media-libs/quesoglc
68 media-libs/glpng
69 virtual/opengl
70 virtual/glu
71 x11-libs/libXmu
72 mixer? ( media-libs/sdl-mixer )
73 !mixer? (
74 media-libs/freealut
75 media-libs/openal
76 )
77 nls? ( virtual/libintl )
78 sdl? (
79 media-libs/libsdl[X]
80 media-libs/sdl-image[png]
81 )
82 !sdl? ( media-libs/freeglut )"
83 DEPEND="${RDEPEND}
84 nls? ( sys-devel/gettext )"
85
86 src_configure() {
87 egamesconf \
88 --disable-ftgl \
89 --enable-glc \
90 $(use_enable mixer sdlmixer) \
91 $(use_enable !mixer openal) \
92 $(use_enable nls) \
93 $(use_enable sdl) \
94 $(use_enable sdl sdlimage) \
95 $(use_enable !sdl glut)
96 }
97
98 src_install() {
99 emake DESTDIR="${D}" install
100
101 # remove installed /usr/games/share stuff
102 rm -rf "${D}"/"${GAMES_PREFIX}"/share/
103
104 newicon -s 64 misc/${PN}.png ${PN}.png
105 domenu misc/chromium-bsu.desktop
106
107 # install documentation
108 dodoc AUTHORS README NEWS
109 dohtml "${S}"/data/doc/*.htm
110 dohtml -r "${S}"/data/doc/images
111
112 prepgamesdirs
113 }
114
115 pkg_preinst() {
116 games_pkg_preinst
117 gnome2_icon_savelist
118 }
119
120 pkg_postinst() {
121 games_pkg_postinst
122 gnome2_icon_cache_update
123 }
124
125 pkg_postrm() {
126 gnome2_icon_cache_update
127 }