summaryrefslogtreecommitdiff
blob: 260574442073072b4f678517f6c377f86c6c6836 (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/setarch/setarch-1.9.ebuild,v 1.1 2006/04/07 23:02:28 vapier Exp $

inherit eutils

DESCRIPTION="change reported architecture in new program environment and set personality flags"
HOMEPAGE="http://www.gentoo.org/"
SRC_URI="mirror://gentoo/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* ~amd64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
IUSE=""

RDEPEND="!sys-apps/linux32
	!sys-devel/mips32
	!sys-devel/sparc32
	!sys-devel/ppc32"

src_unpack() {
	unpack ${A}
	cd "${S}"
	cp "${FILESDIR}"/Makefile . || die
	epatch "${FILESDIR}"/${PN}-1.8-linux-headers.patch
	epatch "${FILESDIR}"/${PN}-1.8-better-error.patch
	epatch "${FILESDIR}"/${PN}-1.9-links.patch
}

src_install() {
	make install DESTDIR="${D}" || die
}