From 6ed009126f0c3c07ab878be4230f92bdd54e2ede Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Tue, 8 Dec 2015 01:25:27 +0100 Subject: [PATCH] libreoffice-native: build and install native gengal MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- .../libreoffice/libreoffice-native.bb | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/recipes-libreoffice/libreoffice/libreoffice-native.bb b/recipes-libreoffice/libreoffice/libreoffice-native.bb index 908af52..6c9b739 100644 --- a/recipes-libreoffice/libreoffice/libreoffice-native.bb +++ b/recipes-libreoffice/libreoffice/libreoffice-native.bb @@ -7,6 +7,8 @@ DEPENDS += " \ boost-native \ icu-native \ expat-native \ + lcms-native \ + nss-native \ " SRC_URI += " \ @@ -23,11 +25,14 @@ EXTRA_OECONF += " \ --without-x \ --with-system-curl \ --with-system-boost \ + --with-system-icu \ + --with-system-expat \ + --with-system-lcms2 \ + --with-system-nss \ + \ --without-boost-date-time \ --without-boost-iostreams \ --without-boost-system \ - --with-system-icu \ - --with-system-expat \ --disable-postgresql-sdbc \ --disable-lotuswordpro \ --disable-firebird-sdbc \ @@ -60,6 +65,7 @@ LDFLAGS += "-g" do_compile() { # inspired by ${B}/Makefile BUILDDIR=${B} oe_runmake -f ${S}/Makefile.gbuild build-tools + BUILDDIR=${B} oe_runmake Executable_gengal } do_install() { @@ -84,4 +90,7 @@ do_install() { cp -rf ${B}/workdir/Rdb/saxparser.rdb ${D}/${libdir} # fix library path - otherwise cross lib is pulled for native saxparse sed -i 's:LO_LIB_DIR:URE_INTERNAL_LIB_DIR:g' ${D}/${libdir}/saxparser.rdb + + # gengal + install ${S}/svx/source/gengal/gengal.sh ${D}/${bindir}/gengal }