mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
Closes: https://bugs.gentoo.org/766953 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
134 lines
3.1 KiB
Bash
134 lines
3.1 KiB
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit autotools desktop qmake-utils xdg cmake
|
|
|
|
DESCRIPTION="The official Qt-based program for syncing your MEGA account in your PC"
|
|
HOMEPAGE="http://mega.co.nz"
|
|
|
|
if [[ ${PV} == 9999 ]];then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/meganz/MEGAsync"
|
|
else
|
|
MEGA_SDK_REV="ba4834cb6c22f4e996f328db3aa5b82ef20eed3e" # commit of src/MEGASync/mega submodule
|
|
SRC_URI="
|
|
https://github.com/meganz/MEGAsync/archive/v${PV}.0_Linux.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}.0_Linux
|
|
fi
|
|
|
|
LICENSE="MEGA"
|
|
SLOT="0"
|
|
IUSE="+cryptopp +curl +sqlite +zlib dolphin examples freeimage java libressl nautilus php python readline threads thunar"
|
|
|
|
RDEPEND="
|
|
app-arch/xz-utils
|
|
dev-libs/libgcrypt
|
|
dev-libs/libsodium
|
|
dev-libs/libuv
|
|
media-libs/libpng
|
|
net-dns/c-ares
|
|
x11-themes/hicolor-icon-theme
|
|
cryptopp? ( dev-libs/crypto++ )
|
|
curl? (
|
|
!libressl? ( net-misc/curl[ssl,curl_ssl_openssl] )
|
|
libressl? ( net-misc/curl[ssl,curl_ssl_libressl] )
|
|
)
|
|
dolphin? ( kde-apps/dolphin )
|
|
freeimage? ( media-libs/freeimage )
|
|
!libressl? ( dev-libs/openssl:0= )
|
|
libressl? ( dev-libs/libressl:0= )
|
|
nautilus? ( >=gnome-base/nautilus-3 )
|
|
readline? ( sys-libs/readline:0 )
|
|
sqlite? ( dev-db/sqlite:3 )
|
|
thunar? ( xfce-base/thunar )
|
|
zlib? ( sys-libs/zlib )
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
media-libs/libmediainfo
|
|
media-libs/libraw
|
|
dev-qt/qtcore:5
|
|
dev-qt/qtwidgets:5
|
|
dev-qt/qtgui:5
|
|
dev-qt/qtconcurrent:5
|
|
dev-qt/qtnetwork:5
|
|
dev-qt/qtdbus:5
|
|
dev-qt/qtimageformats:5
|
|
dev-qt/qtsvg:5
|
|
dev-qt/qtx11extras:5
|
|
"
|
|
BDEPEND="
|
|
app-doc/doxygen
|
|
dev-lang/swig
|
|
dev-qt/linguist-tools
|
|
"
|
|
|
|
DOCS=( CREDITS.md README.md )
|
|
|
|
src_prepare() {
|
|
if [[ ${PV} != 9999 ]]; then
|
|
rmdir src/MEGASync/mega
|
|
mv "${WORKDIR}"/sdk-${MEGA_SDK_REV} src/MEGASync/mega
|
|
fi
|
|
default
|
|
cd src/MEGASync/mega
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
cd src/MEGASync/mega
|
|
econf \
|
|
"--disable-silent-rules" \
|
|
"--disable-curl-checks" \
|
|
"--disable-megaapi" \
|
|
$(use_with zlib) \
|
|
$(use_with sqlite) \
|
|
$(use_with cryptopp) \
|
|
"--with-cares" \
|
|
$(use_with curl) \
|
|
"--without-termcap" \
|
|
$(use_enable threads posix-threads) \
|
|
"--with-sodium" \
|
|
$(use_with freeimage) \
|
|
$(use_with readline) \
|
|
$(use_enable examples) \
|
|
$(use_enable java) \
|
|
$(use_enable php) \
|
|
$(use_enable python) \
|
|
"--enable-chat" \
|
|
"--enable-gcc-hardening"
|
|
cd ../..
|
|
|
|
local myeqmakeargs=(
|
|
MEGA.pro
|
|
CONFIG+="release"
|
|
)
|
|
|
|
eqmake5 ${myeqmakeargs[@]}
|
|
use dolphin && cmake_src_configure
|
|
$(qt5_get_bindir)/lrelease MEGASync/MEGASync.pro
|
|
}
|
|
|
|
src_compile() {
|
|
emake -C src INSTALL_ROOT="${D}" || die
|
|
use dolphin && cmake_src_compile
|
|
}
|
|
|
|
src_install() {
|
|
use dolphin && cmake_src_install
|
|
einstalldocs
|
|
dobin src/MEGASync/${PN}
|
|
insinto usr/share/licenses/${PN}
|
|
doins LICENCE.md installer/terms.txt
|
|
domenu src/MEGASync/platform/linux/data/${PN}.desktop
|
|
cd src/MEGASync/platform/linux/data/icons/hicolor
|
|
for size in 16x16 32x32 48x48 128x128 256x256;do
|
|
doicon -s $size $size/apps/mega.png
|
|
done
|
|
}
|