From 1549e9f366012a1e16946f8eab78fd89e045145f Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Mon, 16 Mar 2009 20:58:15 +0000 Subject: dbus: add host-dbus support --- package/dbus/dbus.mk | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) (limited to 'package/dbus') diff --git a/package/dbus/dbus.mk b/package/dbus/dbus.mk index 0cf77b630..9d43ab2a4 100644 --- a/package/dbus/dbus.mk +++ b/package/dbus/dbus.mk @@ -53,3 +53,54 @@ $(DBUS_HOOK_POST_INSTALL): $(DBUS_TARGET_INSTALL_TARGET) rm -rf $(TARGET_DIR)/usr/lib/dbus-1.0 $(INSTALL) -m 0755 package/dbus/S30dbus $(TARGET_DIR)/etc/init.d touch $@ + +# dbus for the host +DBUS_HOST_DIR:=$(BUILD_DIR)/dbus-$(DBUS_VERSION)-host +DBUS_HOST_BINARY:=$(HOST_DIR)/usr/bin/dbus-daemon + +$(DBUS_HOST_DIR)/.unpacked: $(DL_DIR)/$(DBUS_SOURCE) + mkdir -p $(@D) + $(INFLATE$(suffix $(DBUS_SOURCE))) $< | \ + $(TAR) $(TAR_STRIP_COMPONENTS)=1 -C $(@D) $(TAR_OPTIONS) - + touch $@ + +$(DBUS_HOST_DIR)/.configured: $(DBUS_HOST_DIR)/.unpacked $(EXPAT_HOST_BINARY) + (cd $(@D); rm -rf config.cache; \ + $(HOST_CONFIGURE_OPTS) \ + CFLAGS="$(HOST_CFLAGS)" \ + LDFLAGS="$(HOST_LDFLAGS)" \ + $(@D)/configure \ + --prefix=$(HOST_DIR)/usr \ + --sysconfdir=$(HOST_DIR)/etc \ + --with-dbus-user=dbus \ + --disable-tests \ + --disable-asserts \ + --enable-abstract-sockets \ + --disable-selinux \ + --disable-xml-docs \ + --disable-doxygen-docs \ + --disable-static \ + --enable-dnotify \ + --without-x \ + --with-xml=expat \ + ) + touch $@ + +$(DBUS_HOST_DIR)/.compiled: $(DBUS_HOST_DIR)/.configured + $(MAKE) -C $(@D) + touch $@ + +$(DBUS_HOST_BINARY): $(DBUS_HOST_DIR)/.compiled + $(MAKE) -C $(