diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2016-08-12 21:30:58 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2016-08-12 21:33:16 +0200 |
commit | 5c1fd2e3a6e825d88f4f9f7f7285c9cd54733754 (patch) | |
tree | aff85d991b8d62099f5f8b44799a1e8090fe4976 | |
parent | licenses: Add Avago Technologies (Avago) License Agreement (diff) | |
download | gentoo-5c1fd2e3a6e825d88f4f9f7f7285c9cd54733754.tar.gz gentoo-5c1fd2e3a6e825d88f4f9f7f7285c9cd54733754.tar.bz2 gentoo-5c1fd2e3a6e825d88f4f9f7f7285c9cd54733754.zip |
sys-block/storcli: New package
MegaRAID StorCLI is the successor of the MegaCLI tool and provides a
commandline interface to LSI and IBM MegaRAID drive controllers.
Package-Manager: portage-2.3.0
-rw-r--r-- | sys-block/storcli/Manifest | 1 | ||||
-rw-r--r-- | sys-block/storcli/metadata.xml | 8 | ||||
-rw-r--r-- | sys-block/storcli/storcli-1.19.04.ebuild | 66 |
3 files changed, 75 insertions, 0 deletions
diff --git a/sys-block/storcli/Manifest b/sys-block/storcli/Manifest new file mode 100644 index 000000000000..33356e5c57b9 --- /dev/null +++ b/sys-block/storcli/Manifest @@ -0,0 +1 @@ +DIST storcli-1.19.04.zip 41606377 SHA256 026456cf30e1f14f33a42eb5804dcf9fb6d3b79b9fd46828db6cdd4abe736054 SHA512 3086360a4c40755cdcaa8faa7192adccae5555cf3aaa741be583fa3559a7dedc14652489d8248a69465040871710917d09461644df3d1d2d31fe6d6e0957196b WHIRLPOOL 81fd83d9b3e938b5cf5135066db97aa4db3c1c7b62ca861a1736dd7719874a2b68d5e1c65ad79d97e29e8d4cfbfa2ee0a7fdc347fc0931009e8f7cc946739cae diff --git a/sys-block/storcli/metadata.xml b/sys-block/storcli/metadata.xml new file mode 100644 index 000000000000..352d6632a496 --- /dev/null +++ b/sys-block/storcli/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>whissi@whissi.de</email> + <name>Thomas D. (Whissi)</name> + </maintainer> +</pkgmetadata> diff --git a/sys-block/storcli/storcli-1.19.04.ebuild b/sys-block/storcli/storcli-1.19.04.ebuild new file mode 100644 index 000000000000..744ee10c5f18 --- /dev/null +++ b/sys-block/storcli/storcli-1.19.04.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit pax-utils + +DESCRIPTION="MegaRAID StorCLI (successor of the MegaCLI)" +HOMEPAGE="http://www.avagotech.com/support/download-search?dnd-keyword=storcli" +# For new versions check http://www.avagotech.com/cs/Satellite?pagename=AVG2/Utilities/searchResultsJson&page=1&q=storcli&endDate=null&searchType=type-AVG_Document_C~Downloads&isEntitled=null&dynamic-search-relevance=Newest +SRC_URI="http://docs.avagotech.com/docs-and-downloads/docs-and-downloads/raid-controllers/raid-controllers-common-files/${PV}_StorCLI.zip -> ${P}.zip" + +LICENSE="Avago LSI BSD" +SLOT="0/6.11" +KEYWORDS="-* ~amd64 ~x86" +IUSE="" + +RDEPEND="" +DEPEND="" + +DOCS=( readme.txt license.txt ) + +MY_STORCLI_BASEDIR="/opt/lsi/storcli" + +QA_PRESTRIPPED="${MY_STORCLI_BASEDIR:1}/storcli" + +src_unpack() { + unpack ${A} + + mv storcli_all_os/Ubuntu/storcli_*.deb "${WORKDIR}" || die "Failed to move storclli_*.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}"/*CLI.txt "${S}"/readme.txt || die "Failed to move *CLI.txt to readme.txt" + mv "${WORKDIR}"/storcli_all_os/Linux/license.txt "${S}"/license.txt || die "Failed to move Linux/license.txt" + rm -rf "${WORKDIR}"/storcli_all* || die "Failed to cleanup storcli_all* 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 +} |