1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-30 00:20:08 +00:00

Check in opensync/libsync/synctool bits - Mostly compiles, not tested

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1113 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Chris Lord
2007-01-03 20:55:29 +00:00
parent a34d402b9e
commit 4ffe8f6b1f
23 changed files with 541 additions and 0 deletions
@@ -0,0 +1,3 @@
require libopensync-plugin.inc
@@ -0,0 +1,9 @@
SRC_URI = "svn://svn.opensync.org/plugins/syncml-client/plugin/tags;module=release-0.1;proto=http"
S = "${WORKDIR}/release-0.1"
PV = "0.1"
require libopensync-plugin.inc
DEPENDS += " syncml-client"
@@ -0,0 +1,16 @@
SRC_URI = "svn://svn.opensync.org/plugins;module=syncml;proto=http"
S = "${WORKDIR}/syncml"
require libopensync-plugin.inc
DEPENDS += " libsyncml"
do_install() {
install -d ${D}${datadir}/opensync/defaults
install -d ${D}${libdir}/opensync/plugins
install -m 644 src/syncml-http-server ${D}${datadir}/opensync/defaults
install -m 644 src/syncml-obex-client ${D}${datadir}/opensync/defaults
install -m 755 src/.libs/${PLUGIN_SONAME} ${D}${libdir}/opensync/plugins/
}
@@ -0,0 +1,24 @@
PV ?= "0.20+svn${SRCDATE}"
PLUGIN_NAME ?= "${@bb.data.getVar('PN', d, 1).replace('libopensync-plugin-','')}"
PLUGIN_SONAME ?= "${@bb.data.getVar('PLUGIN_NAME', d, 1).replace('-','_')}.so"
SRC_URI ?= "svn://svn.opensync.org/plugins;module=${PLUGIN_NAME};proto=http"
S ?= "${WORKDIR}/${PLUGIN_NAME}"
LICENSE ?= "LGPL"
DEPENDS += " libopensync"
RRECOMMENDS += " msynctool"
HOMEPAGE ?= "http://www.opensync.org/"
inherit autotools pkgconfig
FILES_${PN} += "${datadir} ${libdir}/opensync/plugins/*.so"
FILES_${PN}-dbg += "${libdir}/opensync/plugins/.debug"
do_install() {
install -d ${D}${datadir}/opensync/defaults
install -d ${D}${libdir}/opensync/plugins
install -m 644 src/${PLUGIN_NAME} ${D}${datadir}/opensync/defaults
install -m 755 src/.libs/${PLUGIN_SONAME} ${D}${libdir}/opensync/plugins/
}
+18
View File
@@ -0,0 +1,18 @@
LICENSE = "LGPL"
HOMEPAGE = "http://www.opensync.org/"
DEPENDS = "sqlite3 libxml2 zlib glib-2.0"
PV = "0.20+svn${SRCDATE}"
SRC_URI = "svn://svn.opensync.org;module=trunk;proto=http"
inherit autotools pkgconfig lib_package
S = "${WORKDIR}/trunk"
EXTRA_OECONF = "--disable-python"
LEAD_SONAME = "libopensync.so"
FILES_${PN} += " ${libdir}/opensync/formats/*.so"
do_stage() {
autotools_stage_all
}
+35
View File
@@ -0,0 +1,35 @@
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"
PV = "0.4.2+svn${SRCDATE}"
SRC_URI = "svn://svn.opensync.org/libsyncml;module=trunk;proto=http"
S = "${WORKDIR}/trunk"
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
}
do_stage() {
autotools_stage_all
}
PACKAGES += "${PN}-tools"
FILES_${PN}-tools = "${bindir}"
FILES_${PN} = "${libdir}/*.so.*"
+10
View File
@@ -0,0 +1,10 @@
PV = "0.20+svn${SRCDATE}"
SRC_URI = "svn://svn.opensync.org/multisync;module=trunk;proto=http"
S = "${WORKDIR}/trunk"
LICENSE = "GPL"
DEPENDS = "libopensync"
HOMEPAGE = "http://www.opensync.org/"
inherit autotools pkgconfig
@@ -0,0 +1,8 @@
SRC_URI = "http://hem.bredband.net/miko22/${P}.tar.gz"
LICENSE = "GPL"
DEPENDS = "gtk+ curl gconf"
HOMEPAGE = "http://hem.bredband.net/miko22/"
DESCRIPTION = "Linux port of the Funambol C++ SyncML client connector."
inherit autotools pkgconfig