mirror of
https://git.yoctoproject.org/poky
synced 2026-04-17 09:32:12 +02:00
devicekit: initial package
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5463 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
34
meta/packages/devicekit/devicekit_git.bb
Normal file
34
meta/packages/devicekit/devicekit_git.bb
Normal file
@@ -0,0 +1,34 @@
|
||||
LICENSE = "GPL"
|
||||
DEPENDS = "dbus-glib"
|
||||
|
||||
SRC_URI = "git://anongit.freedesktop.org/DeviceKit/DeviceKit;protocol=git \
|
||||
file://volatile"
|
||||
|
||||
PV = "002+git${SRCREV}"
|
||||
SRCREV = "014d168ba4bf40c9bae487bacff8bf2aa054b5f6"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
inherit autotools pkgconfig
|
||||
|
||||
do_install_append() {
|
||||
install -d ${D}/etc/default/volatiles
|
||||
install -m 0644 ${WORKDIR}/volatile ${D}/etc/default/volatiles/devicekit
|
||||
}
|
||||
|
||||
pkg_postinst_devicekit () {
|
||||
# can't do this offline
|
||||
if [ "x$D" != "x" ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
/etc/init.d/populate-volatile.sh update
|
||||
|
||||
DBUSPID=`pidof dbus-daemon`
|
||||
|
||||
if [ "x$DBUSPID" != "x" ]; then
|
||||
/etc/init.d/dbus-1 reload
|
||||
fi
|
||||
}
|
||||
|
||||
FILES_${PN} += "${datadir}/dbus-1/"
|
||||
1
meta/packages/devicekit/files/volatile
Normal file
1
meta/packages/devicekit/files/volatile
Normal file
@@ -0,0 +1 @@
|
||||
d root root 0700 /var/run/devkit none
|
||||
Reference in New Issue
Block a user