commit:     5339f103bb8ca8ebd621b4d020b319c0ee91f18d
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Tue May 12 09:59:56 2020 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Tue May 12 10:01:27 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5339f103

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 <jer <AT> gentoo.org>

 sys-libs/librtas/librtas-2.0.2-r1.ebuild | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

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 00000000000..d366c246764
--- /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
+}

Reply via email to