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-emulation/stella: ChangeLog stella-3.4.ebuild
Date: Tue, 31 May 2011 14:58:18
Message-Id: 20110531145807.76E7B20054@flycatcher.gentoo.org
1 mr_bones_ 11/05/31 14:58:07
2
3 Modified: ChangeLog
4 Added: stella-3.4.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.1.9.42/cvs/Linux i686)
9
10 Revision Changes Path
11 1.61 games-emulation/stella/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/stella/ChangeLog?rev=1.61&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/stella/ChangeLog?rev=1.61&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/stella/ChangeLog?r1=1.60&r2=1.61
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-emulation/stella/ChangeLog,v
20 retrieving revision 1.60
21 retrieving revision 1.61
22 diff -u -r1.60 -r1.61
23 --- ChangeLog 15 Jan 2011 15:08:32 -0000 1.60
24 +++ ChangeLog 31 May 2011 14:58:07 -0000 1.61
25 @@ -1,6 +1,11 @@
26 # ChangeLog for games-emulation/stella
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/stella/ChangeLog,v 1.60 2011/01/15 15:08:32 maekke Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/stella/ChangeLog,v 1.61 2011/05/31 14:58:07 mr_bones_ Exp $
30 +
31 +*stella-3.4 (31 May 2011)
32 +
33 + 31 May 2011; Michael Sterrett <mr_bones_@g.o> +stella-3.4.ebuild:
34 + Version bump
35
36 15 Jan 2011; Markus Meier <maekke@g.o> stella-3.3.ebuild:
37 x86 stable, bug #350772
38
39
40
41 1.1 games-emulation/stella/stella-3.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/stella/stella-3.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/stella/stella-3.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: stella-3.4.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-emulation/stella/stella-3.4.ebuild,v 1.1 2011/05/31 14:58:07 mr_bones_ Exp $
51
52 EAPI=2
53 inherit eutils games
54
55 DESCRIPTION="Stella Atari 2600 VCS Emulator"
56 HOMEPAGE="http://stella.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86"
62 IUSE="joystick opengl"
63
64 DEPEND="media-libs/libsdl[joystick?,video]
65 x11-libs/libX11
66 media-libs/libpng
67 sys-libs/zlib
68 opengl? ( virtual/opengl )"
69
70 src_prepare() {
71 sed -i \
72 -e '/INSTALL/s/-s //' \
73 -e '/STRIP/d' \
74 -e "/icons/d" \
75 -e '/INSTALL.*DOCDIR/d' \
76 -e '/INSTALL.*\/applications/d' \
77 Makefile \
78 || die "sed failed"
79 }
80
81 src_configure() {
82 # not an autoconf script
83 ./configure \
84 --prefix="/usr" \
85 --bindir="${GAMES_BINDIR}" \
86 --docdir="/usr/share/doc/${PF}" \
87 --datadir="${GAMES_DATADIR}" \
88 $(use_enable opengl gl) \
89 $(use_enable joystick) \
90 || die
91 }
92
93 src_install() {
94 emake DESTDIR="${D}" install || die "emake install failed"
95 doicon src/common/stella.png
96 make_desktop_entry stella Stella
97 dohtml -r docs/*
98 dodoc Announce.txt Changes.txt Copyright.txt README-SDL.txt Readme.txt Todo.txt
99 prepgamesdirs
100 }