2007-01-14 04:45:06 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# dbus
|
|
|
|
#
|
|
|
|
#############################################################
|
2011-09-23 11:17:23 +02:00
|
|
|
DBUS_VERSION = 1.4.16
|
2009-02-22 21:12:50 +01:00
|
|
|
DBUS_SOURCE = dbus-$(DBUS_VERSION).tar.gz
|
|
|
|
DBUS_SITE = http://dbus.freedesktop.org/releases/dbus/
|
|
|
|
DBUS_INSTALL_STAGING = YES
|
|
|
|
|
2009-10-27 23:16:44 +01:00
|
|
|
DBUS_DEPENDENCIES = host-pkg-config
|
2007-01-14 04:45:06 +01:00
|
|
|
|
2009-02-22 21:12:50 +01:00
|
|
|
DBUS_CONF_ENV = ac_cv_have_abstract_sockets=yes
|
2011-08-10 00:12:52 +02:00
|
|
|
DBUS_CONF_OPT = --with-dbus-user=dbus \
|
2007-01-14 04:45:06 +01:00
|
|
|
--disable-tests \
|
|
|
|
--disable-asserts \
|
|
|
|
--enable-abstract-sockets \
|
|
|
|
--disable-selinux \
|
|
|
|
--disable-xml-docs \
|
|
|
|
--disable-doxygen-docs \
|
|
|
|
--disable-static \
|
|
|
|
--enable-dnotify \
|
2009-03-20 08:47:29 +01:00
|
|
|
--localstatedir=/var \
|
2007-01-14 04:45:06 +01:00
|
|
|
--with-system-socket=/var/run/dbus/system_bus_socket \
|
2009-02-22 21:12:50 +01:00
|
|
|
--with-system-pid-file=/var/run/messagebus.pid
|
2007-01-14 04:45:06 +01:00
|
|
|
|
2009-03-16 21:57:56 +01:00
|
|
|
ifeq ($(BR2_DBUS_EXPAT),y)
|
|
|
|
DBUS_CONF_OPT += --with-xml=expat
|
|
|
|
DBUS_DEPENDENCIES += expat
|
|
|
|
else
|
|
|
|
DBUS_CONF_OPT += --with-xml=libxml
|
|
|
|
DBUS_DEPENDENCIES += libxml2
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_XLIB_LIBX11),y)
|
|
|
|
DBUS_CONF_OPT += --with-x
|
|
|
|
DBUS_DEPENDENCIES += xlib_libX11
|
|
|
|
else
|
|
|
|
DBUS_CONF_OPT += --without-x
|
|
|
|
endif
|
|
|
|
|
2010-09-01 23:58:12 +02:00
|
|
|
# fix rebuild (dbus makefile errors out if /var/lib/dbus is a symlink)
|
|
|
|
define DBUS_REMOVE_VAR_LIB_DBUS
|
|
|
|
rm -rf $(TARGET_DIR)/var/lib/dbus
|
|
|
|
endef
|
|
|
|
|
|
|
|
DBUS_POST_BUILD_HOOKS += DBUS_REMOVE_VAR_LIB_DBUS
|
|
|
|
|
|
|
|
define DBUS_REMOVE_DEVFILES
|
|
|
|
rm -rf $(TARGET_DIR)/usr/lib/dbus-1.0
|
|
|
|
endef
|
|
|
|
|
|
|
|
ifneq ($(BR2_HAVE_DEVFILES),y)
|
|
|
|
DBUS_POST_INSTALL_TARGET_HOOKS += DBUS_REMOVE_DEVFILES
|
|
|
|
endif
|
|
|
|
|
|
|
|
define DBUS_INSTALL_TARGET_FIXUP
|
|
|
|
rm -rf $(TARGET_DIR)/var/lib/dbus
|
|
|
|
ln -sf /tmp/dbus $(TARGET_DIR)/var/lib/dbus
|
2010-12-09 10:55:00 +01:00
|
|
|
$(INSTALL) -m 0755 -D package/dbus/S30dbus $(TARGET_DIR)/etc/init.d/S30dbus
|
2010-09-01 23:58:12 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
DBUS_POST_INSTALL_TARGET_HOOKS += DBUS_INSTALL_TARGET_FIXUP
|
|
|
|
|
2009-11-03 00:09:13 +01:00
|
|
|
HOST_DBUS_DEPENDENCIES = host-pkg-config host-expat
|
|
|
|
HOST_DBUS_CONF_OPT = \
|
2009-03-16 21:58:15 +01:00
|
|
|
--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 \
|
2009-11-03 00:09:13 +01:00
|
|
|
--with-xml=expat
|
2009-03-16 21:58:15 +01:00
|
|
|
|
2009-11-03 00:09:13 +01:00
|
|
|
# dbus for the host
|
2009-12-15 23:42:57 +01:00
|
|
|
DBUS_HOST_INTROSPECT=$(HOST_DBUS_DIR)/introspect.xml
|
2009-03-16 21:58:15 +01:00
|
|
|
|
2009-11-03 00:09:13 +01:00
|
|
|
HOST_DBUS_GEN_INTROSPECT = \
|
2009-03-19 12:06:47 +01:00
|
|
|
$(HOST_DIR)/usr/bin/dbus-daemon --introspect > $(DBUS_HOST_INTROSPECT)
|
2009-03-17 14:48:15 +01:00
|
|
|
|
2009-11-03 00:09:13 +01:00
|
|
|
HOST_DBUS_POST_INSTALL_HOOKS += HOST_DBUS_GEN_INTROSPECT
|
2009-03-16 21:58:15 +01:00
|
|
|
|
2011-09-29 21:57:43 +02:00
|
|
|
$(eval $(call AUTOTARGETS))
|
|
|
|
$(eval $(call AUTOTARGETS,host))
|