diff options
author | Wolfram Schlich <wschlich@gentoo.org> | 2008-07-11 09:00:26 +0000 |
---|---|---|
committer | Wolfram Schlich <wschlich@gentoo.org> | 2008-07-11 09:00:26 +0000 |
commit | 99e3e9c82f5135fad50a377e1c3c94aa85ad6bd7 (patch) | |
tree | f1f22dabee3ba7caf97155a2e25c9871984c4cfc /sys-block/dellmgr/dellmgr-5.32.ebuild | |
parent | dev-cpp/gtkmm: patch for gcc 4.3 build error, fixes bug #218403 (diff) | |
download | gentoo-2-99e3e9c82f5135fad50a377e1c3c94aa85ad6bd7.tar.gz gentoo-2-99e3e9c82f5135fad50a377e1c3c94aa85ad6bd7.tar.bz2 gentoo-2-99e3e9c82f5135fad50a377e1c3c94aa85ad6bd7.zip |
version bump, fix bug #231427, add ~amd64 and multilib check
(Portage version: 2.1.5.6)
Diffstat (limited to 'sys-block/dellmgr/dellmgr-5.32.ebuild')
-rw-r--r-- | sys-block/dellmgr/dellmgr-5.32.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/sys-block/dellmgr/dellmgr-5.32.ebuild b/sys-block/dellmgr/dellmgr-5.32.ebuild new file mode 100644 index 000000000000..2a990d38a1be --- /dev/null +++ b/sys-block/dellmgr/dellmgr-5.32.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-block/dellmgr/dellmgr-5.32.ebuild,v 1.1 2008/07/11 09:00:26 wschlich Exp $ + +inherit rpm + +MY_PV=${PV}-0 +DESCRIPTION="Dell PERC 2/3/4 RAID controller management tool" +HOMEPAGE="http://linux.dell.com/" +SRC_URI="http://ftp.us.dell.com/scsi-raid/perc-apps-A08.tar.gz" + +LICENSE="Dell" +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="" + +RESTRICT="strip mirror test" + +S="${WORKDIR}" + +pkg_setup() { + use amd64 && { has_multilib_profile || die "needs multilib profile on amd64"; } +} + +src_unpack() { + unpack ${A} + rpm_unpack "${S}"/Dellmgr-${MY_PV}.i386.rpm || die "failed to unpack RPM" +} + +src_compile() { + echo "Nothing to compile." +} + +src_install() { + newsbin "${FILESDIR}"/dellmgr-r1 dellmgr + dosbin usr/sbin/dellmgr.bin +} |