blob: b01907f614326c08d38c18787f48fcc53aeaaaea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools bash-completion-r1 eutils ltprune toolchain-funcs
DESCRIPTION="IBM's tools for support of the ipr SCSI controller"
SRC_URI="mirror://sourceforge/iprdd/${P}.tar.gz"
HOMEPAGE="https://sourceforge.net/projects/iprdd/"
SLOT="0"
LICENSE="IBM"
KEYWORDS="~ppc ~ppc64"
IUSE="static-libs"
IPRUTILS_DEPEND="
>=sys-libs/ncurses-5.4-r5:=
>=sys-apps/pciutils-2.1.11-r1
"
RDEPEND="
${IPRUTILS_DEPEND}
virtual/logger
virtual/udev
"
DEPEND="
${IPRUTILS_DEPEND}
virtual/pkgconfig
"
PATCHES=(
"${FILESDIR}"/${PN}-2.4.8-tinfo.patch
"${FILESDIR}"/${PN}-2.4.11.1-basename.patch
)
src_prepare() {
default
eautoreconf
}
src_configure() {
econf $(use_enable static-libs static)
}
src_install() {
emake DESTDIR="${D}" \
bashcompdir=$(get_bashcompdir) install
newinitd "${FILESDIR}"/iprinit-r1 iprinit
newinitd "${FILESDIR}"/iprupdate-r1 iprupdate
newinitd "${FILESDIR}"/iprdump-r1 iprdump
prune_libtool_files
}
|