blob: 3e73f3dc195454c673c8e60d61e02cec268fecfd (
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
45
46
47
48
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
QTMIN=6.6.2
inherit ecm frameworks.kde.org optfeature
DESCRIPTION="Provider for platform independent hardware discovery, abstraction and management"
LICENSE="LGPL-2.1+"
KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
IUSE="ios"
RDEPEND="
>=dev-qt/qtbase-${QTMIN}:6[dbus,gui,xml]
>=dev-qt/qtdeclarative-${QTMIN}:6
sys-apps/util-linux
sys-fs/udisks:2
virtual/libudev:=
ios? (
app-pda/libimobiledevice:=
app-pda/libplist:=
)
"
DEPEND="${RDEPEND}
test? ( >=dev-qt/qtbase-${QTMIN}:6[concurrent] )
"
BDEPEND="
app-alternatives/lex
app-alternatives/yacc
>=dev-qt/qttools-${QTMIN}:6[linguist]
"
src_configure() {
local mycmakeargs=(
$(cmake_use_find_package ios IMobileDevice)
$(cmake_use_find_package ios PList)
)
ecm_src_configure
}
pkg_postinst() {
if [[ -z "${REPLACING_VERSIONS}" ]]; then
optfeature "media player devices support" app-misc/media-player-info
fi
ecm_pkg_postinst
}
|