diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-12-13 23:16:35 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-12-13 23:25:47 +0100 |
commit | 782f05c7675c6c61be933a1453b2bc0f59f4026e (patch) | |
tree | 5a4bd342d00918913eb3c057e6c1094e3028f8aa /kde-apps | |
parent | kde-apps/kdepim-meta: Add USE bogofilter,clamav,spamassassin (diff) | |
download | gentoo-782f05c7675c6c61be933a1453b2bc0f59f4026e.tar.gz gentoo-782f05c7675c6c61be933a1453b2bc0f59f4026e.tar.bz2 gentoo-782f05c7675c6c61be933a1453b2bc0f59f4026e.zip |
kde-apps/dolphin-plugins: Drop 18.12.0 (r0)
Replaced by split packages:
- kde-apps/dolphin-plugins-bazaar
- kde-apps/dolphin-plugins-dropbox
- kde-apps/dolphin-plugins-git
- kde-apps/dolphin-plugins-mercurial
- kde-apps/dolphin-plugins-subversion
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-apps')
-rw-r--r-- | kde-apps/dolphin-plugins/Manifest | 1 | ||||
-rw-r--r-- | kde-apps/dolphin-plugins/dolphin-plugins-18.12.0.ebuild | 72 |
2 files changed, 0 insertions, 73 deletions
diff --git a/kde-apps/dolphin-plugins/Manifest b/kde-apps/dolphin-plugins/Manifest index 861223cdac41..3e6fe576f1be 100644 --- a/kde-apps/dolphin-plugins/Manifest +++ b/kde-apps/dolphin-plugins/Manifest @@ -1,2 +1 @@ DIST dolphin-plugins-18.08.3.tar.xz 193624 BLAKE2B 8ba60e93b6423a463ee823560c06941c57541bd7561400020ae137c3cfa8b46b634f494a5429b1c83107599ed81727d7755538c5145a0cde03ee971d7b16b3d5 SHA512 38b28d93deb0e30f1e599ee150c5763c74f89b9706a3730cd0ed0b931ecc12a4284c907dced49689d069b82c84de151d1025e788c533943ec9280c1690c33930 -DIST dolphin-plugins-18.12.0.tar.xz 191844 BLAKE2B cf4c59909f961d2c295e6a15e963c409302f9ae52c001c284015977c88ed4d6fa71b47d0402bc7049834c702d94169a543e7552f6517882578dc9a0d490bfc6e SHA512 237fb4204267894903708ced1fed771871591606c12d3a25fb1452526fc71146f53f1e26c97954897eab97f08bfacc277dd189082c53aa867829a61e3b098348 diff --git a/kde-apps/dolphin-plugins/dolphin-plugins-18.12.0.ebuild b/kde-apps/dolphin-plugins/dolphin-plugins-18.12.0.ebuild deleted file mode 100644 index 2e0ef2c42bfe..000000000000 --- a/kde-apps/dolphin-plugins/dolphin-plugins-18.12.0.ebuild +++ /dev/null @@ -1,72 +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 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 - elog "You have disabled all plugin use flags. If you want to have vcs" - elog "integration in dolphin, enable those of your needs." - fi -} |