diff options
author | 2021-02-10 21:57:00 +0000 | |
---|---|---|
committer | 2021-02-10 22:03:55 +0000 | |
commit | 3e0139cb3692b6e3354d2d0a52229abdc663fb2b (patch) | |
tree | 9da97d6e7c72d3a41de685b04b9ed94daeed6651 /dev-libs/libbrahe | |
parent | dev-lang/lfe: fix MissingUnpackerDep (diff) | |
download | gentoo-3e0139cb3692b6e3354d2d0a52229abdc663fb2b.tar.gz gentoo-3e0139cb3692b6e3354d2d0a52229abdc663fb2b.tar.bz2 gentoo-3e0139cb3692b6e3354d2d0a52229abdc663fb2b.zip |
dev-libs/libbrahe: port to EAPI 7
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-libs/libbrahe')
-rw-r--r-- | dev-libs/libbrahe/files/1.1.0-missing_libs.patch | 4 | ||||
-rw-r--r-- | dev-libs/libbrahe/libbrahe-1.1.0-r1.ebuild | 25 |
2 files changed, 20 insertions, 9 deletions
diff --git a/dev-libs/libbrahe/files/1.1.0-missing_libs.patch b/dev-libs/libbrahe/files/1.1.0-missing_libs.patch index 7466f917f9da..d9153a812ad7 100644 --- a/dev-libs/libbrahe/files/1.1.0-missing_libs.patch +++ b/dev-libs/libbrahe/files/1.1.0-missing_libs.patch @@ -1,5 +1,5 @@ ---- src/Makefile.am.orig 2008-05-01 02:21:34.000000000 +0200 -+++ src/Makefile.am 2008-05-01 02:21:47.000000000 +0200 +--- a/src/Makefile.am ++++ b/src/Makefile.am @@ -14,3 +14,4 @@ AM_CFLAGS = -std=gnu99 -pedantic -Wall -Wno-format diff --git a/dev-libs/libbrahe/libbrahe-1.1.0-r1.ebuild b/dev-libs/libbrahe/libbrahe-1.1.0-r1.ebuild index 4d2e451c2a30..63f386c80ec3 100644 --- a/dev-libs/libbrahe/libbrahe-1.1.0-r1.ebuild +++ b/dev-libs/libbrahe/libbrahe-1.1.0-r1.ebuild @@ -1,10 +1,9 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -AUTOTOOLS_AUTORECONF=1 -inherit autotools-utils +inherit autotools DESCRIPTION="A Heterogenous C Library of Numeric Functions" HOMEPAGE="http://www.coyotegulch.com/products/brahe/" @@ -14,7 +13,19 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux" -IUSE="static-libs" - DOCS=( AUTHORS ChangeLog NEWS ) -PATCHES=( "${FILESDIR}/${PV}-missing_libs.patch" ) + +PATCHES=( + "${FILESDIR}/${PV}-missing_libs.patch" +) + +src_prepare() { + default + eautoreconf +} + +src_install() { + default + + find "${ED}" -name '*.a' -delete || die +} |