blob: d66fa79a173ad18a672eca17e199a88ee33a25ce (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libx86/libx86-1.1.ebuild,v 1.2 2008/09/06 20:44:56 ulm Exp $
inherit eutils multilib
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/${PN}/downloads/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
src_unpack() {
unpack ${A}
cd "${S}"
# fix compile failure with linux-headers-2.6.26, bug 235599
epatch "${FILESDIR}"/${PN}-0.99-ifmask.patch
}
src_compile() {
local ARGS
if use amd64; then
ARGS="BACKEND=x86emu"
fi
emake ${ARGS} || die
}
src_install() {
emake LIBDIR="/usr/$(get_libdir)" DESTDIR="${D}" install || die
}
|