blob: 61f705436d3998832094e7a24b87a3ed9c467d91 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/librtas/librtas-2.0.0.ebuild,v 1.3 2006/04/19 01:14:02 ranger Exp $
inherit eutils
DESCRIPTION=" Librtas provides a set of libraries for user-space access to the Run-Time Abstraction Services (RTAS) on the ppc64 architecture."
SRC_URI="http://librtas.ozlabs.org/releases/librtas-${PV}.tar.gz"
HOMEPAGE="http://librtas.ozlabs.org/"
SLOT="0"
LICENSE="IPL-1"
KEYWORDS="ppc ppc64"
IUSE=""
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/librtas-2.0.0-remove-doc.patch
}
src_install() {
make DESTDIR="${D}" install || die "Compilation failed"
dodoc README COPYRIGHT
}
|