summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2018-05-10 15:46:14 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2018-05-10 15:50:15 +0200
commit7c0ba34252a8cc2fd310159ee41516eaa4e882d9 (patch)
treeee57296bca0d449d2cc98013049e1624a160170a /kde-apps/dolphin-plugins
parentkde-apps: Add KDE Applications 18.04.1 (diff)
downloadgentoo-7c0ba34252a8cc2fd310159ee41516eaa4e882d9.tar.gz
gentoo-7c0ba34252a8cc2fd310159ee41516eaa4e882d9.tar.bz2
gentoo-7c0ba34252a8cc2fd310159ee41516eaa4e882d9.zip
kde-apps: Drop KDE Applications 18.04.0
Package-Manager: Portage-2.3.36, Repoman-2.3.9
Diffstat (limited to 'kde-apps/dolphin-plugins')
-rw-r--r--kde-apps/dolphin-plugins/Manifest1
-rw-r--r--kde-apps/dolphin-plugins/dolphin-plugins-18.04.0.ebuild74
2 files changed, 0 insertions, 75 deletions
diff --git a/kde-apps/dolphin-plugins/Manifest b/kde-apps/dolphin-plugins/Manifest
index fefefba74573..e2111a795762 100644
--- a/kde-apps/dolphin-plugins/Manifest
+++ b/kde-apps/dolphin-plugins/Manifest
@@ -1,3 +1,2 @@
DIST dolphin-plugins-17.12.3.tar.xz 187288 BLAKE2B 205db4fddf395f5e1c7ac9db123984f712867d2523b916ba0017525872a56460c2540dacc6b4e49cb3e876d3d504f619ef603372e98622d1634804cf5bee4efd SHA512 fe0e2aabea0870e8f3127178a10c70264fd339391f88aa9e2a1a5238cb25a0ef47ab2c66f60d2da0788a41399cdfd4099542c81d47e8db1ea09cf2f5941fdeaa
-DIST dolphin-plugins-18.04.0.tar.xz 190108 BLAKE2B ed2df9a3e07cda89d9d7a6b7cbc2bad0af307005af98805bcd036c80b6024c2e643f5e67534dcbbbf83293ad4bd5a5b3b11a61b527a6685cd00bb79ce95807bb SHA512 26d44264cbf0e86baeb8007c106e23a3282dc3a76186bdf9486e662ad2ef7d5b19dbda567858113e82281444ead3a8b5a1b073270630341de5d840aafc7103d6
DIST dolphin-plugins-18.04.1.tar.xz 189840 BLAKE2B b7d96426d88e5997661e9ca8adb131ed3122b27ab0f4c2181980660202b9960bca6815de62ae3fe971537226492b5a9feef23b0936e36d092be7882575b26d52 SHA512 83cf680429bff9c6def3cff6135987760e223d22f41ceff385f4e0419f882054f4a2f02193454b9709128cdea8855442bc9f229e913eb2ac91dc5f30073fe922
diff --git a/kde-apps/dolphin-plugins/dolphin-plugins-18.04.0.ebuild b/kde-apps/dolphin-plugins/dolphin-plugins-18.04.0.ebuild
deleted file mode 100644
index 125d149d68cf..000000000000
--- a/kde-apps/dolphin-plugins/dolphin-plugins-18.04.0.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_HANDBOOK="false"
-inherit kde5
-
-DESCRIPTION="Extra Dolphin plugins"
-KEYWORDS="~amd64 ~x86"
-IUSE="bazaar dropbox git mercurial subversion"
-
-# FIXME: required in root CMakeLists.txt, but:
-# kdelibs4support only required by git?
-# kxmlgui, qtnetwork only required by dropbox?
-COMMON_DEPEND="
- $(add_frameworks_dep kcoreaddons)
- $(add_frameworks_dep kdelibs4support)
- $(add_frameworks_dep ki18n)
- $(add_frameworks_dep kio)
- $(add_frameworks_dep kxmlgui)
- $(add_kdeapps_dep dolphin)
- $(add_qt_dep qtgui)
- $(add_qt_dep qtnetwork)
- $(add_qt_dep qtwidgets)
- git? (
- $(add_frameworks_dep kcompletion)
- $(add_frameworks_dep kconfig)
- $(add_frameworks_dep ktextwidgets)
- )
- mercurial? (
- $(add_frameworks_dep kcompletion)
- $(add_frameworks_dep kconfig)
- $(add_frameworks_dep kservice)
- $(add_frameworks_dep ktexteditor)
- $(add_frameworks_dep ktextwidgets)
- $(add_frameworks_dep kwidgetsaddons)
- )
-"
-DEPEND="${COMMON_DEPEND}
- sys-devel/gettext
-"
-RDEPEND="${COMMON_DEPEND}
- $(add_kdeapps_dep kompare)
- bazaar? ( dev-vcs/bzr )
- dropbox? ( net-misc/dropbox-cli )
- git? ( dev-vcs/git )
- subversion? ( dev-vcs/subversion )
-"
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_bazaar=$(usex bazaar)
- -DBUILD_dropbox=$(usex dropbox)
- -DBUILD_git=$(usex git)
- -DBUILD_hg=$(usex mercurial)
- -DBUILD_svn=$(usex subversion)
- )
-
- kde5_src_configure
-}
-
-src_install() {
- { use bazaar || use dropbox || use git || use subversion || use mercurial; } && kde5_src_install
-}
-
-pkg_postinst() {
- if ! use bazaar && ! use dropbox && ! use git && ! use subversion && ! use mercurial; then
- einfo
- einfo "You have disabled all plugin use flags. If you want to have vcs"
- einfo "integration in dolphin, enable those of your needs."
- einfo
- fi
-}