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/hatari: ChangeLog hatari-1.1.0.ebuild
Date: Tue, 13 Jan 2009 01:28:56
Message-Id: E1LMY5O-0003AW-BL@stork.gentoo.org
1 mr_bones_ 09/01/13 01:28:54
2
3 Modified: ChangeLog
4 Added: hatari-1.1.0.ebuild
5 Log:
6 version bump (bug #254111)
7 (Portage version: 2.1.6.4/cvs/Linux 2.6.27.8 i686)
8
9 Revision Changes Path
10 1.22 games-emulation/hatari/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/hatari/ChangeLog?rev=1.22&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/hatari/ChangeLog?rev=1.22&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/hatari/ChangeLog?r1=1.21&r2=1.22
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-emulation/hatari/ChangeLog,v
19 retrieving revision 1.21
20 retrieving revision 1.22
21 diff -u -r1.21 -r1.22
22 --- ChangeLog 24 Jul 2008 17:30:56 -0000 1.21
23 +++ ChangeLog 13 Jan 2009 01:28:54 -0000 1.22
24 @@ -1,6 +1,11 @@
25 # ChangeLog for games-emulation/hatari
26 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/hatari/ChangeLog,v 1.21 2008/07/24 17:30:56 armin76 Exp $
28 +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/hatari/ChangeLog,v 1.22 2009/01/13 01:28:54 mr_bones_ Exp $
30 +
31 +*hatari-1.1.0 (13 Jan 2009)
32 +
33 + 13 Jan 2009; Michael Sterrett <mr_bones_@g.o> +hatari-1.1.0.ebuild:
34 + version bump (bug #254111)
35
36 24 Jul 2008; Raúl Porcel <armin76@g.o> hatari-1.0.1.ebuild:
37 x86 stable wrt #231877
38
39
40
41 1.1 games-emulation/hatari/hatari-1.1.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/hatari/hatari-1.1.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/hatari/hatari-1.1.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: hatari-1.1.0.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/hatari/hatari-1.1.0.ebuild,v 1.1 2009/01/13 01:28:54 mr_bones_ Exp $
51
52 inherit games
53
54 DESCRIPTION="Atari ST emulator"
55 HOMEPAGE="http://hatari.berlios.de/"
56 SRC_URI="mirror://berlios/hatari/${P}.tar.bz2"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~x86"
61 IUSE=""
62
63 RDEPEND="media-libs/libsdl
64 sys-libs/readline
65 media-libs/libpng
66 sys-libs/zlib"
67 DEPEND="${RDEPEND}
68 dev-util/pkgconfig"
69 RDEPEND="${RDEPEND}
70 games-emulation/emutos"
71
72 src_compile() {
73 egamesconf || die
74 # broken deps in the makefiles - bug #164068
75 emake -C src/uae-cpu gencpu || die "emake failed"
76 emake -C src/uae-cpu all || die "emake failed"
77 emake -C src || die "emake failed"
78 }
79
80 src_install() {
81 dogamesbin "${S}/src/hatari" || die "dogamesbin failed"
82 insinto "${GAMES_DATADIR}/${PN}"
83 doins src/gui-sdl/font5x8.bmp src/gui-sdl/font10x16.bmp \
84 || die "doins failed"
85 dodoc readme.txt doc/*.txt
86 dohtml -r doc/
87 prepgamesdirs
88 }
89
90 pkg_postinst() {
91 games_pkg_postinst
92 echo
93 elog "You need a TOS ROM to run hatari. EmuTOS, a free TOS implementation,"
94 elog "has been installed in $(games_get_libdir) with a .img extension (there"
95 elog "are several from which to choose)."
96 elog
97 elog "Another option is to go to http://www.atari.st/ and get a real TOS:"
98 elog " http://www.atari.st/"
99 elog
100 elog "The first time you run hatari, you should configure it to find the"
101 elog "TOS you prefer to use. Be sure to save your settings."
102 echo
103 }