Commit 396480b4 authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

package: add dbus-python

parent 2f575f43
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -226,6 +226,7 @@ menu "Hardware handling / blockdevices and filesystem maintenance"
source "package/acpid/Config.in"
source "package/dbus/Config.in"
source "package/dbus-glib/Config.in"
source "package/dbus-python/Config.in"
source "package/devmem2/Config.in"
source "package/dm/Config.in"
source "package/dmraid/Config.in"
+9 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_DBUS_PYTHON
	bool "dbus-python"
	depends on BR2_PACKAGE_DBUS
	depends on BR2_PACKAGE_PYTHON
	select BR2_PACKAGE_DBUS_GLIB
	help
	  Python bindings for D-Bus

	  http://dbus.freedesktop.org/doc/dbus-python/
+30 −0
Original line number Diff line number Diff line
Python: add am_cv_python_includes to override runtime python-config check
---
 configure |    7 +++++++
 1 file changed, 7 insertions(+)

Index: dbus-python-0.83.0/configure
===================================================================
--- dbus-python-0.83.0.orig/configure
+++ dbus-python-0.83.0/configure
@@ -10176,6 +10176,12 @@
 
 { echo "$as_me:$LINENO: checking for Python headers using $PYTHON-config --includes" >&5
 echo $ECHO_N "checking for Python headers using $PYTHON-config --includes... $ECHO_C" >&6; }
+if test "${am_cv_python_includes+set}" = set; then
+  echo $ECHO_N "(cached) $ECHO_C" >&6
+  PYTHON_INCLUDES=${am_cv_python_includes}
+  { echo "$as_me:$LINENO: result: $PYTHON_INCLUDES" >&5
+echo "${ECHO_T}$PYTHON_INCLUDES" >&6; }
+else
 PYTHON_INCLUDES=`$PYTHON-config --includes`
 if test $? = 0; then
   { echo "$as_me:$LINENO: result: $PYTHON_INCLUDES" >&5
@@ -10194,6 +10200,7 @@
   { echo "$as_me:$LINENO: result: $PYTHON_INCLUDES" >&5
 echo "${ECHO_T}$PYTHON_INCLUDES" >&6; }
 fi
+fi
 
 { echo "$as_me:$LINENO: checking whether those headers are sufficient" >&5
 echo $ECHO_N "checking whether those headers are sufficient... $ECHO_C" >&6; }
+24 −0
Original line number Diff line number Diff line
#############################################################
#
# dbus-python
#
#############################################################
DBUS_PYTHON_VERSION = 0.83.0
DBUS_PYTHON_SOURCE = dbus-python-$(DBUS_PYTHON_VERSION).tar.gz
DBUS_PYTHON_SITE = http://dbus.freedesktop.org/releases/dbus-python/
DBUS_PYTHON_INSTALL_STAGING = YES
DBUS_PYTHON_INSTALL_TARGET = YES

DBUS_PYTHON_CONF_ENV = am_cv_pathless_PYTHON=python \
		ac_cv_path_PYTHON=$(PYTHON_DIR)/hostpython \
		am_cv_python_version=$(PYTHON_VERSION) \
		am_cv_python_platform=linux2 \
		am_cv_python_pythondir=/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages \
		am_cv_python_pyexecdir=/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages \
		am_cv_python_includes=-I$(STAGING_DIR)/usr/include/python$(PYTHON_VERSION_MAJOR)

DBUS_PYTHON_CONF_OPT = --disable-html-docs --disable-api-docs

DBUS_PYTHON_DEPENDENCIES = uclibc dbus-glib libpython

$(eval $(call AUTOTARGETS,package,dbus-python))