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