commit:     1bf23c20415d93fcdcd5d2941bbed31acbd8fe7b
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 20 10:18:12 2023 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Wed Dec 20 10:21:13 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bf23c20

net-misc/nextcloud-client: add 3.11.0

Closes: https://bugs.gentoo.org/920336
Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>

 .../nextcloud-client-3.11.0.ebuild                 | 115 +++++++++++++++++++++
 1 file changed, 115 insertions(+)

diff --git a/net-misc/nextcloud-client/nextcloud-client-3.11.0.ebuild 
b/net-misc/nextcloud-client/nextcloud-client-3.11.0.ebuild
new file mode 100644
index 000000000000..94cff32e49fb
--- /dev/null
+++ b/net-misc/nextcloud-client/nextcloud-client-3.11.0.ebuild
@@ -0,0 +1,115 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake virtualx xdg
+
+DESCRIPTION="Desktop Syncing Client for Nextcloud"
+HOMEPAGE="https://github.com/nextcloud/desktop";
+SRC_URI="
+       https://github.com/nextcloud/desktop/archive/v${PV/_/-}.tar.gz -> 
${P}.tar.gz
+"
+S="${WORKDIR}/desktop-${PV/_/-}"
+
+LICENSE="CC-BY-3.0 GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc dolphin nautilus test webengine"
+RESTRICT="!test? ( test )"
+
+# slot op for qtqui as this package uses private API parts of qtqui
+# src/gui/generalsettings.cpp:#include <private/qzipwriter_p.h>
+RDEPEND="
+       >=dev-db/sqlite-3.34:3
+       >=dev-libs/openssl-1.1.0:0=
+       dev-libs/qtkeychain:=[qt5(+)]
+       dev-qt/qtcore:5
+       dev-qt/qtdbus:5
+       dev-qt/qtdeclarative:5
+       dev-qt/qtgui:5=
+       dev-qt/qtnetwork:5[ssl]
+       dev-qt/qtquickcontrols2:5
+       dev-qt/qtsvg:5
+       dev-qt/qtwebsockets:5
+       dev-qt/qtwidgets:5
+       net-libs/libcloudproviders
+       kde-frameworks/karchive:5
+       sys-libs/zlib
+       dolphin? (
+               kde-frameworks/kcoreaddons:5
+               kde-frameworks/kio:5
+       )
+       nautilus? ( dev-python/nautilus-python )
+       webengine? ( dev-qt/qtwebengine:5[widgets] )
+"
+DEPEND="
+       ${RDEPEND}
+       dev-qt/qtconcurrent:5
+       dev-qt/qtxml:5
+       || ( gnome-base/librsvg media-gfx/inkscape )
+       doc? (
+               dev-python/sphinx
+               dev-tex/latexmk
+               dev-texlive/texlive-latexextra
+               virtual/latex-base
+       )
+       test? (
+               dev-qt/qttest:5
+               dev-util/cmocka
+       )
+"
+BDEPEND="
+       dev-qt/linguist-tools:5
+       dolphin? ( kde-frameworks/extra-cmake-modules )
+"
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-3.6.6-no-redefine-fortify-source.patch
+)
+
+src_prepare() {
+       # Keep tests in ${T}
+       sed -i -e "s#\"/tmp#\"${T}#g" test/test*.cpp || die
+
+       cmake_src_prepare
+}
+
+src_configure() {
+       local mycmakeargs=(
+               -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF}
+               -DBUILD_UPDATER=OFF
+               $(cmake_use_find_package doc Sphinx)
+               $(cmake_use_find_package doc PdfLatex)
+               $(cmake_use_find_package webengine Qt5WebEngine)
+               $(cmake_use_find_package webengine Qt5WebEngineWidgets)
+               -DBUILD_SHELL_INTEGRATION_DOLPHIN=$(usex dolphin)
+               -DBUILD_SHELL_INTEGRATION_NAUTILUS=$(usex nautilus)
+               -DBUILD_TESTING=$(usex test)
+       )
+
+       cmake_src_configure
+}
+
+src_test() {
+       virtx cmake_src_test
+}
+
+src_compile() {
+       local compile_targets=(all)
+       if use doc; then
+               compile_targets+=(doc doc-man)
+       fi
+       cmake_src_compile ${compile_targets[@]}
+}
+
+pkg_postinst() {
+       xdg_pkg_postinst
+
+       if ! has_version -r "dev-libs/qtkeychain[keyring]"; then
+               elog "dev-libs/qtkeychain has not been build with the 'keyring' 
USE flag."
+               elog "Please consider enabling the 'keyring' USE flag. 
Otherwise you may"
+               elog "have to authenticate manually every time you start the 
nextlcoud client."
+               elog "See https://bugs.gentoo.org/912844 for more information."
+       fi
+}

Reply via email to