46 lines
1.3 KiB
BlitzBasic
46 lines
1.3 KiB
BlitzBasic
DESCRIPTION = "Adds scripts to use distcc on the host system under qemu"
|
|
|
|
LICENSE = "GPL"
|
|
LIC_FILES_CHKSUM = "file://${WORKDIR}/COPYING.GPL;md5=751419260aa954499f7abaabaa882bbe"
|
|
|
|
COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemumips|qemuppc)"
|
|
|
|
PR = "r23"
|
|
|
|
SRC_URI = "file://distcc.sh \
|
|
file://anjuta-remote-run \
|
|
file://exports \
|
|
file://shutdown.desktop \
|
|
file://qemu-autostart \
|
|
file://COPYING.GPL"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
do_install() {
|
|
install -d ${D}${sysconfdir}/profile.d
|
|
|
|
install -m 0755 distcc.sh ${D}${sysconfdir}/profile.d/
|
|
install -m 0644 exports ${D}${sysconfdir}/
|
|
|
|
install -d ${D}${bindir}
|
|
install -m 0755 anjuta-remote-run ${D}${bindir}/
|
|
|
|
install -d ${D}${datadir}/applications
|
|
install -m 0644 shutdown.desktop ${D}${datadir}/applications/
|
|
|
|
install -d ${D}/etc/init.d
|
|
install qemu-autostart ${D}/etc/init.d/
|
|
}
|
|
|
|
pkg_postinst_${PN} () {
|
|
grep -q qemuarm $D${sysconfdir}/hostname && \
|
|
sed -i $D${datadir}/applications/shutdown.desktop -e 's/^Exec=halt/Exec=reboot/'
|
|
}
|
|
|
|
RDEPENDS_${PN} = "distcc ${@base_contains('DISTRO_FEATURES', 'x11', 'dbus-x11', '', d)} task-core-nfs-server oprofileui-server rsync bash"
|
|
|
|
inherit update-rc.d allarch
|
|
|
|
INITSCRIPT_NAME = "qemu-autostart"
|
|
INITSCRIPT_PARAMS = "start 999 5 2 . stop 20 0 1 6 ."
|