commit:     6226964036c14e4dec1ffb732f52f68e237ba112
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 23 08:21:17 2025 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Sun Mar 23 08:23:40 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62269640

net-misc/nextcloud-client: change VFS plugin install path

Default path is libdir, and crashes when using the plugin with that path

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

 .../nextcloud-client-3.15.3-r1.ebuild              | 123 +++++++++++++++++++++
 1 file changed, 123 insertions(+)

diff --git a/net-misc/nextcloud-client/nextcloud-client-3.15.3-r1.ebuild 
b/net-misc/nextcloud-client/nextcloud-client-3.15.3-r1.ebuild
new file mode 100644
index 000000000000..334b80d283d2
--- /dev/null
+++ b/net-misc/nextcloud-client/nextcloud-client-3.15.3-r1.ebuild
@@ -0,0 +1,123 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake qmake-utils 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
+       
https://github.com/nextcloud/desktop/commit/49a7c8d7874643da2550793877115c7f3dbd2d05.patch
+               -> ${PN}-3.15.2-fix-macosvfs-file-sharing.png.patch
+"
+S="${WORKDIR}/desktop-${PV/_/-}"
+
+LICENSE="CC-BY-3.0 GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+IUSE="doc dolphin nautilus test webengine"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+       >=dev-db/sqlite-3.34:3
+       dev-libs/glib:2
+       >=dev-libs/openssl-1.1.0:0=
+       >=dev-libs/qtkeychain-0.14.2:=[qt6(+)]
+       dev-qt/qt5compat:6
+       >=dev-qt/qtbase-6.6.0:6[dbus,gui,network,sql,sqlite,ssl,widgets]
+       dev-qt/qtdeclarative:6[widgets]
+       dev-qt/qtsvg:6
+       dev-qt/qtwebsockets:6
+       kde-frameworks/karchive:6
+       kde-frameworks/kguiaddons:6
+       net-libs/libcloudproviders
+       sys-libs/zlib
+       dolphin? (
+               kde-frameworks/kcoreaddons:6
+               kde-frameworks/kio:6
+       )
+       nautilus? ( dev-python/nautilus-python )
+       webengine? ( dev-qt/qtwebengine:6[widgets] )
+"
+DEPEND="
+       ${RDEPEND}
+       dev-qt/qtbase:6[concurrent,xml]
+       || (
+               gnome-base/librsvg
+               media-gfx/inkscape
+       )
+       doc? (
+               dev-python/sphinx
+               dev-tex/latexmk
+               dev-texlive/texlive-latexextra
+               virtual/latex-base
+       )
+       test? (
+               dev-util/cmocka
+       )
+"
+BDEPEND="
+       dev-qt/qttools:6[linguist]
+       dolphin? ( >=kde-frameworks/extra-cmake-modules-5.106.0 )
+"
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-3.6.6-no-redefine-fortify-source.patch
+       # https://github.com/nextcloud/desktop/pull/7383
+       "${FILESDIR}"/${PN}-3.14.2-doc-fix.patch
+       # https://github.com/nextcloud/desktop/pull/7691
+       "${DISTDIR}"/${PN}-3.15.2-fix-macosvfs-file-sharing.png.patch
+)
+
+src_prepare() {
+       # Keep tests in ${T}
+       sed -i -e "s#\"/tmp#\"${T}#g" test/test*.cpp || die
+       # The image under images/building/path.png does no longer
+       # exist. This is already fixed upstream and can be dropped on the
+       # next bump
+       sed -i '/images\/building\/path.png/d' doc/building.rst || die
+
+       cmake_src_prepare
+}
+
+src_configure() {
+       local mycmakeargs=(
+               -DPLUGINDIR=$(qt6_get_plugindir)
+               -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF}
+               -DBUILD_UPDATER=OFF
+               $(cmake_use_find_package doc Sphinx)
+               $(cmake_use_find_package doc PdfLatex)
+               -DBUILD_WITH_WEBENGINE=$(usex webengine)
+               -DBUILD_SHELL_INTEGRATION_DOLPHIN=$(usex dolphin)
+               -DBUILD_SHELL_INTEGRATION_NAUTILUS=$(usex nautilus)
+               -DBUILD_TESTING=$(usex test)
+       )
+
+       cmake_src_configure
+}
+
+src_test() {
+       TEST_VERBOSE=1 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