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