diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-11-08 13:41:03 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-11-08 13:41:03 +0100 |
commit | e7b73bae15157f49fc1f212c6f102c4af053cac1 (patch) | |
tree | 4466c435fccb9220e587de7f0d31457d146e007e /kde-apps/dolphin-plugins | |
parent | kde-apps: Add KDE Applications 18.08.3 (diff) | |
download | gentoo-e7b73bae15157f49fc1f212c6f102c4af053cac1.tar.gz gentoo-e7b73bae15157f49fc1f212c6f102c4af053cac1.tar.bz2 gentoo-e7b73bae15157f49fc1f212c6f102c4af053cac1.zip |
kde-apps: Drop KDE Applications 18.08.2
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-apps/dolphin-plugins')
-rw-r--r-- | kde-apps/dolphin-plugins/Manifest | 1 | ||||
-rw-r--r-- | kde-apps/dolphin-plugins/dolphin-plugins-18.08.2.ebuild | 71 |
2 files changed, 0 insertions, 72 deletions
diff --git a/kde-apps/dolphin-plugins/Manifest b/kde-apps/dolphin-plugins/Manifest index 14e08c88e9f0..bccec8cacd47 100644 --- a/kde-apps/dolphin-plugins/Manifest +++ b/kde-apps/dolphin-plugins/Manifest @@ -1,3 +1,2 @@ DIST dolphin-plugins-18.04.3.tar.xz 191408 BLAKE2B e27bd189d02f922e55fb216bfb80032bf611ec109a3c3f9e3b2cd2466f831e59d548c2d2861a784972e7dcc676e1e7baf28f9a44e8ce7cf1569846da4d6cb86a SHA512 641562f44750bad8ca431be470cf691ea72647ac2b6c5bef7ff83d1d538bc13b7f8d082589c0d2c8c208c14a6007e412f4be8a8e733ebde7132dca6d5724798e -DIST dolphin-plugins-18.08.2.tar.xz 193176 BLAKE2B 481b6995ac9d744c501ad4052533fdab65a8e5582f61f726d6e99398f720f88785fd20b39cb3d5d633d5a22d499137fb9e52f1a04f14296c6c7c40ad5d19d29c SHA512 103351c5c5af14286e116d1a9f1e8420c1c03c0c7aced7546dbfbf9dac0f25bb7d3a2e8512a5e7be63a094073e42d6c2eadd50951be9e699a3ede1a509c77b35 DIST dolphin-plugins-18.08.3.tar.xz 193624 BLAKE2B 8ba60e93b6423a463ee823560c06941c57541bd7561400020ae137c3cfa8b46b634f494a5429b1c83107599ed81727d7755538c5145a0cde03ee971d7b16b3d5 SHA512 38b28d93deb0e30f1e599ee150c5763c74f89b9706a3730cd0ed0b931ecc12a4284c907dced49689d069b82c84de151d1025e788c533943ec9280c1690c33930 diff --git a/kde-apps/dolphin-plugins/dolphin-plugins-18.08.2.ebuild b/kde-apps/dolphin-plugins/dolphin-plugins-18.08.2.ebuild deleted file mode 100644 index d25eed108d74..000000000000 --- a/kde-apps/dolphin-plugins/dolphin-plugins-18.08.2.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# 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 ktextwidgets) - $(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) - ) - mercurial? ( - $(add_frameworks_dep kcompletion) - $(add_frameworks_dep kconfig) - $(add_frameworks_dep kservice) - $(add_frameworks_dep ktexteditor) - $(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 - elog "You have disabled all plugin use flags. If you want to have vcs" - elog "integration in dolphin, enable those of your needs." - fi -} |