2008-06-03 21:11:50 +00:00
|
|
|
#
|
2010-02-19 00:14:01 +00:00
|
|
|
# Copyright (C) 2008-2010 OpenWrt.org
|
2008-06-03 21:11:50 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=dbus-python
|
2008-09-04 15:55:13 +00:00
|
|
|
PKG_VERSION:=0.83.0
|
2010-02-19 00:14:01 +00:00
|
|
|
PKG_RELEASE:=3
|
2009-03-09 14:29:26 +00:00
|
|
|
|
2008-06-03 21:11:50 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://dbus.freedesktop.org/releases/dbus-python/
|
2008-09-04 15:55:13 +00:00
|
|
|
PKG_MD5SUM:=562c78876219bf458d79a041af18293d
|
2010-02-19 00:14:01 +00:00
|
|
|
|
|
|
|
PKG_FIXUP:=libtool
|
2009-03-09 14:29:26 +00:00
|
|
|
PKG_INSTALL:=1
|
2008-06-03 21:11:50 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2011-02-02 18:54:24 +00:00
|
|
|
include $(INCLUDE_DIR)/nls.mk
|
2010-02-24 23:13:32 +00:00
|
|
|
$(call include_mk, python-package.mk)
|
2008-06-03 21:11:50 +00:00
|
|
|
|
2008-09-04 15:55:13 +00:00
|
|
|
|
2010-02-14 14:59:22 +00:00
|
|
|
TARGET_LDFLAGS += \
|
2011-02-02 18:54:24 +00:00
|
|
|
-Wl,-rpath=$(STAGING_DIR)/usr/lib
|
2008-06-03 21:11:50 +00:00
|
|
|
|
|
|
|
define Package/dbus-python
|
|
|
|
SUBMENU:=Python
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
2008-09-04 15:55:13 +00:00
|
|
|
TITLE:=Python bindings for dbus
|
2008-06-03 21:11:50 +00:00
|
|
|
URL:=http://dbus.freedesktop.org/
|
2010-02-14 14:59:22 +00:00
|
|
|
DEPENDS:=+python +python-expat +libdbus-glib
|
2008-06-03 21:11:50 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/dbus-python/description
|
2008-09-04 15:55:13 +00:00
|
|
|
Python bindings for dbus.
|
2008-06-03 21:11:50 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev
|
2008-10-02 15:33:26 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/include/dbus-1.0/dbus
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/include/dbus-1.0/dbus/* \
|
2008-09-04 15:55:13 +00:00
|
|
|
$(1)/usr/include/dbus-1.0/dbus/
|
2008-10-02 15:33:26 +00:00
|
|
|
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
|
|
|
|
$(1)/usr/lib/pkgconfig
|
2008-06-03 21:11:50 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/dbus-python/install
|
2008-10-02 15:33:26 +00:00
|
|
|
$(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
|
|
|
|
$(INSTALL_DATA) \
|
2009-03-09 14:29:26 +00:00
|
|
|
$(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/*.{py,so} \
|
2008-10-02 15:33:26 +00:00
|
|
|
$(1)$(PYTHON_PKG_DIR)
|
|
|
|
|
|
|
|
$(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)/dbus
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/dbus/*.py \
|
|
|
|
$(1)$(PYTHON_PKG_DIR)/dbus
|
|
|
|
|
|
|
|
$(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)/dbus/mainloop
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/dbus/mainloop/*.py \
|
|
|
|
$(1)$(PYTHON_PKG_DIR)/dbus/mainloop
|
|
|
|
|
2008-06-03 21:11:50 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,dbus-python))
|