blob: cb0fafe4c1e4090b1d3a3966299d6514a7759f22 (
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
43
44
45
46
47
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_DATE="$(ver_cut 4)"
MY_PN="${PN^^}"
MY_PV="$(ver_cut 1-3)"
inherit secureboot
DESCRIPTION="An in-band utility for configuring Supermicro IPMI devices"
HOMEPAGE="https://www.supermicro.com"
SRC_URI="https://www.supermicro.com/Bios/sw_download/551/${MY_PN}_${MY_PV}_build.${MY_DATE}.zip"
S="${WORKDIR}/${MY_PN}_${MY_PV}_build.${MY_DATE}"
LICENSE="supermicro"
SLOT="0"
KEYWORDS="-* ~amd64 ~x86"
IUSE="uefi"
BDEPEND="app-arch/unzip"
RESTRICT="bindist mirror"
QA_PREBUILT="usr/bin/ipmicfg"
pkg_setup() {
use uefi && secureboot_pkg_setup
}
src_install() {
newbin Linux/$(usex amd64 '64bit' '32bit')/IPMICFG-Linux.x86$(usex amd64 '_64' '') ipmicfg
if use uefi; then
insinto /usr/share/ipmicfg
newins UEFI/IPMICFG.efi ipmicfg.efi
secureboot_auto_sign --in-place
fi
# Install docs
local DOCS=(
"IPMICFG_UserGuide.pdf"
"ReleaseNotes.txt"
)
einstalldocs
}
|