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: hatari-1.3.0.ebuild ChangeLog
Date: Mon, 24 Aug 2009 21:02:33
Message-Id: E1MfggQ-0001Q4-Vd@stork.gentoo.org
1 mr_bones_ 09/08/24 21:02:30
2
3 Modified: ChangeLog
4 Added: hatari-1.3.0.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.6.13/cvs/Linux i686)
8
9 Revision Changes Path
10 1.24 games-emulation/hatari/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/hatari/ChangeLog?rev=1.24&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/hatari/ChangeLog?rev=1.24&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/hatari/ChangeLog?r1=1.23&r2=1.24
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-emulation/hatari/ChangeLog,v
19 retrieving revision 1.23
20 retrieving revision 1.24
21 diff -u -r1.23 -r1.24
22 --- ChangeLog 30 Jan 2009 00:43:40 -0000 1.23
23 +++ ChangeLog 24 Aug 2009 21:02:30 -0000 1.24
24 @@ -1,6 +1,11 @@
25 # ChangeLog for games-emulation/hatari
26 -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/hatari/ChangeLog,v 1.23 2009/01/30 00:43:40 mr_bones_ Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/hatari/ChangeLog,v 1.24 2009/08/24 21:02:30 mr_bones_ Exp $
30 +
31 +*hatari-1.3.0 (24 Aug 2009)
32 +
33 + 24 Aug 2009; Michael Sterrett <mr_bones_@g.o> +hatari-1.3.0.ebuild:
34 + version bump
35
36 *hatari-1.2.0 (30 Jan 2009)
37
38
39
40
41 1.1 games-emulation/hatari/hatari-1.3.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/hatari/hatari-1.3.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/hatari/hatari-1.3.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: hatari-1.3.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.3.0.ebuild,v 1.1 2009/08/24 21:02:30 mr_bones_ Exp $
51
52 EAPI=2
53 inherit games
54
55 DESCRIPTION="Atari ST emulator"
56 HOMEPAGE="http://hatari.berlios.de/"
57 SRC_URI="mirror://berlios/hatari/${P}.tar.bz2"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86"
62 IUSE=""
63
64 RDEPEND="media-libs/libsdl[X,audio,video]
65 sys-libs/readline
66 media-libs/libpng
67 sys-libs/zlib"
68 DEPEND="${RDEPEND}
69 dev-util/pkgconfig"
70 RDEPEND="${RDEPEND}
71 games-emulation/emutos"
72
73 src_compile() {
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 }