mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
It doesn't affect the actual build. Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
137 lines
2.9 KiB
Bash
137 lines
2.9 KiB
Bash
# Copyright 2023-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools cmake qmake-utils xdg
|
|
|
|
DESCRIPTION="The official Qt-based program for syncing your MEGA account in your PC"
|
|
HOMEPAGE="
|
|
https://mega.io
|
|
https://github.com/meganz/MEGAsync
|
|
"
|
|
|
|
if [[ ${PV} == 9999 ]];then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/meganz/MEGAsync"
|
|
EGIT_BRANCH="master"
|
|
EGIT_SUBMODULES=( '*' )
|
|
else
|
|
MEGA_SDK_REV="f71b60452a5d6c32bebc5125a13977a335d78e71" # 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
|
|
"
|
|
KEYWORDS="~amd64 ~x86"
|
|
S="${WORKDIR}"/MEGAsync-${PV}_${MEGA_TAG_SUFFIX}
|
|
fi
|
|
|
|
LICENSE="MEGA"
|
|
SLOT="0"
|
|
IUSE="dolphin freeimage nautilus nemo thunar"
|
|
|
|
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/qtimageformats:5
|
|
dev-qt/qtsvg:5
|
|
dev-qt/qtwidgets:5
|
|
dev-qt/qtx11extras:5
|
|
media-libs/libmediainfo
|
|
media-libs/libraw
|
|
net-dns/c-ares:=
|
|
net-misc/curl[ssl,curl_ssl_openssl(-)]
|
|
sys-libs/zlib
|
|
x11-libs/libxcb:=
|
|
dolphin? ( kde-apps/dolphin )
|
|
freeimage? (
|
|
media-libs/freeimage
|
|
media-video/ffmpeg:=
|
|
)
|
|
nautilus? ( >=gnome-base/nautilus-43 )
|
|
nemo? ( gnome-extra/nemo )
|
|
thunar? ( xfce-base/thunar )
|
|
"
|
|
RDEPEND="
|
|
${DEPEND}
|
|
x11-themes/hicolor-icon-theme
|
|
"
|
|
BDEPEND="
|
|
dev-qt/linguist-tools:5
|
|
dolphin? ( kde-frameworks/extra-cmake-modules )
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-4.10.0.0_ffmpeg6.patch"
|
|
"${FILESDIR}/${PN}-4.10.0.0_fix-build.patch"
|
|
)
|
|
|
|
CMAKE_USE_DIR="${S}/src/MEGAShellExtDolphin"
|
|
|
|
src_prepare() {
|
|
if [[ ${PV} != 9999 ]]; then
|
|
rmdir src/MEGASync/mega || die
|
|
mv "${WORKDIR}/sdk-${MEGA_SDK_REV}" src/MEGASync/mega || die
|
|
fi
|
|
|
|
if use dolphin; then
|
|
cmake_src_prepare
|
|
else
|
|
default
|
|
fi
|
|
|
|
cd "${S}/src/MEGASync/mega" || die
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
cd "${S}/src/MEGASync/mega" || die
|
|
econf \
|
|
"--disable-curl-checks" \
|
|
"--disable-examples" \
|
|
$(use_with freeimage)
|
|
|
|
cd "${S}/src" || die
|
|
local myqmakeargs=(
|
|
MEGA.pro
|
|
CONFIG+="release"
|
|
$(usex freeimage "" "CONFIG+=nofreeimage")
|
|
$(usev nautilus "SUBDIRS+=MEGAShellExtNautilus")
|
|
$(usev nemo "SUBDIRS+=MEGAShellExtNemo")
|
|
$(usev thunar "SUBDIRS+=MEGAShellExtThunar")
|
|
)
|
|
|
|
eqmake5 "${myqmakeargs[@]}"
|
|
$(qt5_get_bindir)/lrelease MEGASync/MEGASync.pro || die
|
|
|
|
use dolphin && cmake_src_configure
|
|
}
|
|
|
|
src_compile() {
|
|
emake -C src
|
|
|
|
use dolphin && cmake_src_compile
|
|
}
|
|
|
|
src_install() {
|
|
emake -C src INSTALL_ROOT="${D}" install
|
|
dobin "src/MEGASync/${PN}"
|
|
dodoc CREDITS.md README.md
|
|
|
|
rm -rf "${D}"/usr/share/doc/megasync || die
|
|
rm -rf "${D}"/usr/share/icons/ubuntu-mono-dark || die
|
|
|
|
use dolphin && cmake_src_install
|
|
}
|