blob: 9cc45ac26c904327ef6dd8045b50677c98ee3330 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/gxemul/gxemul-0.4.2.ebuild,v 1.1 2006/10/20 20:05:11 drizzt Exp $
inherit eutils
DESCRIPTION="A Machine Emulator, Mainly emulates MIPS, but supports other CPU types."
HOMEPAGE="http://gavare.se/gxemul/"
SRC_URI="http://gavare.se/gxemul/src/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~mips ~sparc ~x86 ~ppc"
IUSE="X"
RDEPEND="|| ( ( x11-libs/libX11
x11-libs/libXaw
x11-libs/libXdmcp
)
virtual/x11 )"
DEPEND="${RDEPEND}
|| ( x11-proto/xproto virtual/x11 )"
src_compile() {
local myconf=""
use X || myconf="${myconf} --disable-x"
einfo "Configuring with: ${myconf}"
./configure ${myconf} || die "configure failed"
emake || die "emake failed"
}
src_install() {
dobin gxemul || die "gxemul not found in ${S}"
doman man/gxemul.1
dodoc HISTORY LICENSE README RELEASE TODO
dohtml doc/*
}
|