summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2019-05-23 15:01:02 +0000
committer Eric Hameleers <alien@slackware.com>2019-05-23 15:01:02 +0000
commit636a961e4d3987a5fb830194d21641fd98588537 (patch)
treea6f1b7298d67613b9db7f2286e3f00516d67cfe4
parent98085a1482d15f1cd04c2660fefdbeeb135e6444 (diff)
downloadasb-636a961e4d3987a5fb830194d21641fd98588537.tar.gz
asb-636a961e4d3987a5fb830194d21641fd98588537.tar.xz
libreoffice: update to 6.2.4.2 and re-add source to gensrc.sh which went missing
-rwxr-xr-xlibreoffice/build/gensrc.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/libreoffice/build/gensrc.sh b/libreoffice/build/gensrc.sh
index 2e89053c..023a00b1 100755
--- a/libreoffice/build/gensrc.sh
+++ b/libreoffice/build/gensrc.sh
@@ -1,7 +1,7 @@
#!/bin/bash
PRGNAM=libreoffice
-VERSION=6.2.3
+VERSION=6.2.4
SUBVER=.2
STARTINDEX=6
@@ -22,6 +22,7 @@ wget --no-check-certificate -q -O - "http://cgit.freedesktop.org/libreoffice/cor
# Get the names of the tarballs we need:
eval $( wget --no-check-certificate -q -O - "http://cgit.freedesktop.org/libreoffice/core/plain/configure.ac?id=$(echo $PRGNAM-$VERSION$SUBVER)" | grep UNOWINREG_DLL= )
+eval $( wget --no-check-certificate -q -O - "http://cgit.freedesktop.org/libreoffice/core/plain/configure.ac?id=$(echo $PRGNAM-$VERSION$SUBVER)" | grep OPENSYMBOL_TTF= )
echo "all:" >> $TMP_DLLST
cat $TMP_DLLST | grep -v " *#" | grep -w export | grep -E '(_TARBALL|_JAR)' | cut -f2 -d' ' | cut -f1 -d= | sed -e 's/.*/\t&=$(&)'/ >> $TMP_DLLST
eval $(make HAVE_JAVA6=TRUE -f $TMP_DLLST)
@@ -31,7 +32,7 @@ find_url() {
cat $TMP_FETCH | sed -n "/$1/,/fetch_Download_item/s/^.*fetch_Download_item[^,]*,\([^,]*\),.*$/\1/p"
}
-for BALL in UNOWINREG_DLL $( cat $TMP_DLLST | grep -v " *#" | grep -w export | grep -E '(_TARBALL|_JAR)' | cut -f2 -d' ' | cut -f1 -d= ); do
+for BALL in UNOWINREG_DLL OPENSYMBOL_TTF $( cat $TMP_DLLST | grep -v " *#" | grep -w export | grep -E '(_TARBALL|_JAR)' | cut -f2 -d' ' | cut -f1 -d= ); do
SRCURL=$(find_url $BALL)
FILE=$(eval "echo \$$BALL")