-MD5 1ba5d65b48cb6fa4c5d849436e0c49ab ChangeLog 1799
-MD5 624de9bf2b723d7882a4a8e2485f71ef e-uae-0.8.27.ebuild 1635
-MD5 d9c2dd5174bb239ea1bf58e729b8c0db e-uae-0.8.28-r1.ebuild 3595
-MD5 1a85d3c4ef89e6d13eacb5f5a9f0b15d e-uae-0.8.28.ebuild 3431
+MD5 230c8e420072caf8d1fe3918f950075f ChangeLog 2006
+MD5 b4978586ea0a60b6da62bcdd68cc68a5 e-uae-0.8.27.ebuild 1672
+MD5 9e3f176c966871e88ead9e59811fed8c e-uae-0.8.28-r1.ebuild 3634
MD5 851c3d9c0e2846a1241c99e5ff19bf01 files/digest-e-uae-0.8.27 66
-MD5 856093362e575805efb4ef8117d8f98c files/digest-e-uae-0.8.28 66
MD5 856093362e575805efb4ef8117d8f98c files/digest-e-uae-0.8.28-r1 66
MD5 781bdea3cdebd0d2b11de41508613ab5 files/e-uae-0.8.28-fix-JIT-cache-on-NX-cpu.patch 660
MD5 9f2bf139b66d3a4c3e6c8405c428ae60 files/e-uae-0.8.28-fix-atoscroll-screen-support.patch 3178
+++ /dev/null
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/e-uae/e-uae-0.8.28.ebuild,v 1.2 2006/06/14 14:17:05 pva Exp $
-
-inherit eutils flag-o-matic
-
-DESCRIPTION="The Eggplant Umiquious Amiga Emulator"
-HOMEPAGE="http://www.rcdrummond.net/uae/"
-SRC_URI="http://www.rcdrummond.net/uae/${P}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="X dga ncurses sdl gtk alsa oss sdl-sound capslib"
-
-# Note: opposed to ./configure --help zlib support required! Check
-# src/Makefile.am that includes zfile.c unconditionaly.
-RDEPEND="X? ( || ( ( x11-libs/libXt
- x11-libs/libxkbfile
- x11-libs/libXext
- dga? ( x11-libs/libXxf86dga
- x11-libs/libXxf86vm )
- )
- virtual/x11
- )
- )
- !X? ( sdl? ( media-libs/libsdl )
- !sdl? ( sys-libs/ncurses ) )
- alsa? ( media-libs/alsa-lib )
- !alsa? ( sdl-sound? ( media-libs/sdl-sound ) )
- gtk? ( >=x11-libs/gtk+-2.0 )
- capslib? ( games-emulation/caps )
- sys-libs/zlib
- app-cdr/cdrtools"
-
-DEPEND="$RDEPEND
- X? ( dga? ( x11-proto/xf86vidmodeproto
- x11-proto/xf86dgaproto ) )"
-
-pkg_setup() {
- # Sound setup.
- if use alsa; then
- einfo "Choosing alsa as sound target to use."
- myconf="--with-alsa --without-sdl-sound"
- elif use sdl-sound ; then
- if ! use sdl ; then
- ewarn "sdl-sound is not enabled because sdl is switched off. Leaving"
- ewarn "sound on oss autodetection."
- myconf="--without-alsa --without-sdl-sound"
- ebeep
- else
- einfo "Choosing sdl-sound as sound target to use."
- myconf="--without-alsa --with-sdl-sound"
- fi
- elif use oss ; then
- einfo "Choosing oss as sound target to use."
- ewarn "oss will be autodetected. See output of configure."
- myconf="--without-alsa --without-sdl-sound"
- else
- ewarn "There is no alsa, sdl-sound or oss in USE. Sound target disabled!"
- myconf="--disable-audio"
- fi
-
- # VIDEO setup. X is autodetected (there is no --with-X option).
- if use X ; then
- myconf="$myconf --without-curses --without-sdl-gfx"
- use dga && myconf="$myconf --enable-dga --enable-vidmode"
- elif use sdl ; then
- myconf="$myconf --with-sdl --with-sdl-gfx --without-curses"
- elif use ncurses; then
- myconf="$myconf --with-curses --without-sdl-gfx"
- else
- ewarn "There is no X or sdl or ncurses in USE!"
- ewarn "Following upstream falling back on ncurses."
- myconf="$myconf --with-curses --without-sdl-gfx"
- ebeep
- fi
-
- use gtk && myconf="$myconf --enable-ui --enable-threads"
- use gtk || myconf="$myconf --disable-ui"
-
- use capslib && myconf="$myconf --with-caps"
-
- myconf="$myconf --with-zlib"
-
- # And explicitly state defaults:
- myconf="$myconf --enable-aga"
- myconf="$myconf --enable-autoconfig --enable-scsi-device --enable-cdtv --enable-cd32"
- myconf="$myconf --enable-bsdsock"
-}
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- epatch ${FILESDIR}/e-uae-0.8.28-shm-crash.patch
-}
-
-src_compile() {
- strip-flags
-
- econf ${myconf} \
- --with-libscg-includedir=/usr/include/scsilib \
- || die "./configure failed"
-
- emake -j1 || die "emake failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "make install failed"
-
- insinto /usr/share/uae/amiga-tools
- doins amiga/{*hack,trans*,uae*,*.library}
-
- # Rename it to e-uae
- mv ${D}/usr/bin/uae ${D}/usr/bin/e-uae
- mv ${D}/usr/bin/readdisk ${D}/usr/bin/e-readdisk
- mv ${D}/usr/share/uae ${D}/usr/share/${PN}
-
- dodoc docs/* README ChangeLog CHANGES
-}