summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Volkov <pva@gentoo.org>2006-12-14 17:50:32 +0000
committerPeter Volkov <pva@gentoo.org>2006-12-14 17:50:32 +0000
commit60c7c5218891d372aa1c71f8fd7bfdb8054a16ae (patch)
treeee7d75f7ed2af1173c9787fdf13ad80fe607ffad /app-emulation/uae/uae-0.8.24.ebuild
parentBumping version in hope that somebody take a look at this package and attach ... (diff)
downloadgentoo-2-60c7c5218891d372aa1c71f8fd7bfdb8054a16ae.tar.gz
gentoo-2-60c7c5218891d372aa1c71f8fd7bfdb8054a16ae.tar.bz2
gentoo-2-60c7c5218891d372aa1c71f8fd7bfdb8054a16ae.zip
Bumping version in hope that somebody take a look at this package and attach patches at b.g.o. Cleaning out old versions.
(Portage version: 2.1.1-r2) (Unsigned Manifest commit)
Diffstat (limited to 'app-emulation/uae/uae-0.8.24.ebuild')
-rw-r--r--app-emulation/uae/uae-0.8.24.ebuild60
1 files changed, 0 insertions, 60 deletions
diff --git a/app-emulation/uae/uae-0.8.24.ebuild b/app-emulation/uae/uae-0.8.24.ebuild
deleted file mode 100644
index 8070176af400..000000000000
--- a/app-emulation/uae/uae-0.8.24.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/uae/uae-0.8.24.ebuild,v 1.1 2005/07/09 22:57:09 dholm Exp $
-
-inherit eutils
-
-DESCRIPTION="The Umiquious Amiga Emulator"
-HOMEPAGE="http://www.freiburg.linux.de/~uae/"
-SRC_URI="ftp://ftp.freiburg.linux.de/pub/uae/sources/develop/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~amd64"
-IUSE="X gtk svga sdl alsa"
-
-DEPEND="virtual/libc
- X? (
- virtual/x11
- gtk? ( x11-libs/gtk+ )
- )
- !X? (
- sys-libs/ncurses
- svga? ( media-libs/svgalib )
- )
- sdl? ( media-libs/libsdl )"
-
-src_compile() {
- local myconf=""
-
- if use X; then
- myconf="--with-x --enable-dga --enable-vidmode --with-sdl --with-sdl-sound --with-sdl-gfx"
- myconf="$myconf `use_enable gtk ui`"
- else
- if use svga; then
- myconf="--with-svgalib";
- else
- myconf="--with-asciiart";
- fi
- fi
-
- if use alsa; then
- myconf="$myconf --with-alsa"
- fi
-
- econf \
- --enable-threads \
- --enable-scsi-device \
- ${myconf} || die "./configure failed"
-
- emake -j1 || die "emake failed"
-}
-
-src_install() {
- dobin uae readdisk || die
- cp docs/unix/README docs/README.unix
- dodoc docs/*
-
- insinto /usr/share/uae/amiga-tools
- doins amiga/{*hack,trans*,uae*}
-}