diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2011-05-04 20:30:21 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2011-05-04 20:30:21 +0000 |
commit | 1183d7d9fd5cb3b5f2cf32e8397d25d1f8c1d7ad (patch) | |
tree | 8a44e721581f959e39494b2fb0c41e6d370f4c16 /games-emulation/atari800 | |
parent | Add blocker for net-libs/glib-networking to work around bug 365637; the exact... (diff) | |
download | gentoo-2-1183d7d9fd5cb3b5f2cf32e8397d25d1f8c1d7ad.tar.gz gentoo-2-1183d7d9fd5cb3b5f2cf32e8397d25d1f8c1d7ad.tar.bz2 gentoo-2-1183d7d9fd5cb3b5f2cf32e8397d25d1f8c1d7ad.zip |
version bump (bug #361981)
(Portage version: 2.1.9.42/cvs/Linux i686)
Diffstat (limited to 'games-emulation/atari800')
-rw-r--r-- | games-emulation/atari800/ChangeLog | 10 | ||||
-rw-r--r-- | games-emulation/atari800/atari800-2.2.1.ebuild | 78 |
2 files changed, 86 insertions, 2 deletions
diff --git a/games-emulation/atari800/ChangeLog b/games-emulation/atari800/ChangeLog index 88221f51c0d6..fa39070b45f8 100644 --- a/games-emulation/atari800/ChangeLog +++ b/games-emulation/atari800/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-emulation/atari800 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v 1.31 2010/06/05 23:07:29 reavertm Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v 1.32 2011/05/04 20:30:21 mr_bones_ Exp $ + +*atari800-2.2.1 (04 May 2011) + + 04 May 2011; Michael Sterrett <mr_bones_@gentoo.org> + +atari800-2.2.1.ebuild: + version bump (bug #361981) 05 Jun 2010; Maciej Mrozowski <reavertm@gentoo.org> atari800-2.1.0.ebuild: amd64 stable, bug 288658 diff --git a/games-emulation/atari800/atari800-2.2.1.ebuild b/games-emulation/atari800/atari800-2.2.1.ebuild new file mode 100644 index 000000000000..f5a4f58881aa --- /dev/null +++ b/games-emulation/atari800/atari800-2.2.1.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/atari800-2.2.1.ebuild,v 1.1 2011/05/04 20:30:21 mr_bones_ Exp $ + +EAPI=2 +inherit games + +DESCRIPTION="Atari 800 emulator" +HOMEPAGE="http://atari800.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz + mirror://sourceforge/${PN}/xf25.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" +IUSE="opengl readline sdl" + +RDEPEND="sdl? ( >=media-libs/libsdl-1.2.0[opengl?,video] ) + !sdl? ( x11-libs/libX11 ) + media-libs/libpng:0 + readline? ( sys-libs/readline )" +DEPEND="${RDEPEND} + !sdl? ( + x11-libs/libXt + x11-libs/libX11 + x11-proto/xextproto + x11-proto/xproto ) + app-arch/unzip" + +src_prepare() { + # remove some not-so-interesting ones + rm -f DOC/{INSTALL.*,*.in,CHANGES.OLD} + sed -i \ + -e "/CFG_FILE/s:/etc:${GAMES_SYSCONFDIR}:" \ + src/atari.c \ + || die "sed failed" + sed -i \ + -e 's/LDFLAGS="-s"/:/' \ + -e 's/-ltermcap//' \ + src/configure \ + || die "sed failed" + sed "s:/usr/share/games:${GAMES_DATADIR}:" \ + "${FILESDIR}"/atari800.cfg > "${T}"/atari800.cfg \ + || die "sed failed" +} + +src_configure() { + local target="x11" + use sdl && target="sdl" + + cd src && \ + egamesconf \ + $(use_enable readline monitor-readline) \ + $(use sdl && use_enable opengl) \ + --enable-crashmenu \ + --enable-monitorbreak \ + --enable-monitorhints \ + --enable-monitorasm \ + --enable-cursorblock \ + --enable-linuxjoystick \ + --enable-sound \ + --target=${target} +} + +src_compile() { + emake -C src || die "emake failed" +} + +src_install () { + dogamesbin src/atari800 || die "dogamesbin failed" + newman src/atari800.man atari800.6 + dodoc README.1ST DOC/* + insinto "${GAMES_DATADIR}/${PN}" + doins "${WORKDIR}/"*.ROM || die "doins failed (ROM)" + insinto "${GAMES_SYSCONFDIR}" + doins "${T}"/atari800.cfg || die "doins failed (cfg)" + prepgamesdirs +} |