blob: b19d1b1b35ca60757c59aa02e0f92ace11db6dab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/librtas/librtas-1.3.13.ebuild,v 1.1 2015/06/04 05:10:53 jer Exp $
EAPI=5
inherit eutils
DESCRIPTION="A set of libraries for userspace access to RTAS on the PowerPC platform(s)"
HOMEPAGE="http://sourceforge.net/projects/librtas/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="IBM"
SLOT="0"
KEYWORDS="~ppc ~ppc64"
DOCS="README"
src_prepare() {
epatch "${FILESDIR}"/${PN}-1.3.8-symlink.patch
sed -i -e '/install_doc/d' Makefile || die
}
|