opensync stuff: switched to SRCREV

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2463 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Marcin Juszkiewicz
2007-08-09 13:03:24 +00:00
parent dc5ff1440c
commit 895e719c85
4 changed files with 177 additions and 93 deletions

View File

@@ -1,14 +1,13 @@
PV = "0.22+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/"
PV = "0.22+svnr${SRCREV}"
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}"
inherit autotools pkgconfig
@@ -21,4 +20,3 @@ do_install() {
install -m 644 src/${PLUGIN_NAME} ${D}${datadir}/opensync/defaults
install -m 755 src/.libs/${PLUGIN_SONAME} ${D}${libdir}/opensync/plugins/
}