cf3e4b8288
This is necessary to move efl packages to package directory and prepare the efl version bump to the latest release. Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
38 lines
996 B
Makefile
38 lines
996 B
Makefile
################################################################################
|
|
#
|
|
# libedbus
|
|
#
|
|
################################################################################
|
|
|
|
LIBEDBUS_VERSION = 1.7.10
|
|
LIBEDBUS_SOURCE = e_dbus-$(LIBEDBUS_VERSION).tar.bz2
|
|
LIBEDBUS_SITE = http://download.enlightenment.org/releases
|
|
LIBEDBUS_LICENSE = BSD-2c
|
|
LIBEDBUS_LICENSE_FILES = COPYING
|
|
|
|
LIBEDBUS_INSTALL_STAGING = YES
|
|
|
|
LIBEDBUS_DEPENDENCIES = host-pkgconf dbus libeina libecore
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBEDBUS_BLUEZ),y)
|
|
LIBEDBUS_CONF_OPTS += --enable-ebluez
|
|
LIBEDBUS_DEPENDENCIES += bluez_utils
|
|
else
|
|
LIBEDBUS_CONF_OPTS += --disable-ebluez
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBEDBUS_CONNMAN),y)
|
|
LIBEDBUS_CONF_OPTS += --enable-econnman0_7x
|
|
LIBEDBUS_DEPENDENCIES += connman
|
|
else
|
|
LIBEDBUS_CONF_OPTS += --disable-econnman0_7x
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBEDBUS_NOTIFY),y)
|
|
LIBEDBUS_CONF_OPTS += --enable-enotify --disable-edbus-notify-test
|
|
else
|
|
LIBEDBUS_CONF_OPTS += --disable-enotify
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|