Skip to content

Commit

Permalink
Merge pull request #379 from mariux64/update-libreoffice-from-5.0.2.2…
Browse files Browse the repository at this point in the history
…-to-5.3.0.3

[RFT] Update LibreOffice from 5.0.2.2 to 5.3.0.3
  • Loading branch information
donald authored May 15, 2017
2 parents afef40e + 1576368 commit 18ca14e
Show file tree
Hide file tree
Showing 2 changed files with 122 additions and 164 deletions.
164 changes: 0 additions & 164 deletions libreoffice-5.0.2.2_0374db2-2.bee

This file was deleted.

122 changes: 122 additions & 0 deletions libreoffice.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
#!/usr/bin/env beesh

# BEE_VERSION libreoffice-5.3.0.3-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.)

###############################################################################
## 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]="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+=()

###############################################################################
## Add filename patterns to the EXCLUDE array of files that should not
## be added to you package but may be present in the image directory.

# EXCLUDE+=()

###############################################################################
## Uncomment the next statement, if the software may not be able to be build
## outside the source directory and need to be build inside the source
## directory.

# build_in_sourcedir

###############################################################################
## bee cannot detect buildtypes specified in subdirectories.
## Sometimes packages "hide" the real sources in a subdirectory named
## 'src' or 'cmake' or ..
## use 'sourcesubdir_append' to specify this directory if known.

# 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() {
# bee_extract "${@}"
#}

mee_patch() {
bee_patch "${@}"
sed -e "/gzip -f/s/echo/set -x; echo/" \
-i bin/distro-install-desktop-integration
}

mee_configure() {
bee_configure \
--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-nss \
--with-system-odbc \
--with-system-openldap \
--with-system-openssl \
--with-system-poppler \
--with-system-postgresql \
--with-system-serf \
--with-system-zlib
sed -i 's/all: check-if-root build/all: build/g' ${B}/Makefile
sed -i 's/bootstrap: check-if-root compilerplugins/all: compilerplugins/g' ${B}/Makefile
}

mee_build() {
# https://bugs.documentfoundation.org/show_bug.cgi?id=100453
chmod 755 ${S}/bin/unpack-sources
bee_build
}

mee_install() {
start_cmd make ${BEE_MAKEFLAGS} distro-pack-install DESTDIR=${D}
}
## by default this may be 'make install DESTDIR="${D}"'

###############################################################################
##
## Additional hints:
##
## 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.
##
## Everything in this file will be executed in a bash environment.
##
## Build the package by executing
## './pkg-version-N.bee' or
## 'beesh ./pkg-version-N.bee'
##
## see http://beezinga.org/
##

0 comments on commit 18ca14e

Please sign in to comment.