forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kde-apps/print-manager: 21.11.90 version bump
Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST print-manager-21.08.3.tar.xz 270280 BLAKE2B 93e24a65f8f46d8b076a4973f4fefa7e2d9f9394a68517e236268b7426614a2a672ed85610164f68c8518023cc6dcc82e290c0b321ceab3253f098c11bb9ac4a SHA512 81287517738ffe06c624d67b28c6e6a962e25d2367f32e78a9b7dcee4de986314643667fac7e249e055d734bed39e001a6570b9149937a56b7545437ad07bd42 | ||
DIST print-manager-21.11.90.tar.xz 271724 BLAKE2B 494609b4a934a4f830d9fea907ecaf193b2fda8a2f670321e98666adac7e7d58cdfd7f0d9d49e04fffbc73bf868fa703dd76ebc8e85f5a3a2f7960a2fdc64293 SHA512 b87b39f54a7f275eb5b9892b1f79432e200411997f91d889fe21c0f23a12dff24e65e9b01a191a1cdd6b4a7661ff25191b65ebc84687b021f97ff76424b73840 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# Copyright 1999-2021 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
KFMIN=5.88.0 | ||
PLASMA_MINIMAL=5.16.5 | ||
QTMIN=5.15.2 | ||
inherit ecm kde.org | ||
|
||
DESCRIPTION="Manage print jobs and printers in Plasma" | ||
|
||
LICENSE="GPL-2" # TODO: CHECK | ||
SLOT="5" | ||
KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~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} | ||
>=dev-qt/qtquickcontrols-${QTMIN}:5 | ||
>=dev-qt/qtquickcontrols2-${QTMIN}:5 | ||
>=kde-frameworks/kdeclarative-${KFMIN}:5 | ||
>=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 | ||
} |