blob: 67bf731a9f9001545074e68dfe61d2e56bb4f6b1 (
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
|
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="Query tool to access the running configuration and status of LSI SCSI HBAs"
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
SRC_URI="mirror://gentoo/${P}.tar.bz2
mirror://gentoo/${PN}-1.2.0-linux-sources.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
src_prepare() {
default
eapply "${FILESDIR}/${PN}-1.2.0-gentoo.patch"
sed -i -e 's,\(^.*linux/compiler\.h.*$\),,' mpt-status.h || die
sed -i -e '/KERNEL_PATH/d' Makefile || die
}
src_compile() {
emake CC="$(tc-getCC)"
}
src_install() {
default
dodoc doc/{AUTHORS,Changelog,DeveloperNotes,FAQ,README,ReleaseNotes,THANKS,TODO}
}
|