diff options
author | Richard Purdie <richard@openedhand.com> | 2008-01-22 13:47:08 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-01-22 13:47:08 +0000 |
commit | 10390fa1fb5669f2d8e7105ec2d7ecbdf12a1d1e (patch) | |
tree | 1e4152ba8df4b2fdbb7be96c7b80ccc674ee4135 /meta | |
parent | 0b465bff69c9674d166f3f75f2862ab055577339 (diff) | |
download | poky-10390fa1fb5669f2d8e7105ec2d7ecbdf12a1d1e.tar.gz |
qemu-config: Add anjuta-remote-run script
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3568 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta')
-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 | |||