summaryrefslogtreecommitdiff
blob: a0e53d72f25287f6928b88a3ae94ba834cfbc87c (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
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/raidutils/raidutils-0.0.6-r1.ebuild,v 1.4 2010/06/06 00:33:54 ssuominen Exp $

inherit eutils

DESCRIPTION="Utilities to manage i2o/dtp RAID controllers."
SRC_URI="http://i2o.shadowconnect.com/raidutils/${P}.tar.bz2"
HOMEPAGE="http://i2o.shadowconnect.com/"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 x86"
IUSE=""

DEPEND=">=sys-kernel/linux-headers-2.6"
RDEPEND=""

src_unpack () {
	unpack ${A}
	cd "${S}"
	#epatch ${FILESDIR}/raidutils-0.0.5-i2octl-fixpath.patch || die
	#epatch ${FILESDIR}/raidutils-0.0.6-gcc41x-compilefix.patch || die
	epatch "${FILESDIR}"/${P}-misc-fixes.patch || die
	rm -f include/linux/i2o-dev.h
}

src_compile() {
	econf || die
	emake -j1 || die
}

src_install() {
	make DESTDIR="${D}" install || die
	dodoc NEWS INSTALL AUTHORS ChangeLog
}