blob: 04472c5f58dde3181375aa8f0130ecd6cd4ee4fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
inherit eutils
DESCRIPTION=" Librtas provides a set of libraries for user-space access to RTAS on the ppc64 architecture"
SRC_URI="http://librtas.ozlabs.org/releases/librtas-${PV}.tar.gz"
HOMEPAGE="http://librtas.ozlabs.org/"
SLOT="0"
LICENSE="IBM"
KEYWORDS="ppc ppc64"
IUSE=""
src_install() {
emake DESTDIR="${D}" install || die
dodoc README
}
|