diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-10-27 23:19:12 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-10-27 23:19:12 +0000 |
commit | 70c459e3202ae4f56fd2db15d3158b7813e25e61 (patch) | |
tree | 16123e7a70aaa5c66047f1de66c612b790cbbf82 /sys-block | |
parent | Version bump (bug #387933, acked by Ramereth). Rebundle libsysfs library (fix... (diff) | |
download | gentoo-2-70c459e3202ae4f56fd2db15d3158b7813e25e61.tar.gz gentoo-2-70c459e3202ae4f56fd2db15d3158b7813e25e61.tar.bz2 gentoo-2-70c459e3202ae4f56fd2db15d3158b7813e25e61.zip |
Remove old (fixes bug #377701).
(Portage version: 2.2.0_alpha70/cvs/Linux x86_64)
Diffstat (limited to 'sys-block')
-rw-r--r-- | sys-block/megacli/ChangeLog | 5 | ||||
-rw-r--r-- | sys-block/megacli/megacli-8.01.06.ebuild | 66 |
2 files changed, 4 insertions, 67 deletions
diff --git a/sys-block/megacli/ChangeLog b/sys-block/megacli/ChangeLog index cce33b9054f9..6ae41e806267 100644 --- a/sys-block/megacli/ChangeLog +++ b/sys-block/megacli/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-block/megacli # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-block/megacli/ChangeLog,v 1.9 2011/10/27 23:11:13 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-block/megacli/ChangeLog,v 1.10 2011/10/27 23:19:12 radhermit Exp $ + + 27 Oct 2011; Tim Harder <radhermit@gentoo.org> -megacli-8.01.06.ebuild: + Remove old (fixes bug #377701). *megacli-8.02.16 (27 Oct 2011) diff --git a/sys-block/megacli/megacli-8.01.06.ebuild b/sys-block/megacli/megacli-8.01.06.ebuild deleted file mode 100644 index 57a7a6e7e6b3..000000000000 --- a/sys-block/megacli/megacli-8.01.06.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-block/megacli/megacli-8.01.06.ebuild,v 1.2 2011/07/11 21:32:22 mr_bones_ Exp $ - -EAPI="3" - -inherit rpm - -DESCRIPTION="LSI Logic MegaRAID Command Line Interface management tool" -HOMEPAGE="http://www.lsi.com/" -SRC_URI="http://www.lsi.com/downloads/Public/MegaRAID%20Common%20Files/${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 - app-admin/chrpath" -RDEPEND="sys-fs/sysfsutils" - -S="${WORKDIR}" - -RESTRICT="mirror" - -QA_PRESTRIPPED="/opt/bin/megacli" - -src_unpack() { - unpack ${A} - cd "${S}" - unpack ./MegaCliLin.zip || die "failed to unpack inner ZIP" - rpm_unpack ./MegaCli-${PV}-1.i386.rpm || die "failed to unpack RPM" -} - -src_install() { - exeinto /opt/bin - case ${ARCH} in - amd64) MegaCli=MegaCli64;; - x86) MegaCli=MegaCli;; - *) die "invalid ARCH";; - esac - newexe opt/MegaRAID/MegaCli/${MegaCli} megacli || die - dosym /opt/bin/megacli /opt/bin/MegaCli - dodoc ${PV}_Linux_MegaCLI.txt - - # Get a rid of DT_RPATH - chrpath -d "${D}/opt/bin/megacli" -} - -pkg_postinst() { - einfo - einfo "See /usr/share/doc/${PF}/${PV}_Linux_MegaCli.txt for a list of supported controllers" - einfo "(contains LSI model names only, not those sold by 3rd parties" - einfo "under custom names like Dell PERC etc)." - einfo - einfo "As there's no dedicated manual, you might want to have" - einfo "a look at the following cheat sheet (originally written" - einfo "for Dell PowerEdge Expandable RAID Controllers):" - einfo "http://tools.rapidsoft.de/perc/perc-cheat-sheet.html" - einfo - einfo "For more information about working with Dell PERCs see:" - einfo "http://tools.rapidsoft.de/perc/" - einfo -} |