You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
579 B
31 lines
579 B
4 years ago
|
# Copyright 1999-2020 Gentoo Authors
|
||
5 years ago
|
# Copyright 2020 The Trinity Desktop Project
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
4 years ago
|
|
||
5 years ago
|
EAPI="7"
|
||
|
|
||
4 years ago
|
TRINITY_MODULE_NAME="tdeutils"
|
||
5 years ago
|
inherit trinity-meta-2
|
||
|
|
||
4 years ago
|
DESCRIPTION="Trinity battery monitoring and management for laptops"
|
||
5 years ago
|
|
||
|
KEYWORDS="~amd64 ~x86"
|
||
4 years ago
|
IUSE="xscreensaver"
|
||
5 years ago
|
|
||
4 years ago
|
RDEPEND="
|
||
|
x11-libs/libXtst
|
||
5 years ago
|
xscreensaver? ( x11-libs/libXScrnSaver )
|
||
4 years ago
|
"
|
||
|
DEPEND="${RDEPEND}
|
||
|
virtual/os-headers
|
||
|
"
|
||
5 years ago
|
|
||
|
src_configure() {
|
||
4 years ago
|
local mycmakeargs=(
|
||
5 years ago
|
-DWITH_DPMS=ON
|
||
|
-DWITH_XSCREENSAVER="$(usex xscreensaver)"
|
||
|
)
|
||
|
|
||
|
trinity-meta-2_src_configure
|
||
|
}
|