diff options
author | Andreas Sturmlechner <andreas.sturmlechner@gmail.com> | 2015-12-31 22:51:14 +0100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2016-01-14 02:03:48 +1100 |
commit | 3a460682656d75a43953a45fa174e7c0bc9d5efa (patch) | |
tree | 51d4e1c502d081c1dd9ef2554b9d737e4174b77f /kde-apps | |
parent | kde-plasma/khotkeys: Remove printscreen.khotkeys from 5.4.3 (diff) | |
download | gentoo-3a460682656d75a43953a45fa174e7c0bc9d5efa.tar.gz gentoo-3a460682656d75a43953a45fa174e7c0bc9d5efa.tar.bz2 gentoo-3a460682656d75a43953a45fa174e7c0bc9d5efa.zip |
kde-apps/ksnapshot: Install 2015.12 for Plasma 5.4/5.5 compatibility
Upstream created a '2015.12' release with the only purpose of installing
a file removed from khotkeys with 5.5.0 (backported to 5.4.3), otherwise
screenshot hotkeys would be defunct. At the same time it would make
ksnapshot collide with older khotkeys, so a block is required.
https://mail.kde.org/pipermail/kde-distro-packagers/2015-November/000108.html
Package-Manager: portage-2.2.24
Diffstat (limited to 'kde-apps')
-rw-r--r-- | kde-apps/ksnapshot/Manifest | 2 | ||||
-rw-r--r-- | kde-apps/ksnapshot/ksnapshot-15.08.3-r1.ebuild | 38 |
2 files changed, 39 insertions, 1 deletions
diff --git a/kde-apps/ksnapshot/Manifest b/kde-apps/ksnapshot/Manifest index 71c60cf1b789..09e1fd949cc3 100644 --- a/kde-apps/ksnapshot/Manifest +++ b/kde-apps/ksnapshot/Manifest @@ -1,2 +1,2 @@ -DIST ksnapshot-15.08.3.tar.xz 258280 SHA256 83bd32bb65d40a9cc260f6156e972d82560fa8e4ff1080f92ce9a3dcc671cbf6 SHA512 6880dfd5b3f69e62bcc26078e1ab4dffba2a3b1d3d9686c81ee6b6758859e9eaba2aed88aa8925dc7fb6d026cd28aa2d39ee00610e8c36c6b8813dd9f39be9ba WHIRLPOOL 68c69c6cea0b1b4c7589d84775b3ba453148efe567290941af79ddac9754edd266e967633fc29201f20d1abb3008f99868764eaf0d8ef320a9fd5aeb90c6a744 +DIST ksnapshot-2015.12.tar.xz 265980 SHA256 9186252d478e30da9e21dcab3c1e30e167980a122dc609e435682d316b74508e SHA512 a8bd17f863be16cae413a0cdb71cda12ae133d754e117c9c192b85c73c0585826adf61af19a80fdbe64a815e0dfaf5688ebbb0fa3ef5f5494d8dadf94c659344 WHIRLPOOL 174c92cfbb9e9c089e11817f807830348113607044b9ad098ad55442fb81e29c31d3ed6a23e037133ec6566bfa889e09abcc36de764e81f8ed45b892de71e141 DIST ksnapshot-4.14.3.tar.xz 257940 SHA256 ec7c08313d8300bf7b59167ec65ffd37fea6b4090d1514d23b66607d2efdf981 SHA512 96835e10e582b5c0fbeb97ac32a274cda8838145a0f198161eac5a77c52ba7240e3c3a35411c2f3bb2300748324e9753840eb44e1c75e6765ce3689df2f27bf9 WHIRLPOOL 5f4c0911c89080a5e7542b4f92b383b789117732084ea6fd9dba687edeed688b101dd1909fa4992a51d8f3c111bf9b7e891f34bfac7faae24b8cbc834d8a72e6 diff --git a/kde-apps/ksnapshot/ksnapshot-15.08.3-r1.ebuild b/kde-apps/ksnapshot/ksnapshot-15.08.3-r1.ebuild new file mode 100644 index 000000000000..f7ed699bfb24 --- /dev/null +++ b/kde-apps/ksnapshot/ksnapshot-15.08.3-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +MY_PV=2015.12 + +KDE_HANDBOOK="optional" +inherit kde4-base + +DESCRIPTION="KDE Screenshot Utility" +HOMEPAGE="https://www.kde.org/applications/graphics/ksnapshot/" +SRC_URI="mirror://kde/stable/apps/KDE4.x/utils/${PN}-${MY_PV}.tar.xz" + +KEYWORDS=" ~amd64 ~x86" +IUSE="debug kipi" + +DEPEND=" + x11-libs/libXfixes + !aqua? ( + x11-libs/libX11 + x11-libs/libXext + ) + kipi? ( $(add_kdeapps_dep libkipi) ) +" +RDEPEND="${DEPEND} + !<kde-plasma/khotkeys-5.4.3-r1:5 +" + +S="${WORKDIR}/${PN}-${MY_PV}" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_with kipi) + ) + + kde4-base_src_configure +} |