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.
60 lines
1.7 KiB
60 lines
1.7 KiB
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
KFMIN=5.70.0
|
|
PLASMA_MINIMAL=5.16.5
|
|
QTMIN=5.14.2
|
|
inherit ecm kde.org
|
|
|
|
DESCRIPTION="Manage print jobs and printers in Plasma"
|
|
|
|
LICENSE="GPL-2" # TODO: CHECK
|
|
SLOT="5"
|
|
KEYWORDS="amd64 arm64 ~ppc64 x86"
|
|
IUSE="+gtk"
|
|
|
|
DEPEND="
|
|
>=dev-qt/qtdbus-${QTMIN}:5
|
|
>=dev-qt/qtdeclarative-${QTMIN}:5
|
|
>=dev-qt/qtgui-${QTMIN}:5
|
|
>=dev-qt/qtnetwork-${QTMIN}:5
|
|
>=dev-qt/qtwidgets-${QTMIN}:5
|
|
>=kde-frameworks/kcmutils-${KFMIN}:5
|
|
>=kde-frameworks/kconfig-${KFMIN}:5
|
|
>=kde-frameworks/kconfigwidgets-${KFMIN}:5
|
|
>=kde-frameworks/kcoreaddons-${KFMIN}:5
|
|
>=kde-frameworks/kdbusaddons-${KFMIN}:5
|
|
>=kde-frameworks/ki18n-${KFMIN}:5
|
|
>=kde-frameworks/kiconthemes-${KFMIN}:5
|
|
>=kde-frameworks/kio-${KFMIN}:5
|
|
>=kde-frameworks/knotifications-${KFMIN}:5
|
|
>=kde-frameworks/kservice-${KFMIN}:5
|
|
>=kde-frameworks/kwidgetsaddons-${KFMIN}:5
|
|
>=kde-frameworks/kwindowsystem-${KFMIN}:5
|
|
>=kde-frameworks/plasma-${KFMIN}:5
|
|
net-print/cups
|
|
"
|
|
RDEPEND="${DEPEND}
|
|
>=kde-plasma/kde-cli-tools-${PLASMA_MINIMAL}:5
|
|
gtk? ( app-admin/system-config-printer )
|
|
"
|
|
|
|
pkg_postinst(){
|
|
ecm_pkg_postinst
|
|
|
|
if [[ -z "${REPLACING_VERSIONS}" ]] && ! use gtk ; then
|
|
ewarn "By switching off \"gtk\" USE flag, you have chosen to do without"
|
|
ewarn "an important, though optional, runtime dependency:"
|
|
ewarn
|
|
ewarn "app-admin/system-config-printer"
|
|
ewarn
|
|
ewarn "${PN} will work nevertheless, but is going to be less comfortable"
|
|
ewarn "and will show the following error status during runtime:"
|
|
ewarn
|
|
ewarn "\"Failed to group devices: 'The name org.fedoraproject.Config.Printing"
|
|
ewarn "was not provided by any .service files'\""
|
|
fi
|
|
}
|