2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2007-01-14 04:45:06 +01:00
|
|
|
#
|
|
|
|
# dbus
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-05-08 08:12:38 +02:00
|
|
|
|
2013-06-25 15:50:24 +02:00
|
|
|
DBUS_VERSION = 1.4.26
|
|
|
|
DBUS_SITE = http://dbus.freedesktop.org/releases/dbus
|
2013-05-08 08:12:38 +02:00
|
|
|
DBUS_LICENSE = AFLv2.1 GPLv2+
|
|
|
|
DBUS_LICENSE_FILES = COPYING
|
2009-02-22 21:12:50 +01:00
|
|
|
DBUS_INSTALL_STAGING = YES
|
|
|
|
|
2013-08-29 23:30:55 +02:00
|
|
|
define DBUS_PERMISSIONS
|
|
|
|
/usr/libexec/dbus-daemon-launch-helper f 4755 0 0 - - - - -
|
|
|
|
endef
|
|
|
|
|
2012-10-22 17:47:52 +02:00
|
|
|
DBUS_DEPENDENCIES = host-pkgconf
|
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 \
|
2012-12-14 01:23:34 +01:00
|
|
|
--disable-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
|
|
|
|
2013-10-06 01:39:55 +02:00
|
|
|
ifeq ($(BR2_PREFER_STATIC_LIB),y)
|
|
|
|
DBUS_CONF_OPT += LIBS='-lpthread'
|
|
|
|
endif
|
|
|
|
|
2012-12-14 01:23:34 +01:00
|
|
|
ifeq ($(BR2_microblaze),y)
|
|
|
|
# microblaze toolchain doesn't provide inotify_rm_* but does have sys/inotify.h
|
|
|
|
DBUS_CONF_OPT += --disable-inotify
|
|
|
|
endif
|
|
|
|
|
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
|
|
|
|
|
2012-03-23 16:49:52 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
|
|
|
|
DBUS_CONF_OPT += --with-systemdsystemunitdir=/lib/systemd/system
|
|
|
|
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
|
|
|
|
|
|
|
|
DBUS_POST_INSTALL_TARGET_HOOKS += DBUS_REMOVE_DEVFILES
|
|
|
|
|
|
|
|
define DBUS_INSTALL_TARGET_FIXUP
|
2013-06-29 15:27:04 +02:00
|
|
|
mkdir -p $(TARGET_DIR)/var/lib
|
2010-09-01 23:58:12 +02:00
|
|
|
rm -rf $(TARGET_DIR)/var/lib/dbus
|
|
|
|
ln -sf /tmp/dbus $(TARGET_DIR)/var/lib/dbus
|
|
|
|
endef
|
|
|
|
|
|
|
|
DBUS_POST_INSTALL_TARGET_HOOKS += DBUS_INSTALL_TARGET_FIXUP
|
|
|
|
|
2013-11-19 14:02:03 +01:00
|
|
|
define DBUS_INSTALL_INIT_SYSV
|
|
|
|
$(INSTALL) -m 0755 -D package/dbus/S30dbus \
|
|
|
|
$(TARGET_DIR)/etc/init.d/S30dbus
|
|
|
|
endef
|
|
|
|
|
2012-10-22 17:47:52 +02:00
|
|
|
HOST_DBUS_DEPENDENCIES = host-pkgconf host-expat
|
2009-11-03 00:09:13 +01:00
|
|
|
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
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|
2012-07-03 00:06:54 +02:00
|
|
|
$(eval $(host-autotools-package))
|