diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2021-07-08 16:20:37 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2021-07-08 16:20:37 +0200 |
commit | 39f37e3408d7fbd18bdf185876ca249c864b32e7 (patch) | |
tree | bc76b24a676bb1fc40a67464e4bee8ef1918d9a7 /sys-block/storcli/storcli-7.1613.ebuild | |
parent | sys-block/storcli: drop v7.1515 (diff) | |
download | gentoo-39f37e3408d7fbd18bdf185876ca249c864b32e7.tar.gz gentoo-39f37e3408d7fbd18bdf185876ca249c864b32e7.tar.bz2 gentoo-39f37e3408d7fbd18bdf185876ca249c864b32e7.zip |
sys-block/storcli: bump to v7.1613
Package-Manager: Portage-3.0.21, Repoman-3.0.3
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'sys-block/storcli/storcli-7.1613.ebuild')
-rw-r--r-- | sys-block/storcli/storcli-7.1613.ebuild | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/sys-block/storcli/storcli-7.1613.ebuild b/sys-block/storcli/storcli-7.1613.ebuild new file mode 100644 index 000000000000..e1d2ca5a4dda --- /dev/null +++ b/sys-block/storcli/storcli-7.1613.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit pax-utils toolchain-funcs + +# Upstream is still using strange version numbers +MY_PV="007.1613.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/raid-controllers/raid-controllers-common-files/${MY_PV}_Unified_StorCLI-PUL.zip -> ${P}.zip" + +LICENSE="Avago LSI BSD" +SLOT="0/7.16" +KEYWORDS="-* amd64" +IUSE="" + +RDEPEND="" +DEPEND="app-arch/unzip" + +MY_STORCLI_BASEDIR="/opt/lsi/storcli" + +QA_PRESTRIPPED="${MY_STORCLI_BASEDIR:1}/storcli + ${MY_STORCLI_BASEDIR:1}/storcli32" +QA_PREBUILT=${QA_PRESTRIPPED} + +src_unpack() { + mkdir srcfiles || die + pushd srcfiles &>/dev/null || die + default + mv Unified_storcli_all_os/Ubuntu/storcli_*.deb "${WORKDIR}" || die "Failed to move storcli_*.deb" + popd &>/dev/null || die + + rm -rf srcfiles || die + + # 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.xz + + mkdir "${S}" || die "Failed to create '${S}'" +} + +src_prepare() { + default + + # Create clean $S + 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}" + newexe storcli64 storcli + + dosym "${MY_STORCLI_BASEDIR}"/storcli /usr/sbin/storcli + + pax-mark m "${D}${MY_STORCLI_BASEDIR}"/storcli +} |