blob: fa2bade4815d1c82405ef1995d20432e1f933c1a (
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
41
42
43
44
45
46
47
48
49
50
51
52
|
# 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-2.00.11.ebuild,v 1.1 2008/07/30 06:18:00 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/${PV}_Linux_MegaCLI.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=""
DEPEND="app-arch/unzip"
RESTRICT="strip mirror test"
S="${WORKDIR}"
src_unpack() {
unpack ${A}
cd "${S}"
unpack ./MegaCliLin.zip || die "failed to unpack inner ZIP"
rpm_unpack "${S}"/MegaCli-${PV}-1.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
}
pkg_postinst() {
einfo
einfo "As there's no dedicated manual, you might want to have"
einfo "a look at the following cheat sheet:"
einfo "http://tools.rapidsoft.de/perc/perc-cheat-sheet.pdf"
einfo
}
|