blob: 8aa8ae1433e33b145ceab5612751d2024208407a (
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/bochs/bochs-2.3.7.ebuild,v 1.6 2009/09/23 15:32:34 patrick Exp $
inherit eutils wxwidgets autotools
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="alpha amd64 ppc ~sparc x86"
IUSE="X debugger readline usb wxwindows svga sdl ncurses vnc acpi"
RDEPEND="X? ( x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXpm )
sdl? ( media-libs/libsdl )
svga? ( media-libs/svgalib )
wxwindows? ( =x11-libs/wxGTK-2.6* )
readline? ( sys-libs/readline )
ncurses? ( sys-libs/ncurses )"
DEPEND="${RDEPEND}
X? ( x11-proto/xproto )
>=sys-apps/sed-4
>=app-text/opensp-1.5"
src_unpack() {
unpack "${P}.tar.gz"
cd "${S}"
epatch "${FILESDIR}/bochs-2.3.7-typos.patch"
epatch "${FILESDIR}/bochs-2.3.7-gcc43.patch"
# we already downloaded dlxlinux4.tar.gz so let the Makefile cp it instead
# of downloading it again
sed -i \
-e "s:\$(WGET) \$(DLXLINUX_TAR_URL):cp ${DISTDIR}/dlxlinux4.tar.gz .:" \
Makefile.in || \
die "sed Makefile.in failed"
# Make sure wxwindows 2.6 is used in case both 2.6 and 2.4 are installed
sed -i -e "s:wx-config:wx-config-2.6:" configure.in
eautoconf
}
src_compile() {
export WX_GTK_VER=2.6
use wxwindows && \
need-wxwidgets gtk2
use x86 && \
myconf="--enable-idle-hack --enable-fast-function-calls"
use amd64 && \
myconf="--enable-x86-64"
use wxwindows && \
myconf="${myconf} --with-wx"
use wxwindows || \
myconf="${myconf} --without-wx"
use vnc && \
myconf="${myconf} --with-rfb"
use X && \
myconf="${myconf} --with-x11"
use ncurses && \
myconf="${myconf} --with-term"
# --enable-all-optimizations causes bus error on sparc :(
use sparc || \
myconf="${myconf} --enable-all-optimizations"
econf \
--enable-pae \
--enable-large-pages \
--enable-global-pages \
--enable-mtrr \
--enable-guest2host-tlb \
--enable-repeat-speedups \
--enable-trace-cache \
--enable-icache \
--enable-fast-function-calls \
--enable-ignore-bad-msr \
--enable-port-e9-hack \
--enable-disasm \
--enable-logging \
--enable-raw-serial \
--enable-vbe \
--enable-clgd54xx \
--enable-fpu \
--enable-vme \
--enable-alignment-check \
--enable-sep \
--enable-popcnt \
--enable-monitor-mwait \
--enable-gameport \
--enable-iodebug \
--prefix=/usr \
--enable-ne2000 \
--enable-sb16=linux \
--enable-plugins \
--enable-cdrom \
--enable-pci \
--enable-pcidev \
--enable-pnic \
--enable-mmx \
--enable-sse=2 \
--enable-3dnow \
--enable-cpu-level=6 \
--enable-smp \
--with-nogui \
--enable-xsave \
--enable-aes \
$(use_enable usb) \
$(use_enable readline) \
$(use_enable debugger) \
$(use_with X) \
$(use_with sdl) \
$(use_with svga) \
$(use_enable acpi) \
${myconf} || \
die "econf 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 \
PARAM_TREE.txt \
README \
README-plugins \
TESTFORM.txt \
TODO || \
die "doco failed"
if [ use vnc ]
then
dodoc README.rfb || die "dodoc failed"
fi
if [ use wxwindows ]
then
dodoc README-wxWindows || die "dodoc failed"
fi
}
|