mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-25 10:03:03 +01:00
office/LibreOffice: Updated for version 5.1.2.2
Signed-off-by: Christoph Willing <chris.willing@iinet.net.au>
This commit is contained in:
parent
f652af29bc
commit
af44f12df3
3 changed files with 10 additions and 19 deletions
|
@ -1,11 +0,0 @@
|
|||
--- xmloff/source/draw/ximp3dscene.cxx.orig 2016-03-01 09:20:43.000000000 +1000
|
||||
+++ xmloff/source/draw/ximp3dscene.cxx 2016-03-15 23:28:54.841653352 +1000
|
||||
@@ -66,7 +66,7 @@
|
||||
{
|
||||
::basegfx::B3DVector aVal;
|
||||
SvXMLUnitConverter::convertB3DVector(aVal, sValue);
|
||||
- if (!isnan(aVal.getX()) && !isnan(aVal.getY()) && !isnan(aVal.getZ()))
|
||||
+ if (!std::isnan(aVal.getX()) && !std::isnan(aVal.getY()) && !std::isnan(aVal.getZ()))
|
||||
{
|
||||
maDirection = aVal;
|
||||
}
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
PRGNAM=LibreOffice
|
||||
SRCNAM=libreoffice
|
||||
VERSION=${VERSION:-5.1.1.3}
|
||||
VERSION=${VERSION:-5.1.2.2}
|
||||
SHORT_VERSION=${VERSION%.*.*}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
@ -74,8 +74,6 @@ if [ "$HAVE_SRCS_TARBALL" = "1" ]; then
|
|||
tar xvf $CWD/$SRCNAM-${VERSION}-srcs.tar.xz
|
||||
fi
|
||||
|
||||
patch -p0 < $CWD/010_isnan.diff
|
||||
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
|
@ -154,7 +152,11 @@ if [ "$HAVE_SRCS_TARBALL" = "0" ]; then
|
|||
fi
|
||||
|
||||
export LDFLAGS="-lboost_system"
|
||||
make build
|
||||
if [ "$ARCH" = "x86_64" ]; then
|
||||
make build
|
||||
else
|
||||
make build-nocheck
|
||||
fi
|
||||
make distro-pack-install DESTDIR=$PKG
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="LibreOffice"
|
||||
VERSION="5.1.1.3"
|
||||
VERSION="5.1.2.2"
|
||||
HOMEPAGE="http://libreoffice.org"
|
||||
DOWNLOAD="http://download.documentfoundation.org/libreoffice/src/5.1.1/libreoffice-5.1.1.3.tar.xz \
|
||||
http://sourceforge.net/projects/slackbuildsdirectlinks/files/LibreOffice/libreoffice-5.1.1.3-srcs.tar.xz"
|
||||
DOWNLOAD="http://download.documentfoundation.org/libreoffice/src/5.1.2/libreoffice-5.1.2.2.tar.xz \
|
||||
http://sourceforge.net/projects/slackbuildsdirectlinks/files/LibreOffice/libreoffice-5.1.2.2-srcs.tar.xz"
|
||||
MD5SUM="5354a6172015603ba057a2fbbfc9977e \
|
||||
d3724659ac71032eaf4c0e07cca6cbd5"
|
||||
b143c1bef23d213090b3272442de6c99"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="avahi python3 apache-ant perl-Archive-Zip"
|
||||
|
|
Loading…
Reference in a new issue