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-arcade/burgerspace: burgerspace-1.9.2.ebuild ChangeLog
Date: Tue, 26 Feb 2013 05:16:23
Message-Id: 20130226051617.B2F092171D@flycatcher.gentoo.org
1 mr_bones_ 13/02/26 05:16:17
2
3 Modified: ChangeLog
4 Added: burgerspace-1.9.2.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.1.11.50/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.37 games-arcade/burgerspace/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/burgerspace/ChangeLog?rev=1.37&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/burgerspace/ChangeLog?rev=1.37&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/burgerspace/ChangeLog?r1=1.36&r2=1.37
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-arcade/burgerspace/ChangeLog,v
20 retrieving revision 1.36
21 retrieving revision 1.37
22 diff -u -r1.36 -r1.37
23 --- ChangeLog 6 Dec 2012 04:47:40 -0000 1.36
24 +++ ChangeLog 26 Feb 2013 05:16:17 -0000 1.37
25 @@ -1,6 +1,12 @@
26 # ChangeLog for games-arcade/burgerspace
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/burgerspace/ChangeLog,v 1.36 2012/12/06 04:47:40 mr_bones_ Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/burgerspace/ChangeLog,v 1.37 2013/02/26 05:16:17 mr_bones_ Exp $
31 +
32 +*burgerspace-1.9.2 (26 Feb 2013)
33 +
34 + 26 Feb 2013; Michael Sterrett <mr_bones_@g.o>
35 + +burgerspace-1.9.2.ebuild:
36 + version bump
37
38 06 Dec 2012; Michael Sterrett <mr_bones_@g.o>
39 -burgerspace-1.9.0.ebuild:
40
41
42
43 1.1 games-arcade/burgerspace/burgerspace-1.9.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/burgerspace/burgerspace-1.9.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/burgerspace/burgerspace-1.9.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: burgerspace-1.9.2.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-arcade/burgerspace/burgerspace-1.9.2.ebuild,v 1.1 2013/02/26 05:16:17 mr_bones_ Exp $
53
54 EAPI=5
55 inherit autotools games
56
57 DESCRIPTION="Clone of the 1982 BurgerTime video game by Data East"
58 HOMEPAGE="http://perso.b2b2c.ca/sarrazip/dev/burgerspace.html"
59 SRC_URI="http://perso.b2b2c.ca/sarrazip/dev/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
64 IUSE="network"
65 RESTRICT="test" # doesn't really test anything
66
67 RDEPEND=">=dev-games/flatzebra-0.1.6"
68 DEPEND="${RDEPEND}
69 virtual/pkgconfig"
70
71 src_prepare() {
72 sed -i \
73 -e "/^pkgsounddir/ s:sounds.*:\$(PACKAGE)/sounds:" \
74 -e "/^desktopentrydir/ s:=.*:=/usr/share/applications:" \
75 -e "/^pixmapdir/ s:=.*:=/usr/share/pixmaps:" \
76 src/Makefile.am \
77 || die
78 sed -i \
79 -e "/Categories/s:Application;::" \
80 -e "/Icon/s:\..*::" \
81 -e "/Terminal/s:0:false:" \
82 src/burgerspace.desktop.in \
83 || die
84 eautoreconf
85 }
86
87 src_configure() {
88 egamesconf \
89 $(use_with network)
90 }
91
92 src_install() {
93 emake -C src DESTDIR="${D}" install
94 doman doc/${PN}.6
95 dodoc AUTHORS NEWS README THANKS
96 prepgamesdirs
97 }