You've already forked CoreMP135_buildroot
mirror of
https://github.com/m5stack/CoreMP135_buildroot.git
synced 2026-05-20 11:24:29 -07:00
3db8622f31
dbus-glib is not required since version 1.2.8 and https://github.com/freedesktop/dbus-python/commit/28098f2c7c23bdef9247c5dfbb8437ca3f03dac4 Parts of dbus-glib have been copied into dbus-python instead. It can only use the bundled copy, not the system dbus-glib. So drop it and add dbus-gmain/COPYING to license files Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
49 lines
1.7 KiB
Makefile
49 lines
1.7 KiB
Makefile
################################################################################
|
|
#
|
|
# dbus-python
|
|
#
|
|
################################################################################
|
|
|
|
DBUS_PYTHON_VERSION = 1.2.12
|
|
DBUS_PYTHON_SITE = http://dbus.freedesktop.org/releases/dbus-python
|
|
DBUS_PYTHON_INSTALL_STAGING = YES
|
|
DBUS_PYTHON_LICENSE = MIT (dbus-python), AFL-2.1 or GPL-2.0+ (dbus-gmain)
|
|
DBUS_PYTHON_LICENSE_FILES = COPYING dbus-gmain/COPYING
|
|
DBUS_PYTHON_DEPENDENCIES = dbus libglib2
|
|
HOST_DBUS_PYTHON_DEPENDENCIES = host-dbus host-libglib2
|
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON),y)
|
|
DBUS_PYTHON_DEPENDENCIES += python host-python
|
|
|
|
DBUS_PYTHON_CONF_ENV += \
|
|
PYTHON=$(HOST_DIR)/bin/python2 \
|
|
PYTHON_INCLUDES="`$(STAGING_DIR)/usr/bin/python2-config --includes`" \
|
|
PYTHON_LIBS="`$(STAGING_DIR)/usr/bin/python2-config --ldflags`"
|
|
|
|
HOST_DBUS_PYTHON_DEPENDENCIES += host-python
|
|
|
|
HOST_DBUS_PYTHON_CONF_ENV += \
|
|
PYTHON=$(HOST_DIR)/bin/python2 \
|
|
PYTHON_INCLUDES="`$(HOST_DIR)/usr/bin/python2-config --includes`" \
|
|
PYTHON_LIBS="`$(HOST_DIR)/usr/bin/python2-config --ldflags`"
|
|
else
|
|
DBUS_PYTHON_DEPENDENCIES += python3 host-python3
|
|
|
|
DBUS_PYTHON_CONF_ENV += \
|
|
PYTHON=$(HOST_DIR)/bin/python3 \
|
|
PYTHON_INCLUDES="`$(STAGING_DIR)/usr/bin/python3-config --includes`" \
|
|
PYTHON_LIBS="`$(STAGING_DIR)/usr/bin/python3-config --ldflags`" \
|
|
PYTHON_EXTRA_LIBS="`$(STAGING_DIR)/usr/bin/python3-config --libs --embed`"
|
|
|
|
HOST_DBUS_PYTHON_DEPENDENCIES += host-python3
|
|
|
|
HOST_DBUS_PYTHON_CONF_ENV += \
|
|
PYTHON=$(HOST_DIR)/bin/python3 \
|
|
PYTHON_INCLUDES="`$(HOST_DIR)/usr/bin/python3-config --includes`" \
|
|
PYTHON_LIBS="`$(HOST_DIR)/usr/bin/python3-config --ldflags`" \
|
|
PYTHON_EXTRA_LIBS="`$(HOST_DIR)/usr/bin/python3-config --libs --embed`"
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|