diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2019-04-28 09:54:45 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2019-04-28 09:54:45 +0100 |
commit | b7ebc951da8800f711142f69d9d958bde67a112d (patch) | |
tree | e318514216845acb8f2e49fff7a5cba4027e9d91 /kde-apps/dolphin-plugins-dropbox | |
parent | dc7cbdfa65fd814b3b9aa3c56257da201109e807 (diff) |
gentoo resync : 28.04.2019
Diffstat (limited to 'kde-apps/dolphin-plugins-dropbox')
-rw-r--r-- | kde-apps/dolphin-plugins-dropbox/Manifest | 2 | ||||
-rw-r--r-- | kde-apps/dolphin-plugins-dropbox/dolphin-plugins-dropbox-19.04.0.ebuild | 48 |
2 files changed, 50 insertions, 0 deletions
diff --git a/kde-apps/dolphin-plugins-dropbox/Manifest b/kde-apps/dolphin-plugins-dropbox/Manifest index d2b9eb86137d..7a30046b48bf 100644 --- a/kde-apps/dolphin-plugins-dropbox/Manifest +++ b/kde-apps/dolphin-plugins-dropbox/Manifest @@ -1,3 +1,5 @@ DIST dolphin-plugins-18.12.3.tar.xz 191992 BLAKE2B 82dc3e03008949bc0af0c5938365b2d4dadbe8cafc0e7969e8c3a05804a53bfe6feb5e62e2f90f98940150709834472ff5b642681c7a6386b6362df8e4e75726 SHA512 a7d022652d80e832209c507b293c2701a8a3537d2b494e72c1e09dda9159751be8287991441869c0ce4cb8346c8c11fa537e94e06effb8e02d4f9f1fedaf9bf7 +DIST dolphin-plugins-19.04.0.tar.xz 192060 BLAKE2B 9024f60355f18e4961b5df543789f7c92501ff4162bea235760f47c5870e018fa42f092e4b3896ae470406f3b37b0171f814a48d246f085f377f215b8964f0ad SHA512 a9b8104f6472053f5e7b95a53238a2673d819a025b878a998c17c017683a1d61adbdd0abef6a40a4f3257735e2c16ca5a7550e95fe0bfa99ae470f3a4fe30ed5 EBUILD dolphin-plugins-dropbox-18.12.3.ebuild 1005 BLAKE2B 26e20c73fbcd3971afedac764d49ec81e564ddf4b5b7678cbd23276c644d8b992734f3224c1483cde21ed01c91147e24be30243d5e7c42176fa38f29c6460bc8 SHA512 de3fef9b6eeecdf2dd92cd599dc156a2d863e4beb3f5d2f6fb49a23c18eb48be944c9ab43370c2c990a5838a3a2562b8ae3f1f1b57534a7b397e649f7d3125b0 +EBUILD dolphin-plugins-dropbox-19.04.0.ebuild 1007 BLAKE2B 1590edbfad026de3ede65cd63a19ad1e7c0ecc2be94069b0631d0de571d28beb0cdd6350c6f5dd56d1a961cd7b869a95c32bc6fcbb1333f828c3895b4c722bee SHA512 16bcd9fbef004bb1e35dcb93fbb0a261ea3e50a165debcee7d7b0c7d79541cc2fdde1cbf92e79f323092a746b0fac5436a5deda7728e488244a5756f491666c8 MISC metadata.xml 249 BLAKE2B ad415db89e5dee1627aa77f44ded9d4e1e5b8217d06c7ca25bbaa3fe92ce67c2b1090957c45a821b407d7927e5af798498aa6a5b903895ee1af8ee20a446c7f7 SHA512 76a5a340b13f0053ca3c5e94ed24380ea8d29b45ac8655419e22eaadb1e4a827c04d2e7e36b65145c4964e6526f656618fc6ac144e277ef53cb7373e6239e3c3 diff --git a/kde-apps/dolphin-plugins-dropbox/dolphin-plugins-dropbox-19.04.0.ebuild b/kde-apps/dolphin-plugins-dropbox/dolphin-plugins-dropbox-19.04.0.ebuild new file mode 100644 index 000000000000..a9451d744149 --- /dev/null +++ b/kde-apps/dolphin-plugins-dropbox/dolphin-plugins-dropbox-19.04.0.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +KMNAME="dolphin-plugins" +KDE_HANDBOOK="false" +MY_PLUGIN_NAME="dropbox" +inherit kde5 + +DESCRIPTION="Dolphin plugin for Dropbox service integration" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + $(add_frameworks_dep kcoreaddons) + $(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) +" +RDEPEND="${DEPEND} + !kde-apps/dolphin-plugins:5 + net-misc/dropbox-cli +" + +src_prepare() { + kde5_src_prepare + # delete non-${PN} translations + if [[ ${KDE_BUILD_TYPE} = release ]]; then + find po -type f -name "*po" -and -not -name "*${MY_PLUGIN_NAME}plugin" -delete || die + fi +} + +src_configure() { + local mycmakeargs=( + -DBUILD_${MY_PLUGIN_NAME}=ON + -DBUILD_bazaar=OFF + -DBUILD_git=OFF + -DBUILD_hg=OFF + -DBUILD_svn=OFF + ) + kde5_src_configure +} |