# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="A hardware-independent library for executing real-mode x86 code" HOMEPAGE="http://www.codon.org.uk/~mjg59/libx86" SRC_URI="http://www.codon.org.uk/~mjg59/libx86/downloads/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="" DEPEND="" RDEPEND="" src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}/${P}-build.patch" } src_compile() { local ARGS if use amd64; then ARGS="BACKEND=x86emu" fi emake ${ARGS} } src_install() { emake install DESTDIR="${D}" }