blob: 09ed25fe0d749165d311945e529392d2165c13e2 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/i8086emu/i8086emu-0.9.2.ebuild,v 1.1 2005/07/21 13:24:17 dragonheart Exp $
DESCRIPTION="Emulator for the Intel 8086 microprocessor"
HOMEPAGE="http://i8086emu.sourceforge.net/"
SRC_URI="mirror://sourceforge/i8086emu/i8086emu-src-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 -ppc"
IUSE="X"
RDEPEND="sys-libs/ncurses
virtual/libc
X? ( dev-libs/glib
dev-libs/atk
media-libs/fontconfig
x11-libs/pango
virtual/x11
media-libs/freetype
sys-libs/zlib
dev-libs/expat
>=x11-libs/gtk+-2.0.0 )"
DEPEND="${RDEPEND}
sys-devel/gcc
sys-devel/autoconf
dev-util/pkgconfig"
S=${WORKDIR}/i8086emu-src-${PV}
src_compile() {
local myconf
use X || myconf="usegtk=0"
econf ${myconf} || die "Failed to configure"
emake || die "Failed to make"
}
src_install() {
make DESTDIR=${D} infodir=/usr/share/doc/${P} examplesdir=/usr/share/doc/${P}/examples install || die
}
|