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-2.7.1.ebuild
Date: Tue, 27 Jan 2009 03:16:28
Message-Id: E1LReR6-0000Kk-OM@stork.gentoo.org
1 mr_bones_ 09/01/27 03:16:24
2
3 Modified: ChangeLog
4 Added: stella-2.7.1.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.6.4/cvs/Linux 2.6.28.1 i686)
8
9 Revision Changes Path
10 1.33 games-emulation/stella/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/stella/ChangeLog?rev=1.33&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/stella/ChangeLog?rev=1.33&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/stella/ChangeLog?r1=1.32&r2=1.33
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-emulation/stella/ChangeLog,v
19 retrieving revision 1.32
20 retrieving revision 1.33
21 diff -u -r1.32 -r1.33
22 --- ChangeLog 29 Sep 2008 16:24:20 -0000 1.32
23 +++ ChangeLog 27 Jan 2009 03:16:24 -0000 1.33
24 @@ -1,6 +1,11 @@
25 # ChangeLog for games-emulation/stella
26 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/stella/ChangeLog,v 1.32 2008/09/29 16:24:20 mr_bones_ Exp $
28 +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/stella/ChangeLog,v 1.33 2009/01/27 03:16:24 mr_bones_ Exp $
30 +
31 +*stella-2.7.1 (27 Jan 2009)
32 +
33 + 27 Jan 2009; Michael Sterrett <mr_bones_@g.o> +stella-2.7.1.ebuild:
34 + version bump
35
36 29 Sep 2008; Michael Sterrett <mr_bones_@g.o>
37 files/stella-2.6.1-gcc43.patch:
38
39
40
41 1.1 games-emulation/stella/stella-2.7.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/stella/stella-2.7.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/stella/stella-2.7.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: stella-2.7.1.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-emulation/stella/stella-2.7.1.ebuild,v 1.1 2009/01/27 03:16:24 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="opengl"
63
64 DEPEND="media-libs/libsdl
65 media-libs/libpng
66 opengl? ( virtual/opengl )"
67
68 src_prepare() {
69 sed -i \
70 -e '/INSTALL/s/-s //' \
71 -e '/STRIP/d' \
72 -e "/icons/d" \
73 -e '/INSTALL.*DOCDIR/d' \
74 -e '/INSTALL.*\/applications/d' \
75 Makefile \
76 || die "sed failed"
77 }
78
79 src_configure() {
80 # not an autoconf script
81 ./configure \
82 --prefix="/usr" \
83 --bindir="${GAMES_BINDIR}" \
84 --docdir="/usr/share/doc/${PF}" \
85 --datadir="${GAMES_DATADIR}" \
86 $(use_enable opengl gl) \
87 || die
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install || die "emake install failed"
92 doicon src/common/stella.png
93 make_desktop_entry stella Stella
94 dohtml -r docs/*
95 dodoc Announce.txt Changes.txt Copyright.txt README-GP2X.txt README-SDL.txt Readme.txt Todo.txt
96 prepgamesdirs
97 }