summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/hal/hal.inc
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-10-07 10:53:06 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-10-12 14:12:10 +0100
commit2cf9fb4df498fe0e4fa8356dc663fdfdec9a98cc (patch)
tree411508c9d098cd199dcb6d129031d9904b8ee7b0 /meta/recipes-support/hal/hal.inc
parentb04b8a4e4d720df61e3294781236890e1ab91748 (diff)
downloadpoky-2cf9fb4df498fe0e4fa8356dc663fdfdec9a98cc.tar.gz
hal/hal-info: This is unsed in OE-Core and deprecated, drop
(From OE-Core rev: 72c010af2c0fe967a5cacc7fbdba75c3ea3e5c3a) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/hal/hal.inc')
-rw-r--r--meta/recipes-support/hal/hal.inc83
1 files changed, 0 insertions, 83 deletions
diff --git a/meta/recipes-support/hal/hal.inc b/meta/recipes-support/hal/hal.inc
deleted file mode 100644
index efd9e72210..0000000000
--- a/meta/recipes-support/hal/hal.inc
+++ /dev/null
@@ -1,83 +0,0 @@
1DESCRIPTION = "Hardware Abstraction Layer"
2HOMEPAGE = "http://freedesktop.org/Software/hal"
3BUGTRACKER = "http://bugs.freedesktop.org/buglist.cgi?product=hal"
4SECTION = "unknown"
5
6LICENSE = "GPLv2+ | AFL"
7LIC_FILES_CHKSUM = "file://COPYING;md5=5b5ffd59fbb7c2fff6de76c94177af31"
8
9DEPENDS = "virtual/kernel dbus-glib udev util-linux intltool intltool-native expat libusb gperf-native"
10RDEPENDS_${PN} += "udev hal-info"
11
12SRC_URI = "http://hal.freedesktop.org/releases/hal-${PV}.tar.gz \
13 file://20hal"
14
15inherit autotools pkgconfig
16
17
18LEAD_SONAME = "libhal.so"
19
20# machines with pci and acpi get a machine dependant hal
21EXTRA_OECONF = "--with-hwdata=${datadir}/hwdata \
22 --with-expat=${STAGING_LIBDIR}/.. \
23 --with-dbus-sys=${sysconfdir}/dbus-1/system.d \
24 --with-hotplug=${sysconfdir}/hotplug.d \
25 --disable-docbook-docs \
26 --disable-policy-kit \
27 --disable-pmu \
28 --disable-pnp-ids \
29 ${@base_contains('COMBINED_FEATURES', 'pci', '--enable-pci --enable-pci-ids', '--disable-pci --disable-pci-ids',d)} \
30 ${@base_contains('MACHINE_FEATURES', 'acpi', '--enable-acpi', '--disable-acpi',d)} \
31 "
32
33PACKAGE_ARCH = "${@base_contains('MACHINE_FEATURES', 'acpi', '${MACHINE_ARCH}', '${TUNE_PKGARCH}',d)}"
34PACKAGE_ARCH = "${@base_contains('MACHINE_FEATURES', 'pci', '${MACHINE_ARCH}', '${TUNE_PKGARCH}',d)}"
35
36do_install_append() {
37 install -d ${D}/etc/dbus-1/event.d
38 install -m 0755 ${WORKDIR}/20hal ${D}/etc/dbus-1/event.d
39}
40
41# At the time the postinst runs, dbus might not be setup so only restart if running
42pkg_postinst_hal () {
43 # can't do this offline
44 if [ "x$D" != "x" ]; then
45 exit 1
46 fi
47
48 grep haldaemon /etc/group || addgroup haldaemon
49 grep haldaemon /etc/passwd || adduser --disabled-password --system --home /var/run/hald --no-create-home haldaemon --ingroup haldaemon -g HAL
50
51 # add volatile after new user/grp are created
52 echo "d root root 0700 /var/run/hald none" > /etc/default/volatiles/99_hal
53 echo "d haldaemon haldaemon 0755 /var/cache/hald none" >> /etc/default/volatiles/99_hal
54 /etc/init.d/populate-volatile.sh update
55
56 DBUSPID=`pidof dbus-daemon`
57
58 if [ "x$DBUSPID" != "x" ]; then
59 /etc/init.d/dbus-1 force-reload
60 fi
61}
62
63pkg_postrm_hal () {
64 deluser haldaemon || true
65 delgroup haldaemon || true
66}
67
68FILES_${PN} = "${sysconfdir} \
69 ${bindir}/lshal \
70 ${bindir}/hal-find-by-capability \
71 ${bindir}/hal-find-by-property \
72 ${bindir}/hal-device \
73 ${bindir}/hal-get-property \
74 ${bindir}/hal-set-property \
75 ${bindir}/hal-lock \
76 ${bindir}/hal-is-caller-locked-out \
77 ${sbindir} \
78 ${libdir}/libhal.so.* \
79 ${libdir}/libhal-storage.so.* \
80 ${libdir}/hal \
81 ${libexecdir} \
82 ${datadir}/hal/fdi \
83 ${datadir}/hal/scripts"