From 0feeb3027f52b884a6ab1a936c23f3910799abd2 Mon Sep 17 00:00:00 2001 From: Peter Volkov Date: Fri, 17 Nov 2006 13:51:30 +0000 Subject: [PATCH] Bump for CVS snapshot. Removed unused ebuilds. Package-Manager: portage-2.1.1 --- app-emulation/e-uae/ChangeLog | 9 +- .../e-uae/e-uae-0.8.29_pre20061116.ebuild | 122 ++++++++++++++++++ .../files/digest-e-uae-0.8.29_pre20061116 | 3 + 3 files changed, 133 insertions(+), 1 deletion(-) create mode 100644 app-emulation/e-uae/e-uae-0.8.29_pre20061116.ebuild create mode 100644 app-emulation/e-uae/files/digest-e-uae-0.8.29_pre20061116 diff --git a/app-emulation/e-uae/ChangeLog b/app-emulation/e-uae/ChangeLog index ce91bbfb6ac7..3c84eea085fb 100644 --- a/app-emulation/e-uae/ChangeLog +++ b/app-emulation/e-uae/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-emulation/e-uae # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/e-uae/ChangeLog,v 1.25 2006/11/14 21:18:54 ticho Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/e-uae/ChangeLog,v 1.26 2006/11/17 13:51:30 pva Exp $ + +*e-uae-0.8.29_pre20061116 (17 Nov 2006) + + 17 Nov 2006; Peter Volkov + -files/e-uae-xkb-rules-dir-detection.patch, -e-uae-0.8.28-r2.ebuild, + -e-uae-0.8.29_pre20060812.ebuild, +e-uae-0.8.29_pre20061116.ebuild: + Bump for CVS snapshot. Removed unused ebuilds. 14 Nov 2006; Andrej Kacian e-uae-0.8.28-r3.ebuild: Stable on x86, bug #154764. diff --git a/app-emulation/e-uae/e-uae-0.8.29_pre20061116.ebuild b/app-emulation/e-uae/e-uae-0.8.29_pre20061116.ebuild new file mode 100644 index 000000000000..657240e0f8a7 --- /dev/null +++ b/app-emulation/e-uae/e-uae-0.8.29_pre20061116.ebuild @@ -0,0 +1,122 @@ +# 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.29_pre20061116.ebuild,v 1.1 2006/11/17 13:51:30 pva Exp $ + +inherit eutils flag-o-matic + +my_ver=${PV%%_pre*} +snap_ver=${PV##*_pre} + +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" +SRC_URI="mirror://gentoo/${PN}-${my_ver}-CVS-${snap_ver}.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-20060612 ) + sys-libs/zlib + virtual/cdrtools" + +DEPEND="$RDEPEND + X? ( dga? ( x11-proto/xf86vidmodeproto + x11-proto/xf86dgaproto ) )" + +S="${WORKDIR}"/${PN}-${my_ver}-CVS + +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." + ewarn "Fullscreen mode is not working in X11 currently. Use sdl." + myconf="$myconf --without-curses --without-sdl-gfx" + use dga && ewarn "To use dga you have to run e-uae as root." + 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_compile() { + #/usr/share/X11/xkb /usr/lib/X11/xkb /usr/X11R6/lib/X11/xkb + 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" + + # Rename it to e-uae + mv "${D}/usr/bin/uae" "${D}/usr/bin/${PN}" + mv "${D}/usr/bin/readdisk" "${D}/usr/bin/e-readdisk" + + dodoc docs/* README ChangeLog +} 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 new file mode 100644 index 000000000000..27866756546d --- /dev/null +++ b/app-emulation/e-uae/files/digest-e-uae-0.8.29_pre20061116 @@ -0,0 +1,3 @@ +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 -- 2.26.2