forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: portage-2.2.27
- Loading branch information
Jeroen Roovers
committed
Jan 30, 2016
1 parent
eacea27
commit 75a0071
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST iprutils-2.4.10.1.tar.gz 519917 SHA256 99f28418fec505c4dfd532270569d4902a3792dcb2f08710b896f4e7bc0211e0 SHA512 d55bf90b706ca2048431d3c8d523d481afe4c06ff755d52bc91bc5c6d8cd4952f0fe9655377d4f4e405c4119b47862579f5a1428ea265904f2c578384695720b WHIRLPOOL 99ab607a532a4750158a42713ea6fde3b9c103255bc51d769c6d080193fdf25f01b56d39c90c10c5f7d3c42c38ecf5f21b07f4ebd80306afc446ac32345a25f3 | ||
DIST iprutils-2.4.7.tar.gz 467671 SHA256 bb3a729b35824428d9a7d4db0a25d5ec89ff1dfcc13dd3c62fe254dc56408dd0 SHA512 9e6fd37cb72ce1d092b02f1cdfeb9e97962007327f92f4d9dd2a755489dab3a5d51a459d2f256d8453de74935a5cee8f25f71a820d82347ae67aa72a89043a91 WHIRLPOOL 190a906a91114f56b434e9efb657f9b3ba8a6b145715934f20919dc18521ee696604403134d35a5196c0d8d823c32b5f9e08aaa40bacddebeb42e5dae7ceab02 | ||
DIST iprutils-2.4.8.tar.gz 474447 SHA256 fbd118344b5f7e0acfdadff8093043dee70ad88b58cb3d8ea53e005a3d2b5a17 SHA512 08086058d80b46a58d7d35676645160c7058e88e7d7e61fac36a8565b6ad3a42b0f6e1fe3238de7017ec2b53f1aa93b427bb7113c0c0b21fb148f22fc5a2b6a5 WHIRLPOOL 5f06cd2fab55cac77c212d3693bf3bcea41f1747d6e63c4a24d16ab781da2067163b0e21dfb83eb8cca767bc7458491a0b48b2d859c5e8ea46a59defad5347b9 | ||
DIST iprutils-2.4.9.tar.gz 478916 SHA256 569fc9334a7815e1c871eed06961e0216d6d8f2e9411c7d417906ee3520375dc SHA512 0edfa74cc3559427e3b63bf39084013c9a594359c244b9c7bf0eed642a161caa73574371da1051a74caece80159f2c7c46aa296a0910b85145f99f9f1b10dcec WHIRLPOOL 1f16c8f838f7bf3fe2ac7b1fe9e548bf8e81c4f797cb76273fd35636f11fa965c67540bdf59c60069795bc6a2d88bfbc357348c837f849001018e970501e7e31 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Copyright 1999-2015 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
inherit autotools bash-completion-r1 eutils toolchain-funcs | ||
|
||
DESCRIPTION="IBM's tools for support of the ipr SCSI controller" | ||
SRC_URI="mirror://sourceforge/iprdd/${P}.tar.gz" | ||
HOMEPAGE="http://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 | ||
" | ||
|
||
src_prepare() { | ||
epatch "${FILESDIR}"/${PN}-2.4.8-tinfo.patch | ||
|
||
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 | ||
} |