diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-09-16 13:39:53 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-09-16 13:39:53 +0100 |
commit | fbb388239ea04cda238f144fd47a8dfa18846ebf (patch) | |
tree | 6cc39e9c177c4caf1d3ae8afbf4c6d1e06f4a815 /net-im/skypeforlinux/files | |
parent | f6904b46546571858876b98f8c2e801a8edf61a6 (diff) |
net-im/skypeforlinux : drop ebuild, use gentoo one
Diffstat (limited to 'net-im/skypeforlinux/files')
-rw-r--r-- | net-im/skypeforlinux/files/skypeforlinux-8.11-proxy.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/net-im/skypeforlinux/files/skypeforlinux-8.11-proxy.patch b/net-im/skypeforlinux/files/skypeforlinux-8.11-proxy.patch deleted file mode 100644 index 39208a3e..00000000 --- a/net-im/skypeforlinux/files/skypeforlinux-8.11-proxy.patch +++ /dev/null @@ -1,31 +0,0 @@ -diff -burN usr.old/bin/skypeforlinux usr/bin/skypeforlinux ---- a/usr.old/bin/skypeforlinux 2017-12-09 03:43:34.598533060 +0200 -+++ b/usr/bin/skypeforlinux 2017-12-09 03:48:47.582759089 +0200 -@@ -3,10 +3,24 @@ - SCRIPT=$(readlink -f "$0") - USR_DIRECTORY=$(readlink -f $(dirname $SCRIPT)/..) - -+export HTTP_PROXY="${HTTP_PROXY:-}" -+export http_proxy="${http_proxy:-}" -+ -+PROXY_SERVICE="" -+[ -n "${HTTP_PROXY}" ] && { PROXY_SERVICE="${HTTP_PROXY}"; } -+[ -n "${http_proxy}" ] && { PROXY_SERVICE="${http_proxy}"; } -+ -+PROXY_SERVICE_ARGUMENT="" -+[ -n "${PROXY_SERVICE}" ] && { PROXY_SERVICE_ARGUMENT=" HTTP_PROXY=${PROXY_SERVICE} HTTPS_PROXY=${PROXY_SERVICE} http_proxy=${PROXY_SERVICE} https_proxy=${PROXY_SERVICE} "; } -+ - SKYPE_PATH=/opt/skypeforlinux/skypeforlinux --SKYPE_LOGS="$HOME/.config/skypeforlinux/logs" -+SKYPE_LOGS="${HOME}/.config/skypeforlinux/logs" -+ -+if [[ ! -e "${SKYPE_LOGS}" ]] ; then -+ mkdir -p "${SKYPE_LOGS}" -+fi - --mkdir -p $SKYPE_LOGS -+export ${PROXY_SERVICE_ARGUMENT} - --nohup "$SKYPE_PATH" --executed-from="$(pwd)" --pid=$$ "$@" > "$SKYPE_LOGS/skype-startup.log" 2>&1 & -+nohup "${SKYPE_PATH}" --executed-from="$(pwd)" --pid=$$ "$@" > "${SKYPE_LOGS}/skype-startup.log" 2>&1 & - |