diff options
Diffstat (limited to 'packages/opensync')
-rw-r--r-- | packages/opensync/libsyncml_0.4.0.bb | 34 | ||||
-rw-r--r-- | packages/opensync/wbxml2_0.9.0.bb | 24 |
2 files changed, 58 insertions, 0 deletions
diff --git a/packages/opensync/libsyncml_0.4.0.bb b/packages/opensync/libsyncml_0.4.0.bb new file mode 100644 index 0000000000..19bc91c382 --- /dev/null +++ b/packages/opensync/libsyncml_0.4.0.bb @@ -0,0 +1,34 @@ +DESCRIPTION = "Libsyncml is a implementation of the SyncML protocol." +HOMEPAGE = "http://libsyncml.opensync.org/" +LICENSE = "LGPL" + +DEPENDS = "sed-native wbxml2 libsoup libxml2 bluez-libs openobex" + +SRC_URI = "http://ewi546.ewi.utwente.nl/OE/source/${P}.tar.gz" + +inherit autotools pkgconfig + +EXTRA_OECONF = " --enable-http \ + --enable-obex \ + --enable-bluetooth \ + --enable-tools \ + --with-wbxml" + +CFLAGS += "-I${STAGING_INCDIR}/libsoup-2.2" + +do_configure_append() { + sed -i s:-I/usr/include/:-I/foo/:g Makefile + sed -i s:-I/usr/include/:-I/foo/:g */Makefile + sed -i s:-I/usr/include/:-I/foo/:g */*/Makefile +} + + +PACKAGES += "${PN}-tools" + +FILES_${PN}-tools = "${bindir}" +FILES_${PN} = "${libdir}/*.so.*" + + + + + diff --git a/packages/opensync/wbxml2_0.9.0.bb b/packages/opensync/wbxml2_0.9.0.bb new file mode 100644 index 0000000000..3f45b35711 --- /dev/null +++ b/packages/opensync/wbxml2_0.9.0.bb @@ -0,0 +1,24 @@ +DESCRIPTION = "parser for wbxml" +LICENSE = "GPLv2" + +DEPENDS = "libxml2 sed-native" + +SRC_URI = "${SOURCEFORGE_MIRROR}/wbxmllib/${P}-src.tar.gz" + +inherit autotools pkgconfig + +do_configure_append() { + sed -i s:-I/usr/include::g Makefile + sed -i s:-I/usr/include::g */Makefile +} + +do_stage() { + autotools_stage_all +} + +PACKAGES += "${PN}-tools" + +FILES_${PN}-tools = "${bindir}" +FILES_${PN} = "${libdir}/*.so.*" + + |