mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-08 14:43:27 -04:00
141 lines
3.1 KiB
Bash
141 lines
3.1 KiB
Bash
# Copyright 2023-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake flag-o-matic xdg
|
|
|
|
DESCRIPTION="The official Qt-based program for syncing your MEGA account in your PC"
|
|
HOMEPAGE="
|
|
https://mega.io
|
|
https://github.com/meganz/MEGAsync
|
|
"
|
|
|
|
MEGA_SDK_REV="f7d7a1c1c563448b196e950b78c5cd4b1284a2ca" # commit of src/MEGASync/mega submodule
|
|
MEGA_TAG_SUFFIX="Linux"
|
|
SRC_URI="
|
|
https://github.com/meganz/MEGAsync/archive/v${PV}_${MEGA_TAG_SUFFIX}.tar.gz -> ${P}.tar.gz
|
|
https://github.com/meganz/sdk/archive/${MEGA_SDK_REV}.tar.gz -> ${PN}-sdk-${PV}.tar.gz
|
|
"
|
|
S="${WORKDIR}"/MEGAsync-${PV}_${MEGA_TAG_SUFFIX}
|
|
|
|
LICENSE="MEGA"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="dolphin mediainfo nautilus nemo thumbnail thunar"
|
|
|
|
# Qt6 issue: https://github.com/meganz/MEGAsync/issues/954
|
|
DEPEND="
|
|
dev-db/sqlite:3
|
|
dev-libs/crypto++:=
|
|
dev-libs/icu:=
|
|
dev-libs/libsodium:=
|
|
dev-libs/libuv:=
|
|
dev-libs/openssl:0=
|
|
dev-qt/qtconcurrent:5
|
|
dev-qt/qtcore:5
|
|
dev-qt/qtdbus:5
|
|
dev-qt/qtdeclarative:5
|
|
dev-qt/qtgui:5
|
|
dev-qt/qtnetwork:5
|
|
dev-qt/qtsvg:5
|
|
dev-qt/qtwidgets:5
|
|
dev-qt/qtx11extras:5
|
|
net-misc/curl[ssl]
|
|
virtual/zlib:=
|
|
x11-libs/libxcb:=
|
|
dolphin? (
|
|
dev-qt/qtbase:6[network,widgets]
|
|
kde-apps/dolphin:6
|
|
kde-frameworks/kcoreaddons:6
|
|
kde-frameworks/kio:6
|
|
kde-frameworks/kwidgetsaddons:6
|
|
)
|
|
mediainfo? (
|
|
media-libs/libmediainfo
|
|
media-libs/libzen
|
|
)
|
|
nautilus? (
|
|
dev-libs/glib:2
|
|
>=gnome-base/nautilus-43
|
|
)
|
|
nemo? (
|
|
dev-libs/glib:2
|
|
gnome-extra/nemo
|
|
)
|
|
thumbnail? (
|
|
media-libs/freeimage
|
|
media-video/ffmpeg:=
|
|
)
|
|
thunar? (
|
|
dev-libs/glib:2
|
|
xfce-base/thunar:=
|
|
)
|
|
"
|
|
RDEPEND="
|
|
${DEPEND}
|
|
dev-qt/qtquickcontrols:5
|
|
dev-qt/qtquickcontrols2:5
|
|
"
|
|
BDEPEND="
|
|
dev-qt/linguist-tools:5
|
|
virtual/pkgconfig
|
|
dolphin? ( kde-frameworks/extra-cmake-modules )
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-5.6.0.0-remove-clang-format.patch"
|
|
"${FILESDIR}/${PN}-6.0.0.3-disable-forced-options.patch"
|
|
"${FILESDIR}/${PN}-5.7.0.0-fix-install-dir.patch"
|
|
"${FILESDIR}/${PN}-5.7.0.0-rename-libcryptopp.patch"
|
|
"${FILESDIR}/${PN}-5.10.0.2-link-zlib.patch"
|
|
"${FILESDIR}/${PN}-6.0.0.3-cmake4.patch"
|
|
"${FILESDIR}/${PN}-6.2.2.0-link-icu.patch"
|
|
"${FILESDIR}/${PN}-6.2.2.0-static-internal-libs.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
rmdir src/MEGASync/mega || die
|
|
mv "${WORKDIR}/sdk-${MEGA_SDK_REV}" src/MEGASync/mega || die
|
|
|
|
for ext in {dolphin,nautilus,thunar,nemo}; do
|
|
if use "!$ext"; then
|
|
cmake_comment_add_subdirectory -f src "MEGAShellExt${ext^}"
|
|
fi
|
|
done
|
|
|
|
cmake_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
# https://github.com/meganz/sdk/issues/2679
|
|
append-cppflags -DNDEBUG
|
|
|
|
local mycmakeargs=(
|
|
-DCMAKE_MODULE_PATH="${S}/src/MEGASync/mega/cmake/modules/packages"
|
|
-DENABLE_DESKTOP_APP_TESTS=OFF
|
|
-DENABLE_DESKTOP_APP_WERROR=OFF
|
|
-DENABLE_DESKTOP_UPDATE_GEN=OFF
|
|
-DENABLE_DESIGN_TOKENS_IMPORTER=OFF
|
|
-DUSE_BREAKPAD=OFF
|
|
-DENABLE_ISOLATED_GFX=$(usex thumbnail)
|
|
-DENABLE_LINUX_EXT=ON
|
|
-DUSE_FFMPEG=$(usex thumbnail)
|
|
-DUSE_FREEIMAGE=$(usex thumbnail)
|
|
-DENABLE_MEDIA_FILE_METADATA=$(usex mediainfo)
|
|
-DUSE_PDFIUM=OFF
|
|
-DUSE_READLINE=OFF
|
|
)
|
|
if use dolphin; then
|
|
mycmakeargs+=(
|
|
-DKF_VER=6
|
|
)
|
|
fi
|
|
if use nemo; then
|
|
mycmakeargs+=(
|
|
-Dno_desktop=ON
|
|
)
|
|
fi
|
|
cmake_src_configure
|
|
}
|