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.7.ebuild
Date: Sat, 02 May 2009 08:55:06
Message-Id: E1M0Azw-0002wd-2U@stork.gentoo.org
1 mr_bones_ 09/05/02 08:55:04
2
3 Modified: ChangeLog
4 Added: stella-2.7.7.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.6.11/cvs/Linux i686)
8
9 Revision Changes Path
10 1.38 games-emulation/stella/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/stella/ChangeLog?rev=1.38&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/stella/ChangeLog?rev=1.38&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/stella/ChangeLog?r1=1.37&r2=1.38
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-emulation/stella/ChangeLog,v
19 retrieving revision 1.37
20 retrieving revision 1.38
21 diff -u -r1.37 -r1.38
22 --- ChangeLog 16 Apr 2009 06:22:57 -0000 1.37
23 +++ ChangeLog 2 May 2009 08:55:03 -0000 1.38
24 @@ -1,6 +1,11 @@
25 # ChangeLog for games-emulation/stella
26 # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/stella/ChangeLog,v 1.37 2009/04/16 06:22:57 mr_bones_ Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/stella/ChangeLog,v 1.38 2009/05/02 08:55:03 mr_bones_ Exp $
29 +
30 +*stella-2.7.7 (02 May 2009)
31 +
32 + 02 May 2009; Michael Sterrett <mr_bones_@g.o> +stella-2.7.7.ebuild:
33 + version bump
34
35 *stella-2.7.6 (16 Apr 2009)
36
37
38
39
40 1.1 games-emulation/stella/stella-2.7.7.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/stella/stella-2.7.7.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/stella/stella-2.7.7.ebuild?rev=1.1&content-type=text/plain
44
45 Index: stella-2.7.7.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/games-emulation/stella/stella-2.7.7.ebuild,v 1.1 2009/05/02 08:55:04 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
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 }