diff options
author | Koen Kooi <koen@openembedded.org> | 2010-02-24 17:08:53 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-02-24 17:08:53 +0100 |
commit | d7c7cda4a200a9d23d9a522871e387142e3ba4db (patch) | |
tree | d509c2c9b990cc7b2b8992fc19d4b103f6a815aa | |
parent | df85cf92688b654930ec0105d6327494b9ac2d6f (diff) |
e17: add some modules: cpu, forecasts, uptime and screenshot (+ emprint dep)
-rw-r--r-- | recipes/e17/cpu_svn.bb | 8 | ||||
-rw-r--r-- | recipes/e17/emprint_svn.bb | 12 | ||||
-rw-r--r-- | recipes/e17/forecasts_svn.bb | 8 | ||||
-rw-r--r-- | recipes/e17/screenshot_svn.bb | 13 | ||||
-rw-r--r-- | recipes/e17/uptime_svn.bb | 8 |
5 files changed, 49 insertions, 0 deletions
diff --git a/recipes/e17/cpu_svn.bb b/recipes/e17/cpu_svn.bb new file mode 100644 index 0000000000..3c0a8c7e71 --- /dev/null +++ b/recipes/e17/cpu_svn.bb @@ -0,0 +1,8 @@ +LICENSE = "MIT" +PV = "0.0.1+svnr${SRCREV}" + +require e-module.inc + + + + diff --git a/recipes/e17/emprint_svn.bb b/recipes/e17/emprint_svn.bb new file mode 100644 index 0000000000..7f63083400 --- /dev/null +++ b/recipes/e17/emprint_svn.bb @@ -0,0 +1,12 @@ +DESCRIPTION = "Emprint is a utility for taking screenshots of the entire screen, a specific window, or a specific region." +LICENSE = "MIT BSD" +DEPENDS = "imlib2 virtual/libx11 ecore evas edje eina" +PV = "0.0.1+svnr${SRCPV}" + +inherit e + +SRCREV = "${EFL_SRCREV}" +SRC_URI = "svn://svn.enlightenment.org/svn/e/trunk/;module=emprint;proto=http" +S = "${WORKDIR}/emprint" + +FILES_${PN}-dbg += "${libdir}/${PN}/modules/.debug" diff --git a/recipes/e17/forecasts_svn.bb b/recipes/e17/forecasts_svn.bb new file mode 100644 index 0000000000..676945e91f --- /dev/null +++ b/recipes/e17/forecasts_svn.bb @@ -0,0 +1,8 @@ +LICENSE = "MIT" +PV = "0.2.0+svnr${SRCREV}" + +require e-module.inc + + + + diff --git a/recipes/e17/screenshot_svn.bb b/recipes/e17/screenshot_svn.bb new file mode 100644 index 0000000000..dc8acc3f6f --- /dev/null +++ b/recipes/e17/screenshot_svn.bb @@ -0,0 +1,13 @@ +LICENSE = "MIT" +PV = "0.3.0+svnr${SRCREV}" + +require e-module.inc + +DEPENDS += "emprint" +RDEPENDS_${PN} += "emprint" + +do_configure_prepend() { + sed -i -e 's:AC_MSG_ERROR(emprint not found):echo foo:g' ${S}/configure.ac +} + + diff --git a/recipes/e17/uptime_svn.bb b/recipes/e17/uptime_svn.bb new file mode 100644 index 0000000000..42c0d72936 --- /dev/null +++ b/recipes/e17/uptime_svn.bb @@ -0,0 +1,8 @@ +LICENSE = "MIT" +PV = "0.0.2+svnr${SRCREV}" + +require e-module.inc + + + + |