mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-07 17:19:23 +00:00
evolution-data-server: upgrade 3.26.6 -> 3.34.1 and rework
* a native variant had to be introduced for code-generator tools * gobject-introspection builds theoretically :) Unfortunataelly qemu runs with 100% CPU load and never returns -> disable introspection for now * add PACKAGECONFIGs for new dependencies - disabled by default * give up fine grained packaging: It was broken over the years completely and nobody seemed to take care. * ICU-patch does not apply anymore and it seems upstream has fixed issues with ICU * add upstream-version-is-even to inherit * rename folder containing recipe * get rid of gconf dependency Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
require ${BPN}.inc
|
||||
|
||||
inherit native
|
||||
|
||||
DEPENDS = "glib-2.0-native"
|
||||
|
||||
# build native helpers
|
||||
do_compile() {
|
||||
cd ${S}/src/camel
|
||||
sed -i 's:#include "evolution-data-server-config.h"::g' camel-gen-tables.c
|
||||
${CC} -o ${B}/camel-gen-tables camel-gen-tables.c ${CFLAGS} ${LDFLAGS}
|
||||
|
||||
LDFLAGS_glib=`pkg-config glib-2.0 --libs`
|
||||
CFLAGS_glib=`pkg-config glib-2.0 --cflags`
|
||||
cd ${S}/src/addressbook/libebook-contacts
|
||||
sed -i 's:#include "evolution-data-server-config.h"::g' gen-western-table.c
|
||||
${CC} -o ${B}/gen-western-table gen-western-table.c ${CFLAGS} ${CFLAGS_glib} ${LDFLAGS} ${LDFLAGS_glib}
|
||||
}
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${bindir}
|
||||
install -m 755 ${B}/* ${D}${bindir}
|
||||
}
|
||||
Reference in New Issue
Block a user