mirror of
https://git.yoctoproject.org/poky
synced 2026-09-15 15:49:32 +02:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
80908c9f83
commit
1256507769
19
meta/recipes-devtools/devel-config/anjuta-remote-run.bb
Normal file
19
meta/recipes-devtools/devel-config/anjuta-remote-run.bb
Normal file
@@ -0,0 +1,19 @@
|
||||
SUMMARY = "Provides on-device script for interaction with the Anjuta IDE"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
|
||||
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
||||
|
||||
SRC_URI = "file://anjuta-remote-run"
|
||||
|
||||
S = "${WORKDIR}"
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${bindir}
|
||||
install -m 0755 anjuta-remote-run ${D}${bindir}/
|
||||
}
|
||||
|
||||
PACKAGES = "${PN}"
|
||||
RDEPENDS_${PN} = "dbus rsync"
|
||||
|
||||
inherit allarch
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /etc/profile
|
||||
export DISPLAY=:0
|
||||
dbus-launch $@
|
||||
|
||||
|
||||
Reference in New Issue
Block a user