Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/misc/libreoffice fix shell portability



details:   https://anonhg.NetBSD.org/pkgsrc/rev/1dd3214339a7
branches:  trunk
changeset: 432245:1dd3214339a7
user:      tnn <tnn%pkgsrc.org@localhost>
date:      Tue May 19 22:03:25 2020 +0000

description:
fix shell portability

diffstat:

 misc/libreoffice/distinfo                                                                  |   3 +-
 misc/libreoffice/patches/patch-instsetoo__native_inc__openoffice_unix_find-requires-x11.sh |  17 ++++++++++
 2 files changed, 19 insertions(+), 1 deletions(-)

diffs (38 lines):

diff -r 1efd46e89499 -r 1dd3214339a7 misc/libreoffice/distinfo
--- a/misc/libreoffice/distinfo Tue May 19 21:59:03 2020 +0000
+++ b/misc/libreoffice/distinfo Tue May 19 22:03:25 2020 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.98 2020/04/20 13:00:48 joerg Exp $
+$NetBSD: distinfo,v 1.99 2020/05/19 22:03:25 tnn Exp $
 
 SHA1 (libreoffice/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz) = 452eba922e4f41603539c9dc39947d2271e47093
 RMD160 (libreoffice/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz) = dbeb7a7f8c89961ca2e544b810345d025561866b
@@ -233,6 +233,7 @@
 SHA1 (patch-external_pdfium_pkgsrc2.patch.1) = 0a804bcdf8f35cf298c5768954a6e57b2e40fd98
 SHA1 (patch-external_postgresql_ExternalProject__postgresql.mk) = 48e68ff43b971996f81985ee79d71f7b83cce428
 SHA1 (patch-i18nutil_source_utility_unicode.cxx) = 014d48574a379f92f2d0afe3c91d2c2956708dd8
+SHA1 (patch-instsetoo__native_inc__openoffice_unix_find-requires-x11.sh) = e871e2096c367e742dc5758fe60ae819846def29
 SHA1 (patch-sal_osl_unx_system.hxx) = 478dd47dc512d283a554600951010bbaa10c2c0e
 SHA1 (patch-sal_rtl_cipher.cxx) = e5e46d0b96e25572be86bf26f0053436859736cd
 SHA1 (patch-sc_source_core_opencl_formulagroupcl.cxx) = 1a589c8190a28f603671faf1d84cac022425849e
diff -r 1efd46e89499 -r 1dd3214339a7 misc/libreoffice/patches/patch-instsetoo__native_inc__openoffice_unix_find-requires-x11.sh
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/libreoffice/patches/patch-instsetoo__native_inc__openoffice_unix_find-requires-x11.sh        Tue May 19 22:03:25 2020 +0000
@@ -0,0 +1,17 @@
+$NetBSD: patch-instsetoo__native_inc__openoffice_unix_find-requires-x11.sh,v 1.1 2020/05/19 22:03:25 tnn Exp $
+
+Shell compatibility
+
+--- instsetoo_native/inc_openoffice/unix/find-requires-x11.sh.orig     2020-04-07 15:26:49.000000000 +0000
++++ instsetoo_native/inc_openoffice/unix/find-requires-x11.sh
+@@ -18,8 +18,8 @@
+ #
+ 
+ cat > /dev/null
+-[[ "${PLATFORMID}" == "linux_x86_64" ]] && mark64="()(64bit)"
+-if [[ "${OS}" == "AIX" ]]; then
++[ "${PLATFORMID}" = "linux_x86_64" ] && mark64="()(64bit)"
++if [ "${OS}" = "AIX" ]; then
+   echo "libfreetype.a(libfreetype.so.6${mark64})"
+ else
+   echo "libfreetype.so.6${mark64}"



Home | Main Index | Thread Index | Old Index