summaryrefslogtreecommitdiff
blob: c88fbbef7c1c634b28e216dcef7d011903e1a9e4 (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
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/bochs/bochs-1.4.ebuild,v 1.18 2004/06/27 23:01:44 vapier Exp $

MY_P=${P/_/.}
S=${WORKDIR}/${MY_P}
DESCRIPTION="a pc emulator"
HOMEPAGE="http://bochs.sourceforge.net"
SRC_URI="mirror://sourceforge/bochs/${MY_P}.tar.gz
	 http://bochs.sourceforge.net/guestos/dlxlinux3.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE=""

DEPEND="virtual/libc
	virtual/x11"

src_unpack() {
	unpack ${MY_P}.tar.gz

	cd ${S}
	sed -i \
		-e "s:\$(WGET) \$(DLXLINUX_TAR_URL):cp ${DISTDIR}/dlxlinux3.tar.gz .:" \
		-e 's: $(prefix): $(DESTDIR)$(prefix):g' \
		-e 's: $(bindir): $(DESTDIR)$(bindir):g' \
		-e 's: $(BOCHSDIR): $(DESTDIR)$(BOCHSDIR):g' \
		Makefile.in
}

src_compile() {
	./configure --enable-fpu --enable-cdrom --enable-control-panel \
	--enable-ne2000 --enable-sb16=linux -enable-slowdown --prefix=/usr \
	--infodir=/usr/share/info --mandir=/usr/share/man --host=${CHOST} --with-x11 || die

	# there's an sdl interface now, but since we an only compile 1 interface at a time
	# i'd rather have xwindows.

	emake || die
}

src_install() {
	make DESTDIR=${D} install || die
	dodoc CHANGES CVS README TESTFORM.txt
}