blob: 664daa53c933bf9d57eb1b38e4fd0cf8b6303a51 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/ipmiutil/ipmiutil-2.3.7.ebuild,v 1.1 2009/05/22 16:28:57 flameeyes Exp $
inherit autotools eutils
DESCRIPTION="IPMI Management Utilities"
HOMEPAGE="http://ipmiutil.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=""
DEPEND="virtual/os-headers"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}+glibc-2.10.patch"
sed -i -e '/strip/d' util/Makefile.am || die
eautoreconf
}
src_install() {
emake -j1 DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog NEWS README TODO doc/UserGuide
}
|