blob: 481500b18de77f5f50d5ef3b2eceacc2642e5d5f (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
VIRTUALX_REQUIRED="test"
inherit kde5
DESCRIPTION="Provider for platform independent hardware discovery, abstraction and management"
LICENSE="LGPL-2.1+"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="nls udev"
BDEPEND="
nls? ( $(add_qt_dep linguist-tools) )
"
RDEPEND="
$(add_qt_dep qtdbus)
$(add_qt_dep qtdeclarative)
$(add_qt_dep qtwidgets)
$(add_qt_dep qtxml)
sys-fs/udisks:2
udev? ( virtual/libudev:= )
"
DEPEND="${RDEPEND}
test? ( $(add_qt_dep qtconcurrent) )
"
src_configure() {
local mycmakeargs=(
-DUDEV_DISABLED=$(usex !udev)
)
kde5_src_configure
}
pkg_postinst() {
kde5_pkg_postinst
if [[ -z "${REPLACING_VERSIONS}" ]] && ! has_version "app-misc/media-player-info" ; then
elog "For media player support, install app-misc/media-player-info"
fi
use udev || ewarn "Building without udev support may cause unintended runtime problems in consumers."
}
|