diff options
| author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2012-09-03 14:45:38 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-04 12:53:07 +0100 |
| commit | 125650776991e40168dcab1dca372cc3ebe1d490 (patch) | |
| tree | e73e3941f4550833004d18e62bb7fe8a5065f387 /meta/recipes-devtools/devel-config | |
| parent | 80908c9f83660c10e39bd5ffb48bb6e417d14006 (diff) | |
| download | poky-125650776991e40168dcab1dca372cc3ebe1d490.tar.gz | |
qemu-config: split out anjuta-remote-run
Given that support for Anjuta is unlikely to be needed by everyone and
is by no means specific to qemu, split it out to a separate recipe. The
following changes were made in the process:
Also depend on dbus instead of dbus-x11 since dbus-launch is now back in
he main dbus package
Part of the fix for [YOCTO #1690].
(From OE-Core rev: e6755e3351ccf1116c06b9608728630505908ce4)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/devel-config')
| -rw-r--r-- | meta/recipes-devtools/devel-config/anjuta-remote-run.bb | 19 | ||||
| -rw-r--r-- | meta/recipes-devtools/devel-config/anjuta-remote-run/anjuta-remote-run | 7 |
2 files changed, 26 insertions, 0 deletions
diff --git a/meta/recipes-devtools/devel-config/anjuta-remote-run.bb b/meta/recipes-devtools/devel-config/anjuta-remote-run.bb new file mode 100644 index 0000000000..51fdf9ecac --- /dev/null +++ b/meta/recipes-devtools/devel-config/anjuta-remote-run.bb | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | SUMMARY = "Provides on-device script for interaction with the Anjuta IDE" | ||
| 2 | LICENSE = "MIT" | ||
| 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ | ||
| 4 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | ||
| 5 | |||
| 6 | SRC_URI = "file://anjuta-remote-run" | ||
| 7 | |||
| 8 | S = "${WORKDIR}" | ||
| 9 | |||
| 10 | do_install() { | ||
| 11 | install -d ${D}${bindir} | ||
| 12 | install -m 0755 anjuta-remote-run ${D}${bindir}/ | ||
| 13 | } | ||
| 14 | |||
| 15 | PACKAGES = "${PN}" | ||
| 16 | RDEPENDS_${PN} = "dbus rsync" | ||
| 17 | |||
| 18 | inherit allarch | ||
| 19 | |||
diff --git a/meta/recipes-devtools/devel-config/anjuta-remote-run/anjuta-remote-run b/meta/recipes-devtools/devel-config/anjuta-remote-run/anjuta-remote-run new file mode 100644 index 0000000000..620e3a705b --- /dev/null +++ b/meta/recipes-devtools/devel-config/anjuta-remote-run/anjuta-remote-run | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | . /etc/profile | ||
| 4 | export DISPLAY=:0 | ||
| 5 | dbus-launch $@ | ||
| 6 | |||
| 7 | |||
