Portage is a package management system used by Gentoo Linux
# ChangeLog for games-emulation/hatari
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/hatari/ChangeLog,v 1.21 2008/07/24 17:30:56 armin76 Exp $
24 Jul 2008; Raúl Porcel
x86 stable wrt #231877
18 Jul 2008; Santiago M. Mola
amd64 stable wrt bug #231877
16 Jul 2008; nixnut
Stable on ppc wrt bug 231877
*hatari-1.0.1 (22 Jun 2008)
22 Jun 2008; Michael Sterrett
version bump
*hatari-1.0.0 (21 Mar 2008)
21 Mar 2008; Michael Sterrett
version bump
*hatari-0.95 (07 Aug 2007)
07 Aug 2007; Michael Sterrett
version bump
12 Mar 2007; Marius Mauch
hatari-0.80.ebuild, hatari-0.90.ebuild:
Replacing einfo with elog
21 Feb 2007; Piotr Jaroszyński
Transition to Manifest2.
06 Feb 2007; Michael Sterrett
work around more parallel make issues (bug #164068)
*hatari-0.90 (01 Oct 2006)
01 Oct 2006; Michael Sterrett
version bump (bug #149757)
24 Mar 2006; Chris Gianelloni
Removed sed-4 from DEPEND.
*hatari-0.80 (14 Oct 2005)
14 Oct 2005; Michael Sterrett
version bump
08 Jul 2005; Heinrich Wendel
add ~amd64
*hatari-0.70 (06 Jun 2005)
06 Jun 2005; David Holm
Version bumped
26 May 2004; Michael Sterrett
hatari-0.45.ebuild:
Clean older version
*hatari-0.45 (07 Nov 2003)
07 Nov 2003; Michael Sterrett
version bump
19 Sep 2003; Michael Sterrett
metadata.xml:
Add a DEPEND on games-emulation/emutos so hatari is usable "out of the box".
Modified pkg_postinst() to reflect this change.
More error messages.
New metadata.xml
The games-emulation/emutos relate to bug 28675
14 Sep 2003; Michael Sterrett
Install the font file so it actually works (bug 28675)
03 Sep 2003; David Holm
Added hatari to ~ppc.
04 Aug 2003; Michael Sterrett
tidy; error messages
*hatari-0.40 (15 Jul 2003)
15 Jul 2003; Mike Frysinger
Version bumpage #22095 + games.eclass support.
*hatari-0.20.2 (11 Dec 2002)
11 Dec 2002; Ryan Phillips
initial release
DIST hatari-1.0.1.tar.gz 879983 RMD160 04ef3fb627bcdbacdb1f05a7e04ec66933170eda SHA1 a5b55d42d169f166277fb6db267628472bb7fd21 SHA256 9eb3902fc6e8b18f93889ba122ac5a05cd1f769885f73a688e3c7ba5be85731d
EBUILD hatari-1.0.1.ebuild 1509 RMD160 1287c1baa6701f68fed3fbae9a8ee854f0e8030d SHA1 8ba53381c6970245df2e0d856cfa50f49f361994 SHA256 a0f732190454eba0294d9db6dc24bf33ab1fe3b32fd327c130a70f9a8a9f3c7a
MISC ChangeLog 2909 RMD160 2a8695f213a96c506c3c95981da2bebc1d936eb8 SHA1 de5d4d39355559f037308df8a5ae8bc07be0735f SHA256 0823ad46b412cf0120cd14be67541028b1570759a0296f4df8b37c6cdbc556da
MISC metadata.xml 158 RMD160 cbd9984bb6b426c8c9cee5022fe0a26261612fea SHA1 be5251fa1dacef5c41b74761bb1c8c54fb633b9e SHA256 1423a4fdd4a79b1728a2056d9e300f7e1074253095d82726218d9e9b953888a3
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/hatari/hatari-1.0.1.ebuild,v 1.4 2008/07/24 17:30:56 armin76 Exp $
inherit games
DESCRIPTION="Atari ST emulator"
HOMEPAGE="http://hatari.sourceforge.net/"
SRC_URI="mirror://sourceforge/hatari/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
DEPEND="media-libs/libsdl
sys-libs/readline
sys-libs/zlib"
RDEPEND="${DEPEND}
games-emulation/emutos"
src_compile() {
egamesconf || die
# broken deps in the makefiles - bug #164068
emake -C src/uae-cpu gencpu || die "emake failed"
emake -C src/uae-cpu all || die "emake failed"
emake -C src || die "emake failed"
}
src_install() {
dogamesbin "${S}/src/hatari" || die "dogamesbin failed"
insinto "${GAMES_DATADIR}/${PN}"
doins src/gui-sdl/font5x8.bmp src/gui-sdl/font10x16.bmp \
|| die "doins failed"
dodoc readme.txt doc/*.txt
dohtml -r doc/
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
echo
elog "You need a TOS ROM to run hatari. EmuTOS, a free TOS implementation,"
elog "has been installed in $(games_get_libdir) with a .img extension (there"
elog "are several from which to choose)."
elog
elog "Another option is to go to http://www.atari.st/ and get a real TOS:"
elog " http://www.atari.st/"
elog
elog "The first time you run hatari, you should configure it to find the"
elog "TOS you prefer to use. Be sure to save your settings."
echo
}