blob: 423244a7d81e30d640728cbb3d09f1098b57c328 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_DATE="$(ver_cut 4)"
MY_PN="${PN/smc-/}"
MY_PV="$(ver_cut 1-3)"
DESCRIPTION="Updates the BIOS and IPMI firmware and system settings on Supermicro mainboards"
HOMEPAGE="https://www.supermicro.com"
SRC_URI="${MY_PN}_${MY_PV}_Linux_x86_64_${MY_DATE}.tar.gz"
KEYWORDS="-* ~amd64 ~x86"
LICENSE="supermicro"
SLOT="0"
RDEPEND="sys-apps/smc-sum-driver"
RESTRICT="bindist fetch mirror strip"
S="${WORKDIR}/${MY_PN}_${MY_PV}_Linux_x86_64"
DOCS=( "ReleaseNote.txt" "SUM_UserGuide.pdf" "ExternalData/SMCIPID.txt" "ExternalData/VENID.txt" )
QA_PREBUILT="usr/bin/smc-sum"
pkg_nofetch() {
elog "Please download ${A} from"
elog "https://www.supermicro.com/SwDownload/UserInfo.aspx?sw=0&cat=SUM"
elog "and place it in your DISTDIR directory."
}
src_install() {
newbin sum smc-sum
einstalldocs
}
|