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