pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/misc/libreoffice libreoffice: Use portable 'command -v...
details: https://anonhg.NetBSD.org/pkgsrc/rev/0423efea6f65
branches: trunk
changeset: 450079:0423efea6f65
user: ryoon <ryoon%pkgsrc.org@localhost>
date: Sat Apr 10 13:13:47 2021 +0000
description:
libreoffice: Use portable 'command -v' instead of 'type -p' and fix segfault
Pointed out in PR pkg/56092 by gutteridge@.
And convert to use OpenSSL TLS backend.
Recent devel/nss change, libsoftkn3.so uses MD5_Update()
from OpenSSL and it causes SIGSEGV.
Bump PKGREVISION.
diffstat:
misc/libreoffice/Makefile | 6 +++---
misc/libreoffice/distinfo | 4 ++--
misc/libreoffice/patches/patch-shell_source_unix_misc_senddoc.sh | 6 +++---
3 files changed, 8 insertions(+), 8 deletions(-)
diffs (63 lines):
diff -r dff742191f3d -r 0423efea6f65 misc/libreoffice/Makefile
--- a/misc/libreoffice/Makefile Sat Apr 10 13:07:27 2021 +0000
+++ b/misc/libreoffice/Makefile Sat Apr 10 13:13:47 2021 +0000
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.256 2021/04/09 06:55:01 wiz Exp $
+# $NetBSD: Makefile,v 1.257 2021/04/10 13:13:47 ryoon Exp $
VERREL= 7.1.2
VERRC= 2
VER= ${VERREL}.${VERRC}
DISTNAME= libreoffice-${VER}
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= misc
MASTER_SITES= http://download.documentfoundation.org/libreoffice/src/${VERREL}/
EXTRACT_SUFX= .tar.xz
@@ -209,7 +209,7 @@
CONFIGURE_ARGS+= --with-system-libs
CONFIGURE_ARGS+= --with-system-dicts
CONFIGURE_ARGS+= --with-vendor="pkgsrc"
-CONFIGURE_ARGS+= --with-tls="nss"
+CONFIGURE_ARGS+= --with-tls="openssl"
CONFIGURE_ARGS+= --without-doxygen
CONFIGURE_ARGS+= --without-junit
CONFIGURE_ARGS+= --without-krb5
diff -r dff742191f3d -r 0423efea6f65 misc/libreoffice/distinfo
--- a/misc/libreoffice/distinfo Sat Apr 10 13:07:27 2021 +0000
+++ b/misc/libreoffice/distinfo Sat Apr 10 13:13:47 2021 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.112 2021/04/05 10:17:21 ryoon Exp $
+$NetBSD: distinfo,v 1.113 2021/04/10 13:13:47 ryoon Exp $
SHA1 (libreoffice/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz) = 452eba922e4f41603539c9dc39947d2271e47093
RMD160 (libreoffice/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz) = dbeb7a7f8c89961ca2e544b810345d025561866b
@@ -246,7 +246,7 @@
SHA1 (patch-sal_rtl_cipher.cxx) = e5e46d0b96e25572be86bf26f0053436859736cd
SHA1 (patch-sc_source_core_tool_math.cxx) = f288902962ad5d14dc766d1306d20c3122130cd6
SHA1 (patch-shell_source_unix_exec_shellexec.cxx) = 823069dbc63274f965f8a76b2e542a96329642f3
-SHA1 (patch-shell_source_unix_misc_senddoc.sh) = 5df842020a7021543f86e263e3ce2ce93af81b62
+SHA1 (patch-shell_source_unix_misc_senddoc.sh) = bd9916bf87a9db8098b432b792a72a23eb748efb
SHA1 (patch-slideshow_source_engine_box2dtools.cxx) = b59a872552754af29ce6208fd9dd3e25633c9fba
SHA1 (patch-solenv_gbuild_platform_NETBSD_AARCH64_GCC.mk) = eda8dbd0e9394b2dde2f98c0df39e7e9888f49dc
SHA1 (patch-store_source_storbase.hxx) = 69c58db3984f22de45c7e32fdfd4f7c28340adf1
diff -r dff742191f3d -r 0423efea6f65 misc/libreoffice/patches/patch-shell_source_unix_misc_senddoc.sh
--- a/misc/libreoffice/patches/patch-shell_source_unix_misc_senddoc.sh Sat Apr 10 13:07:27 2021 +0000
+++ b/misc/libreoffice/patches/patch-shell_source_unix_misc_senddoc.sh Sat Apr 10 13:13:47 2021 +0000
@@ -1,4 +1,4 @@
-$NetBSD: patch-shell_source_unix_misc_senddoc.sh,v 1.1 2021/04/05 10:17:21 ryoon Exp $
+$NetBSD: patch-shell_source_unix_misc_senddoc.sh,v 1.2 2021/04/10 13:13:47 ryoon Exp $
* Fix xdg-open path. PR pkg/56092
https://bugs.documentfoundation.org/show_bug.cgi?id=108591
@@ -9,8 +9,8 @@
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)"
++ elif command -v xdg-open >/dev/null 2>&1 ; then
++ MAILER="$(command -v xdg-open)"
else
echo "Unsupported mail client: $(basename $MAILER | sed 's/-.*^//')"
exit 2
Home |
Main Index |
Thread Index |
Old Index