diff options
author | Johannes Huber <johu@gentoo.org> | 2017-06-08 23:00:50 +0200 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2017-06-08 23:00:50 +0200 |
commit | c892d3edb4099fe424a61b0d1aa296132d872ba0 (patch) | |
tree | e010db999c552c23e6993bd429516c40db852fe6 /kde-apps/print-manager | |
parent | kde-frameworks/kdelibs: Version bump 4.14.33 (diff) | |
download | gentoo-c892d3edb4099fe424a61b0d1aa296132d872ba0.tar.gz gentoo-c892d3edb4099fe424a61b0d1aa296132d872ba0.tar.bz2 gentoo-c892d3edb4099fe424a61b0d1aa296132d872ba0.zip |
kde-apps: Version bump KDE Applications 17.04.2
Package-Manager: Portage-2.3.6, Repoman-2.3.2
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-17.04.2.ebuild | 53 |
2 files changed, 54 insertions, 0 deletions
diff --git a/kde-apps/print-manager/Manifest b/kde-apps/print-manager/Manifest index c7dc8ded3b48..7156519bb9cd 100644 --- a/kde-apps/print-manager/Manifest +++ b/kde-apps/print-manager/Manifest @@ -1,2 +1,3 @@ DIST print-manager-16.12.3.tar.xz 94268 SHA256 29e549517b0b8ef96b25609d672419e1884a430c1e5a9397243a54e80fc65fd6 SHA512 31bee7f85884b25a9e6df0264aa6fb70bae8bc05c437addba49ebd3e528b9f31476f8e8a34c07e4e2c486e7667ac391573cff31eb62bb9da5945dabd392851ec WHIRLPOOL ee9b3aa5886089b585be99af11df70b4171e2909ea951329c7155ae2c53b8e791cc6bd4770ab091df37b8569c301d3e0abba4314e2acc809619766d116b88c0c DIST print-manager-17.04.1.tar.xz 237688 SHA256 eb28030c58fb0ac488d22631876c178d094fbffc42199e6682355906e37756c2 SHA512 bceb10394a7958f936d3f1f43191f6abbd2bae4a52a48d5996d7ae318264e4a03faa879bb89cea33f3fe9e15bfc4e1efed170a8089052b2ee9f6ec434c43eb4b WHIRLPOOL d55658edbaed257ff5966731ced1d5008634d32f3af3057c6f8df82b2e11a25b9ce9556e298e415486c7e0a5e79faad4ee3e3354c38952d0a069de105216e28b +DIST print-manager-17.04.2.tar.xz 236216 SHA256 92fba6c330ab50f675f83cb7910e0f5f79e5885fe56a505f348c14f758111aa6 SHA512 b2c518527493324a5870bf1cddb4e87f731b30b9c603312e7c6131d256d1891fae5d2f25c4618bbc4ea97314285e27d91b6646cc9394297b01870e6bd48c7151 WHIRLPOOL 170ef2867f670a90eafe297af173cd2e80804fcd990b70e41f7cad0baebf11e9a621c5f15cd3dfbb82f605ca585faa6eeeccc57905eddec2bf43b12e96052d1b diff --git a/kde-apps/print-manager/print-manager-17.04.2.ebuild b/kde-apps/print-manager/print-manager-17.04.2.ebuild new file mode 100644 index 000000000000..c978eb84ddb8 --- /dev/null +++ b/kde-apps/print-manager/print-manager-17.04.2.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2017 Gentoo Foundation +# 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 +} |