blob: 64889d94ac2270dc9ea47363be91917b3264f5d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/uae/uae-0.8.23_pre20040129.ebuild,v 1.6 2004/06/27 23:07:53 vapier Exp $
inherit flag-o-matic
MY_PV="0.8.23-20040129"
S="${WORKDIR}/${PN}-${MY_PV}"
DESCRIPTION="The Umiquious Amiga Emulator"
HOMEPAGE="http://www.rcdrummond.net/uae/"
SRC_URI="http://www.rcdrummond.net/uae/uae-${MY_PV}/uae-${MY_PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE="X gtk sdl ncurses svga"
DEPEND="virtual/libc
X? (
virtual/x11
gtk? ( x11-libs/gtk+ )
)
!X? (
ncurses? ( sys-libs/ncurses )
svga? ( media-libs/svgalib )
)
sdl? ( media-libs/libsdl )"
src_compile() {
ewarn "Compiling the CPU-core requires a substantial amount of RAM."
ewarn "Make sure that you have at least 512MB of RAM+SWAP available."
replace-flags "-O3" "-O2"
use sdl && myconf="--with-sdl-sound --with-sdl-gfx"
econf ${myconf} \
--enable-threads \
--enable-scsi-device \
|| die "./configure failed"
emake -j1 || die "emake failed"
}
src_install() {
cp docs/unix/README docs/README.unix
dodoc docs/COMPATIBILITY docs/CREDITS docs/FAQ docs/NEWS \
docs/README docs/README.PROGRAMMERS docs/README.unix \
docs/translated/*
emake install DESTDIR=${D}
insinto /usr/share/uae/amiga-tools
doins amiga/{*hack,trans*,uae*,*.library}
}
|