blob: e8100eb6024d956838c74571f94391c84c486a1d (
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-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_PV=$(ver_rs 3 '-')
# 2.3.56 was the last version with no tagged release.
# It was also the last Bash based release. Later versions are Perl based
DESCRIPTION="The CLI inxi collects and prints hardware and system information"
HOMEPAGE="https://github.com/smxi/inxi"
SRC_URI="https://github.com/smxi/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
IUSE="bluetooth hddtemp opengl"
DEPEND=""
RDEPEND="dev-lang/perl
sys-apps/pciutils
sys-apps/usbutils
bluetooth? ( net-wireless/bluez )
hddtemp? ( app-admin/hddtemp )
opengl? ( x11-apps/mesa-progs )
"
S="${WORKDIR}/${PN}-${MY_PV}"
src_install() {
dobin ${PN}
doman ${PN}.1
}
pkg_postinst() {
elog "Some features of inxi depend on additional packages. Get a full list with"
elog "inxi --recommends"
}
|