net-misc/dropbox: add 231.4.5770

Signed-off-by: Ben Kohler <bkohler@gentoo.org>
This commit is contained in:
Ben Kohler
2025-08-28 07:59:29 -05:00
parent 6df224d845
commit db60782ce3
2 changed files with 132 additions and 0 deletions

View File

@@ -2,3 +2,4 @@ DIST dropbox-icon.svg 574 BLAKE2B a73a0906b5b03dc3214010736164fcdbceb6d91463ed95
DIST dropbox-lnx.x86_64-228.4.5567.tar.gz 110983316 BLAKE2B 99e79eb923a7e96ed48d01611e6065e61c521e2ec5c09839880721027769cbc68214cb0d6273ff90be0054c79a98971cf3a9c266595ee983b65a6bcaf243f9e6 SHA512 2885558fa55fb74fe370357b334c3e704cd4d8d75e96650f0abd819fad730108ba2aa3edc1911df841b9c830ad77b889ab705e61631d772cb4c4aff419d20ec4
DIST dropbox-lnx.x86_64-229.4.5197.tar.gz 111042587 BLAKE2B 5d81293ae4f1e9163cfaea063bf0551d242becf54ed66a6efae01cee12c3800201c7e689d04bbe816ea6a11e2b35c28e5566ac73cc728bf75002f0223458d173 SHA512 87c49e025fe4f3bc0b386efde0ebb4923f7d6ac986d623a0ba161cda329e838b463111002e5628aa8f2e768d5fcfe7982c1347e6f0ea8f18b3a8293c0207dd56
DIST dropbox-lnx.x86_64-230.4.8797.tar.gz 110515845 BLAKE2B 40f10ab1f729890836b0ff82028eb7a1d563b5c46794e4fb694ab5ea04e4aad168a21cd2bf0b80b783b8c4ac33d1331f0928eecf0dae043de467e7756df4a33f SHA512 ae786cecd8853819386ec6fe5338babf1a016719df38e9cb251330b924e390219b15e066bb00a70615ada1738642411d64c4bbdcc851427af00dff96f8f35605
DIST dropbox-lnx.x86_64-231.4.5770.tar.gz 71507143 BLAKE2B 55d1afa0b873b8d128aa584efe4ece6679b04c06faed2a25099e364da09ece373a63a55369c3eba27d659c8d3963b23ba98d5f50128929ccff5263fb26b02c32 SHA512 ae8db50c31a6b992c274f409f10dfcf443febdf8ec6a1ec64d72ee80cc968145ddf39b5eb5f04ffb0e6fa8102635888cdbdb6b6db5f7511acdc56a046b612a98

View File

@@ -0,0 +1,131 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit desktop pax-utils systemd xdg
DESCRIPTION="Dropbox daemon (pretends to be GUI-less)"
HOMEPAGE="https://www.dropbox.com/"
SRC_URI="
https://clientupdates.dropboxstatic.com/dbx-releng/client/dropbox-lnx.x86_64-${PV}.tar.gz
https://uxwing.com/wp-content/themes/uxwing/download/brands-and-social-media/dropbox-icon.svg
"
LICENSE="BSD-2 CC-BY-ND-3.0 FTL MIT LGPL-2 openssl dropbox"
SLOT="0"
KEYWORDS="-* ~amd64"
IUSE="selinux X"
RESTRICT="mirror strip"
QA_PREBUILT="opt/.*"
QA_EXECSTACK="opt/dropbox/dropbox"
BDEPEND="dev-util/patchelf"
# Be sure to have GLIBCXX_3.4.9, #393125
RDEPEND="
X? (
x11-themes/hicolor-icon-theme
dev-libs/libayatana-appindicator
)
selinux? ( sec-policy/selinux-dropbox )
app-arch/bzip2
dev-libs/glib:2
dev-libs/libffi-compat:7
media-libs/fontconfig
media-libs/freetype
net-misc/wget
sys-libs/zlib
sys-libs/ncurses-compat:5
virtual/opengl
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXext
x11-libs/libXrender
x11-libs/libxcb
"
src_unpack() {
unpack ${A}
mkdir -p "${S}" || die
mv "${WORKDIR}"/.dropbox-dist/* "${S}" || die
mv "${S}"/dropbox-lnx.*-${PV}/* "${S}" || die
rmdir "${S}"/dropbox-lnx.*-${PV}/ || die
rmdir .dropbox-dist || die
}
src_prepare() {
default
# we supply all of these in RDEPEND
rm -vf libGL.so.1 libX11* libffi.so.7 || die
# some of these do not appear to be used
rm -vf libQt5{OpenGL,PrintSupport,Qml,Quick,Sql,WebKit,WebKitWidgets}.so.5 \
PyQt5.QtPrintSupport.* PyQt5.QtQml.* PyQt5.QtQuick.* \
wmctrl libdrm.so.2 libpopt.so.0 || die
if use X ; then
mv images/hicolor/16x16/status "${T}" || die
else
rm -vrf images || die
fi
patchelf --set-rpath '$ORIGIN' \
apex._apex.*.so \
nucleus_python.*.so \
tprt.*.so \
|| die
pax-mark cm dropbox
mv README ACKNOWLEDGEMENTS "${T}" || die
}
src_install() {
local targetdir="/opt/dropbox"
insinto "${targetdir}"
doins -r *
fperms a+x "${targetdir}"/{dropbox,dropboxd}
dosym "${targetdir}/dropboxd" "/opt/bin/dropbox"
if use X; then
# symlinks for bug 955139
dosym ../../usr/$(get_libdir)/libayatana-appindicator3.so.1 ${targetdir}/libappindicator3.so.1
dosym libappindicator3.so.1 ${targetdir}/libappindicator3.so
doicon -s 16 -c status "${T}"/status
newicon -s scalable "${DISTDIR}/dropbox-icon.svg" dropbox.svg
fi
make_desktop_entry "${PN}" "Dropbox" "dropbox"
newinitd "${FILESDIR}"/dropbox.initd dropbox
newconfd "${FILESDIR}"/dropbox.conf dropbox
systemd_newunit "${FILESDIR}"/dropbox_at.service-r2 "dropbox@.service"
dodoc "${T}"/{README,ACKNOWLEDGEMENTS}
}
pkg_postinst() {
xdg_pkg_postinst
einfo "Warning: while running, dropbox may attempt to autoupdate itself in"
einfo " your user's home directory. To prevent this, run the following as"
einfo " each user who will run dropbox:"
einfo ""
einfo "install -dm0 ~/.dropbox-dist"
einfo ""
einfo "If you do allow dropbox to update/install to your user homedir, you"
einfo " will need to create some compat symlinks to keep the tray icon working:"
einfo ""
einfo "ln -sf /usr/$(get_libdir)/libayatana-appindicator3.so.1 ~/.dropbox-dist/dropbox-lnx.*/libappindicator3.so.1"
einfo "ln -sf libappindicator3.so.1 ~/.dropbox-dist/dropbox-lnx.*/libappindicator3.so"
if has_version gnome-base/gnome-shell; then
if ! has_version gnome-extra/gnome-shell-extension-appindicator; then
einfo ""
einfo "Please install gnome-extra/gnome-shell-extension-appindicator if you"
einfo " require tray icon support for Dropbox in Gnome."
fi
fi
}