blob: b6afd82e4b5f0ea56c311e1ef8434efcfc9c2e81 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="7"
TRINITY_MODULE_NAME="tdeutils"
inherit trinity-meta-2
DESCRIPTION="Trinity system monitoring applets."
IUSE="snmp lm_sensors dell-laptop"
DEPEND="lm_sensors? ( x11-libs/libXext )
snmp? ( net-analyzer/net-snmp )"
RDEPEND="${DEPEND}
lm_sensors? ( sys-apps/lm-sensors )"
src_configure() {
mycmakeargs=(
-DWITH_I8K="$(usex dell-laptop)"
-DWITH_SNMP="$(usex snmp)"
-DWITH_SENSORS="$(usex lm_sensors)"
)
trinity-meta-2_src_configure
}
|