diff --git a/libreoffice.be0 b/libreoffice.be0 index 639bfe3d9..fd389fc65 100755 --- a/libreoffice.be0 +++ b/libreoffice.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION libreoffice-5.0.2.2_0374db2-2 +# BEE_VERSION libreoffice-5.1.3.2-0 ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.) @@ -9,13 +9,14 @@ ## The source URL(s) define the location of the sources that will be ## downloaded. Version variables may be used to simplify reuse of this bee-file. -SRCURL[0]="" +SRCURL[0]="https://download.documentfoundation.org/libreoffice/src/${PKGVERSION[3]}/libreoffice-${PKGVERSION}.tar.xz" ############################################################################### ## Add URLs/pathes to patch files to the PATCHURL array. ## The sources will be patched in the order of the array. -# PATCHURL+=() +# https://bugs.documentfoundation.org/show_bug.cgi?id=100459 +PATCHURL+=("/src/mariux/download/libreoffice-5.1.3.2-fix-postgresql-configure.patch") ############################################################################### ## Add filename patterns to the EXCLUDE array of files that should not @@ -28,7 +29,7 @@ SRCURL[0]="" ## outside the source directory and need to be build inside the source ## directory. -build_in_sourcedir +# build_in_sourcedir ############################################################################### ## bee cannot detect buildtypes specified in subdirectories. @@ -38,113 +39,68 @@ build_in_sourcedir # sourcesubdir_append src + ############################################################################### ## Change the default (auto-detected) steps to ## extract, patch, configure/setup, build and install the software. ## Make sure the mee_install function does install everything to the ## image directory "${D}" -mee_extract() { - mkdir -p $S - cd $S - git clone /home/buczek/git/libreoffice-core . - git checkout -b tmp $PKGEXTRAVERSION - - cache=/dev/shm/buczek/libreoffice - if test -d $cache/tarballs; then - mkdir external/tarballs - cp $cache/tarballs/* external/tarballs/ - fi - - if test -d $cache/repros/translations; then - cp -r $cache/repros/translations . - fi - - if test -d $cache/repros/helpcontent2; then - cp -r $cache/repros/helpcontent2 . - fi - - - for f in base calc draw impress main math writer; do - if test -e $cache/icons/libreoffice5.0-$f.svg; then - cp $cache/icons/libreoffice5.0-$f.svg . - else - wget https://raw.githubusercontent.com/gnome-design-team/gnome-icons/master/apps-symbolic/Adwaita/scalable/apps/libreoffice-$f-symbolic.svg \ - -O libreoffice5.0-$f.svg - fi - done -} - -#mee_patch() { -# bee_patch "${@}" +#mee_extract() { +# bee_extract "${@}" #} -PREFIX=/usr/local/libreoffice +mee_patch() { + bee_patch "${@}" + sed -e "/gzip -f/s/echo/set -x; echo/" \ + -i bin/distro-install-desktop-integration +} mee_configure() { - - #./autogen.sh \ bee_configure \ - --enable-verbose \ - --enable-release-build \ - --with-help \ - --with-lang=de \ - --with-jdk-home=/usr/local/java \ - --with-ant-home=/package/mariux64/ant \ - --without-junit \ - --without-doxygen \ - --disable-odk \ - --disable-epm \ - --enable-python=internal + --with-lang=de \ + --with-help \ + --with-jdk-home=/usr/local/java \ + --with-ant-home=/package/mariux64/ant \ + --without-doxygen \ + --without-junit \ + --disable-dconf \ + --disable-epm \ + --disable-odk \ + --enable-release-build \ + --enable-python=internal \ + --with-system-apr \ + --with-system-cairo \ + --with-system-curl \ + --with-system-expat \ + --with-system-harfbuzz \ + --with-system-icu \ + --with-system-jpeg \ + --with-system-lcms2 \ + --with-system-libatomic_ops \ + --with-system-libpng \ + --with-system-libxml \ + --with-system-neon \ + --with-system-npapi-headers \ + --with-system-nss \ + --with-system-odbc \ + --with-system-openldap \ + --with-system-openssl \ + --with-system-poppler \ + --with-system-postgresql \ + --with-system-serf \ + --with-system-zlib } mee_build() { - #bee_build - make + # https://bugs.documentfoundation.org/show_bug.cgi?id=100453 + chmod 755 ${S}/bin/unpack-sources + bee_build } mee_install() { - - #make install INSTALLDIR=$D/usr/local/libreoffice - bee_install INSTALLDIR=/usr/local/libreoffice - - rm $D/gid_Module_* - - - mkdir -p ${D}/usr/local/bin - - for p in sbase sdraw simpress soffice scalc smath swriter ; do - echo ${p} - cat > ${D}/usr/local/bin/${p} <<-EOF - #!/bin/bash - exec /usr/local/libreoffice/program/${p} "\$@" - EOF - chmod -v 755 ${D}/usr/local/bin/${p} - done - - for p in openoffice libreoffice{,${PKGVERSION[2]}} ; do - cat > ${D}/usr/local/bin/${p} <<-EOF - #!/bin/bash - exec /usr/local/libreoffice/program/soffice "\$@" - EOF - chmod -v 755 ${D}/usr/local/bin/${p} - done - - mkdir -pv ${D}/usr/share/applications - - for i in ${D}/usr/local/libreoffice/share/xdg/* ; do - b=$(basename ${i}) - ln -sv /usr/local/libreoffice/share/xdg/${b} \ - ${D}/usr/share/applications/libreoffice-${b} - done - - mkdir -pv $D/usr/share/icons/hicolor/scalable/apps/ - for f in base calc draw impress main math writer; do - cp $S/libreoffice5.0-$f.svg $D/usr/share/icons/hicolor/scalable/apps/ - done - ln -s libreoffice5.0-main.svg $D/usr/share/icons/hicolor/scalable/apps/libreoffice5.0-startcenter.svg + start_cmd make ${BEE_MAKEFLAGS} distro-pack-install DESTDIR=${D} } - ## by default this may be 'make install DESTDIR="${D}"' ############################################################################### @@ -154,7 +110,7 @@ mee_install() { ## The name of this bee-file should follow the following naming convention: ## pkgname-pkgversion-pkgrevision.bee ## -## You may remove all comments as long as SRCURL[0]="" is set. +## You may remove all comments as long as SRCURL[0] is set. ## ## Everything in this file will be executed in a bash environment. ##