diff options
author | Ricardo Salveti <ricardo.salveti@openbossa.org> | 2008-07-02 17:03:09 -0300 |
---|---|---|
committer | Rodrigo Vivi <rodrigo.vivi@openbossa.org> | 2008-10-23 17:47:18 -0300 |
commit | 442a93be0f4338181553d51ef4a6751e8d379d63 (patch) | |
tree | 134c874c0dbd560277c0984fe555afc2468dc94a /packages | |
parent | eebb01309431e69d7f26d62a14aa6fc37477aab6 (diff) |
Adding RPROVIDES at mamona-input-methods.
With this we can just put the libraries at RDEPENDS of any
package.
Diffstat (limited to 'packages')
-rw-r--r-- | packages/mamona/mamona-input-methods_git.bb | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/packages/mamona/mamona-input-methods_git.bb b/packages/mamona/mamona-input-methods_git.bb index a051eeebf9..b5df42520a 100644 --- a/packages/mamona/mamona-input-methods_git.bb +++ b/packages/mamona/mamona-input-methods_git.bb @@ -6,7 +6,7 @@ HOMEPAGE = "http://dev.openbossa.org/trac/mamona/wiki" LICENSE = "GPL" SECTION = "x11" DEPENDS = "ecore" -PR = "r0" +PR = "r1" PV = "0.1+git" @@ -16,27 +16,30 @@ SRC_URI = "git://dev.openbossa.org/mamona/mamona_input_methods.git;protocol=http S = "${WORKDIR}/git" +# Mamona IM +RPROVIDES_${PN} = "libmamona-im" + +# Ecore PACKAGES += "\ - ${PN}-im-ecore \ - ${PN}-im-ecore-dev \ - ${PN}-im-ecore-dbg \ + ${PN}-ecore \ + ${PN}-ecore-dev \ + ${PN}-ecore-dbg \ " - -FILES_${PN}-im-ecore = "\ +RPROVIDES_${PN}-ecore = "libmamona-im-ecore" +EXTRA_OECONF = "\ + --enable-ecore-im \ + " +FILES_${PN}-ecore = "\ ${libdir}/ecore/immodules/mamona-im-ecore-module.so \ " -FILES_${PN}-im-ecore-dev = "\ +FILES_${PN}-ecore-dev = "\ ${libdir}/ecore/immodules/mamona-im-ecore-module.la \ ${libdir}/ecore/immodules/mamona-im-ecore-module.a \ " -FILES_${PN}-im-ecore-dbg = "\ +FILES_${PN}-ecore-dbg = "\ ${libdir}/ecore/immodules/.debug \ " -EXTRA_OECONF = "\ - --enable-ecore-im \ - " - do_configure_prepend() { ./autogen.sh } |