From 5339f103bb8ca8ebd621b4d020b319c0ee91f18d Mon Sep 17 00:00:00 2001 From: Jeroen Roovers Date: Tue, 12 May 2020 11:59:56 +0200 Subject: [PATCH] sys-libs/librtas: EAPI=7 and other minor fixes - EAPI=7 - Do not install static libraries by default - Fix docdir - Prune libtool files Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Jeroen Roovers --- sys-libs/librtas/librtas-2.0.2-r1.ebuild | 30 ++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 sys-libs/librtas/librtas-2.0.2-r1.ebuild diff --git a/sys-libs/librtas/librtas-2.0.2-r1.ebuild b/sys-libs/librtas/librtas-2.0.2-r1.ebuild new file mode 100644 index 000000000000..d366c246764b --- /dev/null +++ b/sys-libs/librtas/librtas-2.0.2-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit autotools + +DESCRIPTION="A set of libraries for userspace access to RTAS on the PowerPC platform(s)" +HOMEPAGE="https://github.com/ibm-power-utilities/librtas" +SRC_URI="https://github.com/ibm-power-utilities/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~ppc ~ppc64" +IUSE="static-libs" + +DOCS="README" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf $(use_enable static-libs static) +} + +src_install() { + emake DESTDIR="${D}" install docdir=/usr/share/doc/${PF} + find "${D}" -name '*.la' -delete || die +} -- 2.26.2