summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Volkov <pva@gentoo.org>2007-02-11 20:44:33 +0000
committerPeter Volkov <pva@gentoo.org>2007-02-11 20:44:33 +0000
commit827ad77083ac367de5ac2cab22e7be5971eff3af (patch)
treee284e28c0a6f0b8782208d2813156ef735fc9c77 /app-emulation
parentUnmasked udev-104-r10. (diff)
downloadgentoo-2-827ad77083ac367de5ac2cab22e7be5971eff3af.tar.gz
gentoo-2-827ad77083ac367de5ac2cab22e7be5971eff3af.tar.bz2
gentoo-2-827ad77083ac367de5ac2cab22e7be5971eff3af.zip
Update CVS snapshot. Clean out unused versions.
(Portage version: 2.1.2-r9)
Diffstat (limited to 'app-emulation')
-rw-r--r--app-emulation/e-uae/ChangeLog8
-rw-r--r--app-emulation/e-uae/e-uae-0.8.28-r1.ebuild127
-rw-r--r--app-emulation/e-uae/e-uae-0.8.29_pre20070126.ebuild (renamed from app-emulation/e-uae/e-uae-0.8.29_pre20061116.ebuild)7
-rw-r--r--app-emulation/e-uae/files/digest-e-uae-0.8.28-r13
-rw-r--r--app-emulation/e-uae/files/digest-e-uae-0.8.29_pre200611163
-rw-r--r--app-emulation/e-uae/files/digest-e-uae-0.8.29_pre200701263
6 files changed, 13 insertions, 138 deletions
diff --git a/app-emulation/e-uae/ChangeLog b/app-emulation/e-uae/ChangeLog
index 37627c0ced95..24d7bf586c8b 100644
--- a/app-emulation/e-uae/ChangeLog
+++ b/app-emulation/e-uae/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-emulation/e-uae
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/e-uae/ChangeLog,v 1.28 2007/02/11 19:49:22 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/e-uae/ChangeLog,v 1.29 2007/02/11 20:44:33 pva Exp $
+
+*e-uae-0.8.29_pre20070126 (11 Feb 2007)
+
+ 11 Feb 2007; <pva@gentoo.org> -e-uae-0.8.28-r1.ebuild,
+ -e-uae-0.8.29_pre20061116.ebuild, +e-uae-0.8.29_pre20070126.ebuild:
+ Update CVS snapshot. Clean out unused versions.
*e-uae-0.8.29_pre20061116-r1 (11 Feb 2007)
diff --git a/app-emulation/e-uae/e-uae-0.8.28-r1.ebuild b/app-emulation/e-uae/e-uae-0.8.28-r1.ebuild
deleted file mode 100644
index 469ba5b6e5cc..000000000000
--- a/app-emulation/e-uae/e-uae-0.8.28-r1.ebuild
+++ /dev/null
@@ -1,127 +0,0 @@
-# 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-r1.ebuild,v 1.8 2006/11/14 13:33:36 pva Exp $
-
-inherit eutils flag-o-matic
-
-DESCRIPTION="The Ubiquitous Amiga Emulator with an emulation core largely based on WinUAE"
-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
- virtual/cdrtools"
-
-DEPEND="$RDEPEND
- X? ( dga? ( x11-proto/xf86vidmodeproto
- x11-proto/xf86dgaproto ) )"
-
-pkg_setup() {
- # Sound setup.
- if use alsa; then
- elog "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
- elog "Choosing sdl-sound as sound target to use."
- myconf="--without-alsa --with-sdl-sound"
- fi
- elif use oss ; then
- elog "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
- elog "Using X11 for video output."
- myconf="$myconf --without-curses --without-sdl-gfx"
- use dga && myconf="$myconf --enable-dga --enable-vidmode"
- elif use sdl ; then
- elog "Using sdl for video output."
- myconf="$myconf --with-sdl --with-sdl-gfx --without-curses"
- elif use ncurses; then
- elog "Using ncurses for video output."
- 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}/${P}-shm-crash.patch"
- epatch "${FILESDIR}/${P}-fix-joystick-conflicts.patch"
- epatch "${FILESDIR}/${P}-fix-atoscroll-screen-support.patch"
- epatch "${FILESDIR}/${P}-fix-JIT-cache-on-NX-cpu.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
-}
diff --git a/app-emulation/e-uae/e-uae-0.8.29_pre20061116.ebuild b/app-emulation/e-uae/e-uae-0.8.29_pre20070126.ebuild
index 657240e0f8a7..3821758b1dbb 100644
--- a/app-emulation/e-uae/e-uae-0.8.29_pre20061116.ebuild
+++ b/app-emulation/e-uae/e-uae-0.8.29_pre20070126.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2007 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.29_pre20061116.ebuild,v 1.1 2006/11/17 13:51:30 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/e-uae/e-uae-0.8.29_pre20070126.ebuild,v 1.1 2007/02/11 20:44:33 pva Exp $
inherit eutils flag-o-matic
@@ -90,7 +90,7 @@ pkg_setup() {
use gtk && myconf="$myconf --enable-ui --enable-threads"
use gtk || myconf="$myconf --disable-ui"
- use capslib && myconf="$myconf --with-caps"
+ myconf="$myconf $(use_with capslib caps)"
myconf="$myconf --with-zlib"
@@ -101,7 +101,6 @@ pkg_setup() {
}
src_compile() {
- #/usr/share/X11/xkb /usr/lib/X11/xkb /usr/X11R6/lib/X11/xkb
strip-flags
econf ${myconf} \
diff --git a/app-emulation/e-uae/files/digest-e-uae-0.8.28-r1 b/app-emulation/e-uae/files/digest-e-uae-0.8.28-r1
deleted file mode 100644
index f73743e1c92c..000000000000
--- a/app-emulation/e-uae/files/digest-e-uae-0.8.28-r1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 9fc186f9256d04f940304044e29175ef e-uae-0.8.28.tar.bz2 1148790
-RMD160 7e9fa21fa14b0ca3a32a28ccb236b9d7628a7f69 e-uae-0.8.28.tar.bz2 1148790
-SHA256 afc8b30fb9aa0819a4e53b3eb0db8e658e5a2b23d7dbf436f6b5a49b2269da86 e-uae-0.8.28.tar.bz2 1148790
diff --git a/app-emulation/e-uae/files/digest-e-uae-0.8.29_pre20061116 b/app-emulation/e-uae/files/digest-e-uae-0.8.29_pre20061116
deleted file mode 100644
index 27866756546d..000000000000
--- a/app-emulation/e-uae/files/digest-e-uae-0.8.29_pre20061116
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 56199ed1b41d2728c735ec8707284d7f e-uae-0.8.29-CVS-20061116.tar.bz2 1069928
-RMD160 656b81c306724ef008508f9ad08e0fe34482526a e-uae-0.8.29-CVS-20061116.tar.bz2 1069928
-SHA256 b5ea42c672a0dc2ec4e185261631a28b38ab97b04497ae8c63f6e540b56ed31d e-uae-0.8.29-CVS-20061116.tar.bz2 1069928
diff --git a/app-emulation/e-uae/files/digest-e-uae-0.8.29_pre20070126 b/app-emulation/e-uae/files/digest-e-uae-0.8.29_pre20070126
new file mode 100644
index 000000000000..6537ca96d743
--- /dev/null
+++ b/app-emulation/e-uae/files/digest-e-uae-0.8.29_pre20070126
@@ -0,0 +1,3 @@
+MD5 336cbdc811e78894a4f8ac377b0841fe e-uae-0.8.29-CVS-20070126.tar.bz2 1071407
+RMD160 b0e54200db9d3b2c95af615a71b294babcf02d6f e-uae-0.8.29-CVS-20070126.tar.bz2 1071407
+SHA256 35ff2f46d639deff5938ecd0ea17e90dba1e9d8a3ca388b01e86bff1187cceb5 e-uae-0.8.29-CVS-20070126.tar.bz2 1071407