aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen <ken@gmx.ch>2009-01-21 19:55:47 +0100
committerMichael 'Mickey' Lauer <mickey@vanille-media.de>2009-01-21 19:58:33 +0100
commit57b3f1b6c9ecdc93271f8780f7f1d6f3d2dd2e1a (patch)
tree980c9360ea5f557362eeb462072d6ceb8cea3d51
parent513858c45929f63501af80223582408d05917eee (diff)
downloadopenembedded-57b3f1b6c9ecdc93271f8780f7f1d6f3d2dd2e1a.tar.gz
bootchart-lite: new recipe; bootchart diagnostic tool for embedded systems
-rw-r--r--conf/distro/include/sane-srcrevs.inc1
-rw-r--r--packages/bootchart-lite/bootchart-lite_svn.bb20
2 files changed, 21 insertions, 0 deletions
diff --git a/conf/distro/include/sane-srcrevs.inc b/conf/distro/include/sane-srcrevs.inc
index e5fde3e2c3..35c861f435 100644
--- a/conf/distro/include/sane-srcrevs.inc
+++ b/conf/distro/include/sane-srcrevs.inc
@@ -18,6 +18,7 @@ SRCREV_pn-app-restarter ?= "4552"
SRCREV_pn-assassin ?= "268"
SRCREV_pn-assassin-thumbnail ?= "4690"
SRCREV_pn-bfin-uclibc ?= "1857"
+SRCREV_pn-bootchart-lite ?= "4"
SRCREV_pn-clutter-box2d ?= "3197"
SRCREV_pn-clutter-cairo ?= "3210"
SRCREV_pn-clutter-gst ?= "3188"
diff --git a/packages/bootchart-lite/bootchart-lite_svn.bb b/packages/bootchart-lite/bootchart-lite_svn.bb
new file mode 100644
index 0000000000..092aee9dcd
--- /dev/null
+++ b/packages/bootchart-lite/bootchart-lite_svn.bb
@@ -0,0 +1,20 @@
+DESCRIPTION = "Bootchart Lite for Embedded Systems."
+AUTHOR = "Fred Chien"
+LICENSE = "GPLv2"
+SECTION = "console/utils"
+HOMEPAGE = "http://code.google.com/p/bootchart-lite/"
+PV = "0.1+svnr${SRCREV}"
+PR = "r0"
+
+SRC_URI = "svn://bootchart-lite.googlecode.com/svn/;module=trunk;proto=http"
+S = "${WORKDIR}/trunk"
+
+inherit autotools
+
+pkg_postinst_${PN} () {
+ install -d /etc/bootchart-lite
+}
+
+pkg_postrm_${PN} () {
+ rm -rf /etc/bootchart-lite
+}