blob: 41de058299bed404ca37d6f30677e2a62c5751ac (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/bochs/bochs-2.1.1.ebuild,v 1.26 2006/02/05 18:34:18 lu_zero Exp $
inherit eutils wxwidgets
DESCRIPTION="a LGPL-ed pc emulator"
HOMEPAGE="http://bochs.sourceforge.net/"
SRC_URI="mirror://sourceforge/bochs/${P}.tar.gz
http://bochs.sourceforge.net/guestos/dlxlinux4.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="x86 ppc alpha sparc amd64"
IUSE="debugger readline sdl wxwindows"
RDEPEND="virtual/libc
|| ( virtual/x11
( x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXpm ) )
sdl? ( media-libs/libsdl )
wxwindows? ( =x11-libs/wxGTK-2.4* )
readline? ( sys-libs/readline )"
DEPEND="${RDEPEND}
|| ( virtual/x11
x11-proto/xproto )
>=sys-apps/sed-4
>=app-text/opensp-1.5"
src_unpack() {
# unpack ${A}
unpack ${P}.tar.gz
cd ${S}
# -e 's:MAN_PAGE_1_LIST=bochs bximage bochs-dlx:MAN_PAGE_1_LIST=bochs bximage:'
sed -i \
-e "s:\$(WGET) \$(DLXLINUX_TAR_URL):cp ${DISTDIR}/dlxlinux4.tar.gz .:" \
-e 's:BOCHSDIR=:BOCHSDIR=/usr/lib/bochs#:' \
-e 's: $(BOCHSDIR): $(DESTDIR)$(BOCHSDIR):g' Makefile.in || \
die "sed Makefile.in failed"
# epatch ${FILESDIR}/${P}-gcc3.patch || die
#Quick fix for a typo
epatch ${FILESDIR}/${P}-regparm-typo.patch ||die
}
src_compile() {
use wxwindows && \
need-wxwidgets gtk2
[ "$ARCH" == "x86" ] \
&& myconf="--enable-idle-hack --enable-fast-function-calls"
myconf="${myconf} `use_with sdl`"
myconf="${myconf} `use_enable readline`"
use wxwindows && \
myconf="${myconf} --with-gtk --with-wx"
use wxwindows || \
myconf="${myconf} --without-gtk --without-wx"
use debugger && \
myconf="$myconf --enable-debugger --enable-disasm --enable-x86-debugger"
./configure \
--enable-fpu --enable-cdrom --enable-control-panel \
--enable-usb --enable-pci --enable-mmx --enable-sse\
--enable-cpu-level=6 --enable-vbe\
--enable-repeat-speedups --enable-guest2host-tlb \
--enable-plugins \
--enable-ignore-bad-msr \
--enable-ne2000 --enable-sb16=linux --enable-slowdown --prefix=/usr \
--infodir=/usr/share/info --mandir=/usr/share/man --host=${CHOST} \
--with-x11 $myconf || \
die "configure failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR=${D} install unpack_dlx || die "make install failed"
#workaround
make prefix=${D}/usr install_dlx
dodoc CHANGES README TESTFORM.txt || die "dodoc failed"
}
|