Merge pull request #26670 from lverns/libreoffice-fix-xdg
libreoffice: fix #25831
This commit is contained in:
commit
fd92d817a3
3 changed files with 35 additions and 5 deletions
|
@ -72,6 +72,8 @@ in stdenv.mkDerivation rec {
|
||||||
configureScript = "./autogen.sh";
|
configureScript = "./autogen.sh";
|
||||||
dontUseCmakeConfigure = true;
|
dontUseCmakeConfigure = true;
|
||||||
|
|
||||||
|
patches = [ ./xdg-open.patch ];
|
||||||
|
|
||||||
postUnpack = ''
|
postUnpack = ''
|
||||||
mkdir -v $sourceRoot/src
|
mkdir -v $sourceRoot/src
|
||||||
'' + (stdenv.lib.concatMapStrings (f: "ln -sfv ${f} $sourceRoot/src/${f.md5 or f.outputHash}-${f.name}\nln -sfv ${f} $sourceRoot/src/${f.name}\n") srcs.third_party)
|
'' + (stdenv.lib.concatMapStrings (f: "ln -sfv ${f} $sourceRoot/src/${f.md5 or f.outputHash}-${f.name}\nln -sfv ${f} $sourceRoot/src/${f.name}\n") srcs.third_party)
|
||||||
|
|
|
@ -73,11 +73,14 @@ in stdenv.mkDerivation rec {
|
||||||
dontUseCmakeConfigure = true;
|
dontUseCmakeConfigure = true;
|
||||||
|
|
||||||
# ICU 58, included in 5.3.x
|
# ICU 58, included in 5.3.x
|
||||||
patches = [(fetchurl {
|
patches = [
|
||||||
url = "https://gerrit.libreoffice.org/gitweb?p=core.git;a=patch;h=3e42714c76b1347babfdea0564009d8d82a83af4";
|
(fetchurl {
|
||||||
sha256 = "10bid0jdw1rpdsqwzzk3r4rp6bjs2cvi82h7anz2m1amfjdv86my";
|
url = "https://gerrit.libreoffice.org/gitweb?p=core.git;a=patch;h=3e42714c76b1347babfdea0564009d8d82a83af4";
|
||||||
name = "libreoffice-5.2.x-icu4c-58.patch";
|
sha256 = "10bid0jdw1rpdsqwzzk3r4rp6bjs2cvi82h7anz2m1amfjdv86my";
|
||||||
})];
|
name = "libreoffice-5.2.x-icu4c-58.patch";}
|
||||||
|
)
|
||||||
|
./xdg-open.patch
|
||||||
|
];
|
||||||
|
|
||||||
postUnpack = ''
|
postUnpack = ''
|
||||||
mkdir -v $sourceRoot/src
|
mkdir -v $sourceRoot/src
|
||||||
|
|
25
pkgs/applications/office/libreoffice/xdg-open.patch
Normal file
25
pkgs/applications/office/libreoffice/xdg-open.patch
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
diff --git a/shell/source/unix/exec/shellexec.cxx b/shell/source/unix/exec/shellexec.cxx
|
||||||
|
--- a/shell/source/unix/exec/shellexec.cxx
|
||||||
|
+++ b/shell/source/unix/exec/shellexec.cxx
|
||||||
|
@@ -150,7 +150,7 @@ void SAL_CALL ShellExec::execute( const OUString& aCommand, const OUString& aPar
|
||||||
|
if (std::getenv("LIBO_FLATPAK") != nullptr) {
|
||||||
|
aBuffer.append("/app/bin/xdg-open");
|
||||||
|
} else {
|
||||||
|
- aBuffer.append("/usr/bin/xdg-open");
|
||||||
|
+ aBuffer.append("xdg-open");
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
aBuffer.append(" ");
|
||||||
|
diff --git a/shell/source/unix/misc/senddoc.sh b/shell/source/unix/misc/senddoc.sh
|
||||||
|
index 4519e01f26e2..8985711a2c01 100755
|
||||||
|
--- a/shell/source/unix/misc/senddoc.sh
|
||||||
|
+++ b/shell/source/unix/misc/senddoc.sh
|
||||||
|
@@ -393,6 +393,8 @@ case `basename "$MAILER" | sed 's/-.*$//'` in
|
||||||
|
MAILER=/usr/bin/kde-open
|
||||||
|
elif [ -x /usr/bin/xdg-open ] ; then
|
||||||
|
MAILER=/usr/bin/xdg-open
|
||||||
|
+ elif type -p xdg-open >/dev/null 2>&1 ; then
|
||||||
|
+ MAILER="$(type -p xdg-open)"
|
||||||
|
else
|
||||||
|
echo "Unsupported mail client: `basename $MAILER | sed 's/-.*^//'`"
|
||||||
|
exit 2
|
Loading…
Reference in a new issue