# 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-2.1.1.ebuild,v 1.8 2004/07/10 18:25:48 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="sdl wx-gtk1 wx-gtk2 readline" DEPEND="virtual/libc virtual/x11 >=sys-apps/sed-4 sdl? ( media-libs/libsdl ) wx-gtk1? ( x11-libs/wxGTK ) wx-gtk2? ( x11-libs/wxGTK ) readline? sys-libs/readline" 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 } src_compile() { if use wx-gtk1 ; then need-wxwidgets wx-gtk1 elif use wx-gtk1 ; then need-wxwidgets wx-gtk2 fi [ "$ARCH" == "x86" ] \ && myconf="--enable-idle-hack --enable-fast-function-calls" myconf="${myconf} `use_with sdl`" use wx-gtk1 && myconf="${myconf} --with-gtk --with-wx" use wx-gtk2 && myconf="${myconf} --with-gtk --with-wx" use wx-gtk1 || myconf="${myconf} --without-gtk --without-wx" use wx-gtk2 || myconf="${myconf} --without-gtk --without-wx" myconf="${myconf} `use_enable readline`" ./configure \ --enable-fpu --enable-cdrom --enable-control-panel \ --enable-usb --enable-pci --enable-mmx --enable-sse\ --enable-cpu-level=6 \ --enable-repeat-speedups --enable-guest2host-tlb \ --enable-plugins --enable-debugger \ --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" }