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.
37 lines
831 B
37 lines
831 B
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
QTMIN=5.14.1
|
|
VIRTUALX_REQUIRED="test"
|
|
inherit ecm kde.org
|
|
|
|
DESCRIPTION="Provider for platform independent hardware discovery, abstraction and management"
|
|
LICENSE="LGPL-2.1+"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
|
|
IUSE="nls"
|
|
|
|
BDEPEND="
|
|
nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
|
|
"
|
|
RDEPEND="
|
|
>=dev-qt/qtdbus-${QTMIN}:5
|
|
>=dev-qt/qtgui-${QTMIN}:5
|
|
>=dev-qt/qtdeclarative-${QTMIN}:5
|
|
>=dev-qt/qtxml-${QTMIN}:5
|
|
sys-fs/udisks:2
|
|
virtual/libudev:=
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
test? ( >=dev-qt/qtconcurrent-${QTMIN}:5 )
|
|
"
|
|
|
|
pkg_postinst() {
|
|
ecm_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
|
|
}
|