Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/iprutils/
Date: Sun, 27 Dec 2020 10:48:01
Message-Id: 1609066074.c256fdff56343065d962372731ed3650ba1d555b.slyfox@gentoo
1 commit: c256fdff56343065d962372731ed3650ba1d555b
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 27 10:47:33 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 27 10:47:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c256fdff
7
8 sys-fs/iprutils: drop no-op IUSE="static-libs"
9
10 The package does not install any libraries.
11
12 Package-Manager: Portage-3.0.12, Repoman-3.0.2
13 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
14
15 sys-fs/iprutils/iprutils-2.4.18.1.ebuild | 16 +++++-----------
16 1 file changed, 5 insertions(+), 11 deletions(-)
17
18 diff --git a/sys-fs/iprutils/iprutils-2.4.18.1.ebuild b/sys-fs/iprutils/iprutils-2.4.18.1.ebuild
19 index b1595889fdb..abd37a99876 100644
20 --- a/sys-fs/iprutils/iprutils-2.4.18.1.ebuild
21 +++ b/sys-fs/iprutils/iprutils-2.4.18.1.ebuild
22 @@ -1,8 +1,8 @@
23 # Copyright 1999-2020 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 -EAPI=6
27 -inherit autotools bash-completion-r1 eutils ltprune toolchain-funcs
28 +EAPI=7
29 +inherit autotools bash-completion-r1
30
31 DESCRIPTION="IBM's tools for support of the ipr SCSI controller"
32 SRC_URI="mirror://sourceforge/iprdd/${P}.tar.gz"
33 @@ -11,7 +11,7 @@ HOMEPAGE="https://sourceforge.net/projects/iprdd/"
34 SLOT="0"
35 LICENSE="IBM"
36 KEYWORDS="ppc ppc64"
37 -IUSE="static-libs"
38 +IUSE=""
39
40 IPRUTILS_DEPEND="
41 >=sys-libs/ncurses-5.4-r5:=
42 @@ -27,8 +27,8 @@ DEPEND="
43 virtual/pkgconfig
44 "
45 PATCHES=(
46 - "${FILESDIR}"/${PN}-2.4.8-tinfo.patch
47 - "${FILESDIR}"/${PN}-2.4.11.1-basename.patch
48 + "${FILESDIR}"/${PN}-2.4.8-tinfo.patch
49 + "${FILESDIR}"/${PN}-2.4.11.1-basename.patch
50 )
51
52 src_prepare() {
53 @@ -37,10 +37,6 @@ src_prepare() {
54 eautoreconf
55 }
56
57 -src_configure() {
58 - econf $(use_enable static-libs static)
59 -}
60 -
61 src_install() {
62 emake \
63 DESTDIR="${D}" \
64 @@ -52,6 +48,4 @@ src_install() {
65 newinitd "${FILESDIR}"/iprinit-r1 iprinit
66 newinitd "${FILESDIR}"/iprupdate-r1 iprupdate
67 newinitd "${FILESDIR}"/iprdump-r1 iprdump
68 -
69 - prune_libtool_files
70 }