blob: a3724b6a00ad45c36f46d1a7494594b79fb87619 (
plain)
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit versionator
MY_PV="$(replace_all_version_separators _ ${PV})"
DESCRIPTION="Adaptec Storage Manager (ASM)"
HOMEPAGE="http://www.adaptec.com/en-US/downloads/"
SRC_URI="
amd64? ( http://download.adaptec.com/raid/storage_manager/${PN}_linux_x64_v${MY_PV}.tgz )
x86? ( http://download.adaptec.com/raid/storage_manager/${PN}_linux_x86_v${MY_PV}.tgz )"
LICENSE="BSD"
SLOT="0"
KEYWORDS="-* amd64 ~x86"
IUSE=""
RDEPEND="virtual/libstdc++:3.3"
RESTRICT="strip"
S="${WORKDIR}"
src_install() {
into /usr
dosbin cmdline/arcconf
}
|