diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-04-18 12:40:20 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-04-18 16:29:37 +0200 |
commit | 77996f0bd46af757187d387e251f25fdf21a33f8 (patch) | |
tree | 18c9cc45de05d82b4e08b5966b62d51dc802872e /kde-apps/print-manager | |
parent | www-client/opera-beta: Old (diff) | |
download | gentoo-77996f0bd46af757187d387e251f25fdf21a33f8.tar.gz gentoo-77996f0bd46af757187d387e251f25fdf21a33f8.tar.bz2 gentoo-77996f0bd46af757187d387e251f25fdf21a33f8.zip |
kde-apps: Add KDE Applications 19.04.0
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
Diffstat (limited to 'kde-apps/print-manager')
-rw-r--r-- | kde-apps/print-manager/Manifest | 1 | ||||
-rw-r--r-- | kde-apps/print-manager/print-manager-19.04.0.ebuild | 53 |
2 files changed, 54 insertions, 0 deletions
diff --git a/kde-apps/print-manager/Manifest b/kde-apps/print-manager/Manifest index 4315cbfb07df..7b86fc5ac576 100644 --- a/kde-apps/print-manager/Manifest +++ b/kde-apps/print-manager/Manifest @@ -1 +1,2 @@ DIST print-manager-18.12.3.tar.xz 238832 BLAKE2B afaa1babca0cacd017b1ca9fbac6c3e691a56835e390308e2713969da2b5d4a3c209c9e27f9043508389c494232c93f192d1f0d0da92327ff99c136dcf47db15 SHA512 c801a42ea0dc94fe5aa6e9cbb5a06f164e7d2137bc2458541ace25349fd4c1b748cdb229994e3fbb85bdf86ab1b6ba7757b2060aaff060ea0e4bad7f35532c67 +DIST print-manager-19.04.0.tar.xz 239680 BLAKE2B 24279965099fdc2ef8f0bd99ee89f7fa67088e04f1374b63eed48453f9696884ba4bd9b45a87676b9249fe025b42805ce84e94248f217ec601e55ba3004d53b6 SHA512 3b155b507f44049c1049e66426d9ddcfa6e7c80e9ad37b328d3785d175c4bc0949d5a5d66e6c7750322b46da88dc1b68bacbaf356757697dc4e50b385e4fcf45 diff --git a/kde-apps/print-manager/print-manager-19.04.0.ebuild b/kde-apps/print-manager/print-manager-19.04.0.ebuild new file mode 100644 index 000000000000..1ae66560761e --- /dev/null +++ b/kde-apps/print-manager/print-manager-19.04.0.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kde5 + +DESCRIPTION="Manage print jobs and printers in Plasma" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="+gtk" + +DEPEND=" + $(add_frameworks_dep kcmutils) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kdbusaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kiconthemes) + $(add_frameworks_dep kio) + $(add_frameworks_dep knotifications) + $(add_frameworks_dep kservice) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kwindowsystem) + $(add_frameworks_dep plasma) + $(add_qt_dep qtdbus) + $(add_qt_dep qtdeclarative) + $(add_qt_dep qtgui) + $(add_qt_dep qtnetwork) + $(add_qt_dep qtwidgets) + net-print/cups +" +RDEPEND="${DEPEND} + $(add_plasma_dep kde-cli-tools) + gtk? ( app-admin/system-config-printer ) +" + +pkg_postinst(){ + kde5_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 +} |