summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiziano Müller <dev-zero@gentoo.org>2015-02-26 17:46:30 +0000
committerTiziano Müller <dev-zero@gentoo.org>2015-02-26 17:46:30 +0000
commit576adcd74f06b6e207c0804a0d307071e4ce807a (patch)
tree8f61114cc5315812368cd208f64f79ed5ba9510f /sys-block
parentVersion bump. (diff)
downloadgentoo-2-576adcd74f06b6e207c0804a0d307071e4ce807a.tar.gz
gentoo-2-576adcd74f06b6e207c0804a0d307071e4ce807a.tar.bz2
gentoo-2-576adcd74f06b6e207c0804a0d307071e4ce807a.zip
version bump (bug #524632)
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 0x1A5D023975B0583D!)
Diffstat (limited to 'sys-block')
-rw-r--r--sys-block/arcconf/ChangeLog9
-rw-r--r--sys-block/arcconf/arcconf-1.7.21229.ebuild52
2 files changed, 59 insertions, 2 deletions
diff --git a/sys-block/arcconf/ChangeLog b/sys-block/arcconf/ChangeLog
index 86ef8e436ab5..5424ff096ffc 100644
--- a/sys-block/arcconf/ChangeLog
+++ b/sys-block/arcconf/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-block/arcconf
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-block/arcconf/ChangeLog,v 1.1 2013/09/19 13:35:20 dev-zero Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-block/arcconf/ChangeLog,v 1.2 2015/02/26 17:46:30 dev-zero Exp $
+
+*arcconf-1.7.21229 (26 Feb 2015)
+
+ 26 Feb 2015; Tiziano Müller <dev-zero@gentoo.org> +arcconf-1.7.21229.ebuild:
+ version bump (bug #524632)
*arcconf-1.2.20618 (19 Sep 2013)
diff --git a/sys-block/arcconf/arcconf-1.7.21229.ebuild b/sys-block/arcconf/arcconf-1.7.21229.ebuild
new file mode 100644
index 000000000000..ad0680fb8511
--- /dev/null
+++ b/sys-block/arcconf/arcconf-1.7.21229.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-block/arcconf/arcconf-1.7.21229.ebuild,v 1.1 2015/02/26 17:46:30 dev-zero Exp $
+
+EAPI=5
+
+DESCRIPTION="Adaptec RAID Controller Command Line Utility"
+HOMEPAGE="http://www.adaptec.com/en-us/downloads/"
+SRC_URI="http://download.adaptec.com/raid/storage_manager/${PN}_v${PV//./_}.zip"
+
+LICENSE="Adaptec-EULA"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="app-arch/unzip"
+RDEPEND=""
+
+RESTRICT="mirror bindist"
+# RESTRICT="fetch"
+
+QA_PRESTRIPPED="/opt/bin/arcconf"
+
+S="${WORKDIR}"
+
+# Maintainer notes:
+# * When going via the $HOMEPAGE one has to agree to the Adaptec-EULA as
+# referenced above.
+# * Despite that EULA, one can download the package seemingly without
+# restrictions from $SRC_URI.
+# * It is therefore assumed that the binary is made available for public
+# download. Even more so since the archive does not contain a license
+# agreement stating otherwise.
+
+#pkg_nofetch() {
+# einfo "Upstream has implemented a mandatory clickthrough EULA for distfile download"
+# einfo "Please visit $HOMEPAGE, choose a controller (for example the Series 7, 7805)"
+# einfo "and then navigate to Storage Manager Downloads for the ARCCONF Command Line Utility."
+# einfo "And place $A in ${DISTDIR}"
+#}
+
+# Maintainer notes:
+# * FreeBSD binaries would be available for FreeBSD 7..9, which ones do we need?
+src_install() {
+ exeinto /opt/bin
+
+ if use amd64 ; then
+ doexe linux_x64/cmdline/arcconf
+ else
+ doexe linux_x86/cmdline/arcconf
+ fi
+}