1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-block/tw_cli/tw_cli-2.00.00.032b.ebuild,v 1.1 2005/03/05 22:48:50 ciaranm Exp $
DESCRIPTION="3ware Command Line Interface"
HOMEPAGE="http://www.3ware.com"
LICENSE="3ware"
SLOT="0"
IUSE="doc"
RESTRICT="fetch"
APPPV="7.7.1"
# binary for x86 only
KEYWORDS="-* ~x86"
# upstream does NOT version releases in the filename :-(
SRC_URI_DOC="doc? ( ${APPPV}_Release_Notes_Web.pdf )"
SRC_URI_BIN="cli_linux.tgz"
SRC_URI="${SRC_URI_BIN} ${SRC_URI_DOC}"
DOWNLOAD_URL_APP="http://www.3ware.com/support/download.asp?code=8&id=${APPPV}&softtype=CLI&os=Linux"
DOWNLOAD_URL_DOC="http://www.3ware.com/download/Escalade7000Series/${APPPV}/${APPPV}_Release_Notes_Web.pdf"
# these are correct!
S="${WORKDIR}"
DEPEND=""
RDEPEND="virtual/libc"
supportedcards() {
einfo "This binary supports the following units (the website is wrong):"
einfo "PATA: 7210, 7410, 7450, 7810, 7850, 7000-2, 7500-4, 7500-8,"
einfo " 7500-12, 7006-2, 7506-4, 7506-4LP, 7506-8, 7506-12"
einfo "SATA: 8500-4, 8500-8, 8500-12, 8006-2, 8506-4, 8506-12,"
einfo " 8506-8MI, 8506-12MI"
}
pkg_setup() {
supportedcards
}
pkg_nofetch() {
einfo "Please visit the following URL to download the application"
einfo "${DOWNLOAD_URL_APP}"
einfo "Select the following options:"
einfo "Product: 3ware 7006-2 / 8006-2"
einfo "Version: ${APPPV}"
einfo "Operating System: Linux"
echo
if use doc; then
einfo "Additionally, please fetch this documentation"
echo
einfo "${DOWNLOAD_URL_DOC}"
fi
einfo "Please your downloads into ${DISTDIR}"
}
src_unpack() {
unpack ${SRC_URI_BIN}
}
src_install() {
if use doc; then
into /usr
dodoc ${APPPV}_Release_Notes_Web.pdf
fi
into /
dosbin tw_cli
}
|