diff options
author | Ricardo Salveti <ricardo.salveti@openbossa.org> | 2008-07-15 13:54:43 -0300 |
---|---|---|
committer | Rodrigo Vivi <rodrigo.vivi@openbossa.org> | 2008-10-23 17:53:39 -0300 |
commit | f51c481ac0cf0c7585d5be2bde44e1b9c11d1721 (patch) | |
tree | 19187b9cdca18e21a971451e1230679236789f3e | |
parent | 94e3d8f9b93ecb20eceaf9c0255526c785228085 (diff) |
Moving mamona-input-method applet to another recipe.
Now that the main code from the applet is located at another git
repository, created another recipe just for it.
-rw-r--r-- | conf/distro/include/sane-srcrevs.inc | 3 | ||||
-rw-r--r-- | packages/mamona/mamona-input-methods_git.bb | 27 | ||||
-rw-r--r-- | packages/mamona/mamonaim-e-applet.bb | 36 |
3 files changed, 39 insertions, 27 deletions
diff --git a/conf/distro/include/sane-srcrevs.inc b/conf/distro/include/sane-srcrevs.inc index bf12ce835e..98da2835c4 100644 --- a/conf/distro/include/sane-srcrevs.inc +++ b/conf/distro/include/sane-srcrevs.inc @@ -86,7 +86,8 @@ SRCREV_pn-linux-openmoko-devel ?= "04f54c7001fb609e11ff4b2b4575c04188dbefef" SRCREV_pn-llvm-gcc4 ?= "374" SRCREV_pn-llvm-gcc4-cross ?= "374" SRCREV_pn-maemo-mapper ?= "118" -SRCREV_pn-mamona_input_methods ?= "05ee9bdc423bfceb7702d3b22cda0cb86d5ac383" +SRCREV_pn-mamonaim_e_applet ?= "51c747849f71981bd1dc9eb1807df4993ad97d04" +SRCREV_pn-mamona_input_methods ?= "7e6a8cc947689a045d0fba90015da599275347d9" SRCREV_pn-matchbox-desktop-2 ?= "1778" SRCREV_pn-matchbox-keyboard ?= "1910" SRCREV_pn-matchbox-keyboard-inputmethod ?= "1910" diff --git a/packages/mamona/mamona-input-methods_git.bb b/packages/mamona/mamona-input-methods_git.bb index 25b7c92738..bbc9373cb7 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 = "libs/inputmethods" DEPENDS = "ecore" -PR = "r2" +PR = "r3" PV = "0.1+git" @@ -40,31 +40,6 @@ FILES_${PN}-ecore-dbg = "\ ${libdir}/ecore/immodules/.debug \ " -# E Applet -PACKAGES += "\ - ${PN}-e-applet \ - ${PN}-e-applet-dev \ - ${PN}-e-applet-dbg \ - " -RPROVIDES_${PN}-e-appet = "libmamona-im-e-applet" -EXTRA_OECONF += "\ - --enable-e-applet \ - " -FILES_${PN}-e-applet = "\ - ${libdir}/enlightenment/modules/mamonaim/module.desktop \ - ${libdir}/enlightenment/modules/mamonaim/mamonaim.edj \ - ${libdir}/enlightenment/modules/mamonaim/e-module-mamonaim.edj \ - ${libdir}/enlightenment/modules/mamonaim/*.png \ - ${libdir}/enlightenment/modules/mamonaim/*/module.so \ - " -FILES_${PN}-e-applet-dev = "\ - ${libdir}/enlightenment/modules/mamonaim/*/module.la \ - ${libdir}/enlightenment/modules/mamonaim/*/module.a \ - " -FILES_${PN}-e-applet-dbg = "\ - ${libdir}/enlightenment/modules/mamonaim/*/.debug \ - " - do_configure_prepend() { ./autogen.sh } diff --git a/packages/mamona/mamonaim-e-applet.bb b/packages/mamona/mamonaim-e-applet.bb new file mode 100644 index 0000000000..6f45a457c4 --- /dev/null +++ b/packages/mamona/mamonaim-e-applet.bb @@ -0,0 +1,36 @@ +# Copyright (C) 2008 Instituto Nokia de Tecnologia +# Released under the MIT license (see COPYING.MIT for the terms) + +DESCRIPTION = "Mamona-IM Enlightenment Applet" +HOMEPAGE = "http://dev.openbossa.org/trac/mamona/wiki" +LICENSE = "MIT BSD" +DEPENDS = "mamona-input-methods e-wm" +PR = "r0" + +PV = "0.1+git" + +inherit autotools pkgconfig + +SRC_URI = "git://dev.openbossa.org/mamona/projects/mamonaim_e_applet.git;protocol=http" + +S = "${WORKDIR}/git" + +# E Applet +FILES_${PN} = "\ + ${libdir}/enlightenment/modules/mamonaim/module.desktop \ + ${libdir}/enlightenment/modules/mamonaim/mamonaim.edj \ + ${libdir}/enlightenment/modules/mamonaim/e-module-mamonaim.edj \ + ${libdir}/enlightenment/modules/mamonaim/*.png \ + ${libdir}/enlightenment/modules/mamonaim/*/module.so \ + " +FILES_${PN}-dev = "\ + ${libdir}/enlightenment/modules/mamonaim/*/module.la \ + ${libdir}/enlightenment/modules/mamonaim/*/module.a \ + " +FILES_${PN}-dbg = "\ + ${libdir}/enlightenment/modules/mamonaim/*/.debug \ + " + +do_configure_prepend() { + ./autogen.sh +} |