diff options
Diffstat (limited to 'meta/packages')
-rw-r--r-- | meta/packages/oh/qemu-config.bb | 8 | ||||
-rw-r--r-- | meta/packages/oh/qemu-config/anjuta-remote-run | 7 |
2 files changed, 13 insertions, 2 deletions
diff --git a/meta/packages/oh/qemu-config.bb b/meta/packages/oh/qemu-config.bb index 381d3bb671..299aea2a76 100644 --- a/meta/packages/oh/qemu-config.bb +++ b/meta/packages/oh/qemu-config.bb | |||
@@ -1,9 +1,10 @@ | |||
1 | DESCRIPTION = "Adds scripts to use distcc on the host system under qemu" | 1 | DESCRIPTION = "Adds scripts to use distcc on the host system under qemu" |
2 | LICENSE = "GPL" | 2 | LICENSE = "GPL" |
3 | RDEPENDS = "distcc task-poky-nfs-server fakeroot" | 3 | RDEPENDS = "distcc task-poky-nfs-server fakeroot" |
4 | PR = "r4" | 4 | PR = "r5" |
5 | 5 | ||
6 | SRC_URI = "file://distcc.sh \ | 6 | SRC_URI = "file://distcc.sh \ |
7 | file://anjuta-remote-run \ | ||
7 | file://exports" | 8 | file://exports" |
8 | 9 | ||
9 | S = "${WORKDIR}" | 10 | S = "${WORKDIR}" |
@@ -15,5 +16,8 @@ do_install() { | |||
15 | install -d ${D}${sysconfdir}/profile.d | 16 | install -d ${D}${sysconfdir}/profile.d |
16 | 17 | ||
17 | install -m 0755 distcc.sh ${D}${sysconfdir}/profile.d/ | 18 | install -m 0755 distcc.sh ${D}${sysconfdir}/profile.d/ |
18 | install -m 0644 exports ${D}${sysconfdir} | 19 | install -m 0644 exports ${D}${sysconfdir}/ |
20 | |||
21 | install -d ${D}${bindir} | ||
22 | install -m 0755 anjuta-remote-run ${D}${bindir}/ | ||
19 | } | 23 | } |
diff --git a/meta/packages/oh/qemu-config/anjuta-remote-run b/meta/packages/oh/qemu-config/anjuta-remote-run new file mode 100644 index 0000000000..620e3a705b --- /dev/null +++ b/meta/packages/oh/qemu-config/anjuta-remote-run | |||
@@ -0,0 +1,7 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | . /etc/profile | ||
4 | export DISPLAY=:0 | ||
5 | dbus-launch $@ | ||
6 | |||
7 | |||