blob: 503232d7c4599299abf41fa6b526d41430b32029 (
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
37
38
39
40
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-block/megacli/megacli-1.01.40.ebuild,v 1.1 2008/02/01 17:49:58 wschlich Exp $
inherit rpm
DESCRIPTION="LSI Logic MegaRAID Command Line Interface management tool"
HOMEPAGE="http://www.lsi.com/"
SRC_URI="http://www.lsi.com/support/downloads/megaraid/miscellaneous/linux/${PV}_Linux_Cli.zip"
LICENSE="LSI"
SLOT="0"
# This package can never enter stable, it can't be mirrored and upstream
# can remove the distfiles from their mirror anytime.
KEYWORDS="~amd64 ~x86"
IUSE=""
RESTRICT="strip mirror test"
S="${WORKDIR}"
src_unpack() {
unpack ${A}
rpm_unpack "${S}"/MegaCli-${PV}-0.i386.rpm || die "failed to unpack RPM"
}
src_compile() {
echo "Nothing to compile."
}
src_install() {
exeinto /opt/MegaRAID/MegaCli
case ${ARCH} in
amd64) MegaCli=MegaCli64;;
x86) MegaCli=MegaCli;;
*) die "invalid ARCH";;
esac
doexe opt/MegaRAID/MegaCli/${MegaCli}
dosym /opt/MegaRAID/MegaCli/${MegaCli} /usr/sbin/MegaCli
}
|