diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-11-08 12:48:51 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-11-08 13:28:34 +0100 |
commit | 4596f01b1eeebf3ee9cb8ec94f694191e4150c0b (patch) | |
tree | 0ea2e0348c592fa6fb772ef4d664ee944481630f /kde-apps/print-manager | |
parent | dev-libs/rasqal: Fix typo (diff) | |
download | gentoo-4596f01b1eeebf3ee9cb8ec94f694191e4150c0b.tar.gz gentoo-4596f01b1eeebf3ee9cb8ec94f694191e4150c0b.tar.bz2 gentoo-4596f01b1eeebf3ee9cb8ec94f694191e4150c0b.zip |
kde-apps: Add KDE Applications 18.08.3
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
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-18.08.3.ebuild | 53 |
2 files changed, 54 insertions, 0 deletions
diff --git a/kde-apps/print-manager/Manifest b/kde-apps/print-manager/Manifest index bf057349c908..9fa3cf67235e 100644 --- a/kde-apps/print-manager/Manifest +++ b/kde-apps/print-manager/Manifest @@ -1,2 +1,3 @@ DIST print-manager-18.04.3.tar.xz 238724 BLAKE2B cd372ce2408287ba5c1eff2b614dcd5eac2d44f7a61aeae9c4376b47fbe7eae786fbd1349ba50a436916c36f8671652776464aff4738ab55c2e91b04052adcbc SHA512 0f3ea85c704a596a299e457b0c73afe844c1f2d14a76952e4abc1f3a90a10ff6e28b380a27f383939c0f9f2412c62c1016be2b63220eb664ef5da5ea627ce6e1 DIST print-manager-18.08.2.tar.xz 238756 BLAKE2B 72a67137ae3b71126e4fbaaaad49136e1cf32d3b3c3d5ff5bc1de39bcd06c6bef453d4e8b791708efcaaf78b34527a1764e8877209ae270a90d77462c501dbe1 SHA512 bbd34bcf4a9b216ff2c694a28def48991e8ab654df92a1fa77343cb114b850d87d4796e7033d9b07a729fec743531a6f58c347f09031b729d9836d58f4adf4ae +DIST print-manager-18.08.3.tar.xz 238796 BLAKE2B f3fe67bb2a6b7f2e05b7ed8934ba491a829eff842fdd1f76af3cc376e679826e6ae1f332242d278215828b4842a0bf85b6e22d5b3ffb03d61f01c5f575cfa0d1 SHA512 0727f5e125ac2198276a92acfd881077647ab082b5edc9c4e5211f53dccd19e12b9b6934fd696424e029d5f7de373a194f9c302f587fb0c80af42526cd4a04ad diff --git a/kde-apps/print-manager/print-manager-18.08.3.ebuild b/kde-apps/print-manager/print-manager-18.08.3.ebuild new file mode 100644 index 000000000000..2339cfc9baff --- /dev/null +++ b/kde-apps/print-manager/print-manager-18.08.3.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit kde5 + +DESCRIPTION="Manage print jobs and printers in Plasma" +KEYWORDS="~amd64 ~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(){ + if ! use gtk ; then + ewarn + 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'\"" + ewarn + fi +} |