You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1005 B
49 lines
1005 B
# 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
|
|
}
|