blob: b49dadbb2f3c66e50a918b3da12d726f3d1435de (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
inherit pax-utils
# Upstream is still using strange version numbers
MY_PV="007.0504.0000.0000"
DESCRIPTION="MegaRAID StorCLI (successor of the MegaCLI)"
HOMEPAGE="https://www.broadcom.com/support/download-search?dk=storcli"
SRC_URI="https://docs.broadcom.com/docs-and-downloads/docs-and-downloads/raid-controllers/raid-controllers-common-files/${MY_PV}_Unified_StorCLI.zip -> ${P}.zip"
LICENSE="Avago LSI BSD"
SLOT="0/7.5"
KEYWORDS="-* amd64 x86"
IUSE=""
RDEPEND=""
DEPEND="app-arch/unzip"
DOCS=( readme.txt license.txt )
MY_STORCLI_BASEDIR="/opt/lsi/storcli"
QA_PRESTRIPPED="${MY_STORCLI_BASEDIR:1}/storcli"
src_unpack() {
local _src_file
for _src_file in ${A}; do
if [[ ${_src_file} == *.txt ]]; then
cp "${DISTDIR}/${_src_file}" "${WORKDIR}" || die "Failed to copy '${_src_file}' to '${WORKDIR}'!"
else
unpack ${_src_file}
fi
done
unpack "${WORKDIR}"/Unified_storcli_all_os.zip
mv Unified_storcli_all_os/Ubuntu/storcli_*.deb "${WORKDIR}" || die "Failed to move storcli_*.deb"
# Unpack Ubuntu package which will be our $S content
unpack "${WORKDIR}"/storcli_*.deb
rm -f storcli_*.deb || die "Failed to cleanup storcli_*.deb package"
unpack "${WORKDIR}"/data.tar.gz
mkdir "${S}" || die "Failed to create '${S}'"
}
src_prepare() {
default
# Create clean $S
mv "${WORKDIR}"/*_StorCLI.txt "${S}"/readme.txt || die "Failed to move *StorCLI.txt to readme.txt"
mv "${WORKDIR}"/Unified_storcli_all_os/Linux/license.txt "${S}"/license.txt || die "Failed to move Linux/license.txt"
rm -rf "${WORKDIR}"/Unified_stor* || die "Failed to cleanup Unified_storcli* dirs/files"
mv "${WORKDIR}"/opt/Mega*/storcli/* "${S}" || die "Failed to move storcli_.deb content to '${S}'"
rm -rf "${WORKDIR}"/{opt,control.tar.gz,data.tar.gz,debian-binary} || die "Failed to cleanup no longer needed files"
}
src_install() {
exeinto "${MY_STORCLI_BASEDIR}"
if use x86; then
doexe storcli
elif use amd64; then
newexe storcli64 storcli
fi
dosym "${MY_STORCLI_BASEDIR}"/storcli /usr/sbin/storcli
dodoc "${DOCS[@]}"
pax-mark m "${D%/}${MY_STORCLI_BASEDIR}"/storcli
}
|