| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 7.6.25.4122001 | 8 | -* ~amd64 | 0 |
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PGK_NAME="com.alibabainc.dingtalk"
inherit desktop unpacker xdg
DESCRIPTION="Communication platform that supports video and audio conferencing"
HOMEPAGE="https://gov.dingtalk.com"
SRC_URI="https://dtapp-pub.dingtalk.com/dingtalk-desktop/xc_dingtalk_update/linux_deb/Release/0211/com.alibabainc.${PN}_${PV}_amd64.deb"
S=${WORKDIR}
LICENSE="all-rights-reserved"
SLOT="0"
KEYWORDS="-* ~amd64"
RESTRICT="strip mirror bindist"
RDEPEND="
dev-libs/wayland
dev-libs/libthai
dev-qt/qtgui
media-libs/tiff-compat:4
media-libs/libpulse
media-video/rtmpdump
net-misc/curl
net-nds/openldap
virtual/libc
sys-libs/zlib
sys-process/procps
x11-libs/gtk+:2
x11-libs/gtk+:3
x11-libs/libXScrnSaver
virtual/libcrypt
"
DEPEND="${RDEPEND}"
BDEPEND="
dev-util/patchelf
dev-util/execstack
"
QA_PREBUILT="*"
src_install() {
# Install scalable icon
doicon -s scalable "${FILESDIR}"/dingtalk.svg
# Remove the libraries that break compatibility in modern systems
# Dingtalk will use the system libs instead
MY_VERSION=$(cat "${S}"/opt/apps/"${MY_PGK_NAME}"/files/version)
# Use system stdc++
rm -f "${S}"/opt/apps/"${MY_PGK_NAME}"/files/"${MY_VERSION}"/libstdc++* || die
# Use system glibc
rm -f "${S}"/opt/apps/"${MY_PGK_NAME}"/files/"${MY_VERSION}"/libm.so* || die
# Use system zlib
rm -f "${S}"/opt/apps/"${MY_PGK_NAME}"/files/"${MY_VERSION}"/libz* || die
# Use system libcurl, fix preserved depend problem
rm -f "${S}"/opt/apps/"${MY_PGK_NAME}"/files/"${MY_VERSION}"/libcurl.so* || die
# use system freetype, fix undefined symbol: FT_Get_Color_Glyph_Layer
rm -rf "${S}"/opt/apps/"${MY_PGK_NAME}"/files/"${MY_VERSION}"/libfreetype.so* || die
# Fix */dingtalk_dll.so: cannot enable executable stack as shared object requires: Invalid argument
execstack -c "${WORKDIR}"/opt/apps/"${MY_PGK_NAME}"/files/"${MY_VERSION}"/{dingtalk_dll,libconference_new}.so || die
# Set RPATH for preserve-libs handling
pushd "${S}"/opt/apps/"${MY_PGK_NAME}"/files/"${MY_VERSION}" || die
local x
for x in $(find) ; do
# Use \x7fELF header to separate ELF executables and libraries
[[ -f ${x} && $(od -t x1 -N 4 "${x}") == *"7f 45 4c 46"* ]] || continue
local RPATH_ROOT="/opt/apps/${MY_PGK_NAME}/files/${MY_VERSION}"
patchelf --set-rpath "${RPATH_ROOT}/:${RPATH_ROOT}/swiftshader/:${RPATH_ROOT}/platforminputcontexts/:${RPATH_ROOT}/imageformats/" "${x}" || \
die "patchelf failed on ${x}"
done
popd || die
# fix ldd pattern error
sed -i 's/libc_version=.*/libc_version=`ldd --version | grep ldd | rev | cut -d" " -f1 | rev`/g' "${S}"/opt/apps/"${MY_PGK_NAME}"/files/Elevator.sh || die
# Fix fcitx5
sed -i "s/export XMODIFIERS/#export XMODIFIERS/g" "${S}"/opt/apps/"${MY_PGK_NAME}"/files/Elevator.sh || die
sed -i "s/export QT_IM_MODULE/#export QT_IM_MODULE/g" "${S}"/opt/apps/"${MY_PGK_NAME}"/files/Elevator.sh || die
cat >> "${S}"/opt/apps/"${MY_PGK_NAME}"/files/Elevator.sh.head <<- EOF || die
#!/bin/sh
if [ -z "\${QT_IM_MODULE}" ]
then
if [ -n "\$(pidof fcitx5)" ]
then
export XMODIFIERS="@im=fcitx"
export QT_IM_MODULE=fcitx
elif [ -n "\$(pidof ibus-daemon)" ]
then
export XMODIFIERS="@im=ibus"
export QT_IM_MODULE=ibus
elif [ -n "\$(pidof fcitx)" ]
then
export XMODIFIERS="@im=fcitx"
export QT_IM_MODULE=fcitx
fi
fi
EOF
cat "${S}"/opt/apps/"${MY_PGK_NAME}"/files/Elevator.sh.head "${S}"/opt/apps/"${MY_PGK_NAME}"/files/Elevator.sh > "${S}"/opt/apps/"${MY_PGK_NAME}"/files/Elevator.sh.new || die
cat "${S}"/opt/apps/"${MY_PGK_NAME}"/files/Elevator.sh.new > "${S}"/opt/apps/"${MY_PGK_NAME}"/files/Elevator.sh || die
rm "${S}"/opt/apps/"${MY_PGK_NAME}"/files/Elevator.sh.head "${S}"/opt/apps/"${MY_PGK_NAME}"/files/Elevator.sh.new || die
# Add dingtalk command
mkdir -p "${S}"/usr/bin/ || die
ln -s /opt/apps/"${MY_PGK_NAME}"/files/Elevator.sh "${S}"/usr/bin/dingtalk || die
# Fix file path and desktop files
sed -E -i 's/^Icon=.*$/Icon=dingtalk/g' "${S}"/opt/apps/"${MY_PGK_NAME}"/entries/applications/*.desktop || die
mkdir -p usr/share/applications || die
mv "${S}"/opt/apps/"${MY_PGK_NAME}"/entries/applications/"${MY_PGK_NAME}".desktop usr/share/applications/ || die
# Install package and fix permissions
insinto /opt/apps
doins -r opt/apps/${MY_PGK_NAME}
insinto /usr
doins -r usr/*
pushd "${S}" || die
for x in $(find "opt/apps/${MY_PGK_NAME}") ; do
# Fix shell script permissions
[[ "${x: -3}" == ".sh" ]] && fperms 0755 "/${x}"
# Use \x7fELF header to separate ELF executables and libraries
[[ -f ${x} && $(od -t x1 -N 4 "${x}") == *"7f 45 4c 46"* ]] && fperms 0755 "/${x}"
done
popd || die
}
dev-libs/wayland dev-libs/libthai dev-qt/qtgui media-libs/tiff-compat:4 media-libs/libpulse media-video/rtmpdump net-misc/curl net-nds/openldap virtual/libc sys-libs/zlib sys-process/procps x11-libs/gtk+:2 x11-libs/gtk+:3 x11-libs/libXScrnSaver virtual/libcrypt
dev-libs/wayland dev-libs/libthai dev-qt/qtgui media-libs/tiff-compat:4 media-libs/libpulse media-video/rtmpdump net-misc/curl net-nds/openldap virtual/libc sys-libs/zlib sys-process/procps x11-libs/gtk+:2 x11-libs/gtk+:3 x11-libs/libXScrnSaver virtual/libcrypt
dev-util/patchelf dev-util/execstack
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | com.alibabainc.dingtalk_7.6.25.4122001_amd64.deb | 356334500 bytes | https://dtapp-pub.dingtalk.com/dingtalk-desktop/xc_dingtalk_update/linux_deb/Release/0211/com.alibabainc.dingtalk_7.6.25.4122001_amd64.deb |