-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
78b9f8c
commit 42c61e4
Showing
2 changed files
with
127 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
# 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/com.alibabainc.${PN}_${PV}_amd64.deb" | ||
|
||
LICENSE="all-rights-reserved" | ||
SLOT="0" | ||
KEYWORDS="-* ~amd64" | ||
|
||
RESTRICT="strip mirror bindist" | ||
|
||
RDEPEND=" | ||
dev-libs/libthai | ||
dev-qt/qtgui | ||
media-libs/tiff-compat:4 | ||
media-libs/libpulse | ||
media-video/rtmpdump | ||
net-misc/curl | ||
net-nds/openldap | ||
sys-libs/glibc | ||
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" | ||
|
||
S=${WORKDIR} | ||
|
||
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 | ||
|
||
# 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 | ||
} |