summaryrefslogtreecommitdiff
path: root/sys-block/arcconf/arcconf-2.01.22270-r1.ebuild
blob: 34fc0c4eeda46aeeffd4a475f249311d7b520f22 (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
32
33
34
35
36
37
38
39
40
41
42
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

MY_PV="v${PV//./_}"

inherit linux-info

DESCRIPTION="Microsemi Adaptec RAID Controller Command Line Utility"
HOMEPAGE="https://www.microsemi.com/"
SRC_URI="https://download.adaptec.com/raid/storage_manager/${PN}_${MY_PV}.zip"

KEYWORDS="-* ~amd64 x86"
LICENSE="Microsemi"
SLOT="0"

DEPEND="app-arch/unzip"

RESTRICT="fetch mirror bindist"

S="${WORKDIR}"

QA_PREBUILT="usr/bin/arcconf"

pkg_nofetch() {
	elog "Please download ${A} from"
	elog "https://storage.microsemi.com/en-us/speed/raid/storage_manager/${PN}_${MY_PV}_zip.php"
	elog "and place it in your DISTDIR directory."
}

pkg_setup() {
	# CONFIG_HARDENED_USERCOPY_PAGESPAN makes ARCCONF segault
	if linux-info_get_any_version && linux_config_src_exists ; then
		CONFIG_CHECK="!HARDENED_USERCOPY_PAGESPAN"
		check_extra_config
	fi
}

src_install() {
	dobin linux$(usex amd64 '_x64' '')/cmdline/arcconf
}