blob: 9d86c73c30c003860c50423823990cefd78a993e (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-block/mpt-status/mpt-status-1.2.0.ebuild,v 1.6 2008/06/16 19:05:25 robbat2 Exp $
inherit eutils
DESCRIPTION="mpt-status is a query tool to access the running configuration and status of LSI SCSI HBAs."
HOMEPAGE="http://www.drugphish.ch/~ratz/mpt-status/"
SRC_URI="http://www.drugphish.ch/~ratz/mpt-status/${P}.tar.bz2
mirror://gentoo/${PN}-1.2.0-linux-sources.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86 ~ppc"
IUSE=""
src_unpack() {
unpack ${A}
epatch "${FILESDIR}/${PN}-1.2.0-gentoo.patch"
cd "${S}"
sed -i -e 's,\(^.*linux/compiler\.h.*$\),,' mpt-status.h
sed -i -e '/KERNEL_PATH/d' Makefile
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
cd "${S}/doc"
dodoc AUTHORS Changelog DeveloperNotes FAQ README \
ReleaseNotes THANKS TODO
}
|