diff options
author | Michael Palimaka <kensington@gentoo.org> | 2016-09-15 21:33:27 +1000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2016-09-15 21:38:26 +1000 |
commit | 5bc2531e9317b8679cc9e1ae68ee5883518bb613 (patch) | |
tree | 29fde51ed18962fcd1f1c5cf98f58ba728bc67f7 /kde-apps/kio-extras | |
parent | profiles: mask >=kde-apps/minuet-16.08.0 as it requires masked Qt 5.7 (diff) | |
download | gentoo-5bc2531e9317b8679cc9e1ae68ee5883518bb613.tar.gz gentoo-5bc2531e9317b8679cc9e1ae68ee5883518bb613.tar.bz2 gentoo-5bc2531e9317b8679cc9e1ae68ee5883518bb613.zip |
kde-apps: version bump 16.08.1
Package-Manager: portage-2.3.0
Diffstat (limited to 'kde-apps/kio-extras')
-rw-r--r-- | kde-apps/kio-extras/Manifest | 1 | ||||
-rw-r--r-- | kde-apps/kio-extras/kio-extras-16.08.1.ebuild | 78 |
2 files changed, 79 insertions, 0 deletions
diff --git a/kde-apps/kio-extras/Manifest b/kde-apps/kio-extras/Manifest index 929b69a79462..0f91cb1e8719 100644 --- a/kde-apps/kio-extras/Manifest +++ b/kde-apps/kio-extras/Manifest @@ -1 +1,2 @@ DIST kio-extras-16.04.3.tar.xz 277736 SHA256 100e69d7ad0df39ee8a2789dce0b02601097cce903a902f4e1aa633a953cafeb SHA512 b6367626e2ed69394a917cac205d8ba1741b6d522517c2b7119da996b2eb6ea550cb1630bedd8418c371f57075ed88fc8cbe848f3b0ee44fff9a76a9ac79ff4d WHIRLPOOL 02caf8275154b021f7cf6753477e1ff869719fce79801828d63ba4aae0a11aa3556b15d95bc441e4e1f1e123b787d54c60c40831aa88e2f4bb95d5f8c4e3a11c +DIST kio-extras-16.08.1.tar.xz 278296 SHA256 c04fc753576cc55dc1596a1cc471f78f4b52ffd19a1bd66f65f6d07f07d09121 SHA512 674d96c11d2864586c6fb376927854e44e87dd7cfd9349cb7e909ef814f921348c24762f32da95fa1c468de8d53da5819e0d131d06f80bff10f174b62220a874 WHIRLPOOL 504a27727793e71bb37580dbb29324b54940e475ad13b52df70fb075da0df0d3360dab1011d7047446c3dfadf310d4734fd916ffc590d58010c3bcc20f6fb6bf diff --git a/kde-apps/kio-extras/kio-extras-16.08.1.ebuild b/kde-apps/kio-extras/kio-extras-16.08.1.ebuild new file mode 100644 index 000000000000..04eed476b705 --- /dev/null +++ b/kde-apps/kio-extras/kio-extras-16.08.1.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +KDE_HANDBOOK="forceoptional" +KDE_TEST="optional" +VIRTUALX_REQUIRED="test" +inherit kde5 + +DESCRIPTION="KIO plugins present a filesystem-like view of arbitrary data" +HOMEPAGE="https://projects.kde.org/projects/kde/workspace/kio-extras" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="exif mtp openexr phonon samba +sftp slp" + +COMMON_DEPEND=" + $(add_frameworks_dep kactivities) + $(add_frameworks_dep karchive 'bzip2,lzma') + $(add_frameworks_dep kbookmarks) + $(add_frameworks_dep kcodecs) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kdbusaddons) + $(add_frameworks_dep kdelibs4support) + $(add_frameworks_dep kdnssd) + $(add_frameworks_dep kguiaddons) + $(add_frameworks_dep khtml) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kiconthemes) + $(add_frameworks_dep kio) + $(add_frameworks_dep kparts) + $(add_frameworks_dep kpty) + $(add_frameworks_dep kservice) + $(add_frameworks_dep kxmlgui) + $(add_frameworks_dep solid) + $(add_qt_dep qtdbus) + $(add_qt_dep qtgui) + $(add_qt_dep qtnetwork) + $(add_qt_dep qtsql) + $(add_qt_dep qtsvg) + $(add_qt_dep qtwidgets) + $(add_qt_dep qtxml) + virtual/jpeg:0 + exif? ( media-gfx/exiv2:= ) + mtp? ( media-libs/libmtp:= ) + openexr? ( media-libs/openexr ) + phonon? ( media-libs/phonon[qt5] ) + samba? ( || ( <net-fs/samba-4.0.0_alpha1[smbclient] >=net-fs/samba-4.0.0_alpha1[client] ) ) + sftp? ( >=net-libs/libssh-0.6.0:=[sftp] ) + slp? ( net-libs/openslp ) +" +RDEPEND="${COMMON_DEPEND} + $(add_frameworks_dep kded) + !<kde-apps/kcontrol-15.08.0-r1:4 + !<kde-frameworks/kactivities-5.20.0 +" +DEPEND="${COMMON_DEPEND} + x11-misc/shared-mime-info +" + +# requires running kde environment +RESTRICT="test" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package exif Exiv2) + $(cmake-utils_use_find_package mtp Mtp) + $(cmake-utils_use_find_package openexr OpenEXR) + $(cmake-utils_use_find_package phonon Phonon4Qt5) + $(cmake-utils_use_find_package samba Samba) + $(cmake-utils_use_find_package sftp LibSSH) + $(cmake-utils_use_find_package slp SLP) + ) + + kde5_src_configure +} |