From 05ecb806ff958dcf2a2ac2683d765bfa272f7677 Mon Sep 17 00:00:00 2001 From: Hamish Moffatt Date: Wed, 6 Feb 2008 00:55:05 +0000 Subject: Added configuration item to control whether development headers and libraries are installed on the target Removed some additional files if optional modules are disabled --- package/python/python.mk | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) (limited to 'package/python/python.mk') diff --git a/package/python/python.mk b/package/python/python.mk index 9f7e1b885..050db443f 100644 --- a/package/python/python.mk +++ b/package/python/python.mk @@ -4,6 +4,7 @@ # ############################################################# PYTHON_VERSION=2.4.2 +PYTHON_VERSION_SHORT=2.4 PYTHON_SOURCE:=Python-$(PYTHON_VERSION).tar.bz2 PYTHON_SITE:=http://python.org/ftp/python/$(PYTHON_VERSION) PYTHON_DIR:=$(BUILD_DIR)/Python-$(PYTHON_VERSION) @@ -136,13 +137,31 @@ endif find $(TARGET_DIR)/usr/lib/ -name '*.pyo' -exec rm {} \; && \ rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \ $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc \ - $(TARGET_DIR)/usr/lib/python*/test + $(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_SHORT)/test + cp -dpr $(TARGET_DIR)/usr/include/python$(PYTHON_VERSION_SHORT) $(STAGING_DIR)/usr/include/ + mkdir -p $(STAGING_DIR)/usr/lib/python$(PYTHON_VERSION_SHORT) + cp -dpr $(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_SHORT)/config $(STAGING_DIR)/usr/lib/python$(PYTHON_VERSION_SHORT)/ + ifeq ($(BR2_PACKAGE_PYTHON_PY_ONLY),y) find $(TARGET_DIR)/usr/lib/ -name '*.pyc' -exec rm {} \; endif ifeq ($(BR2_PACKAGE_PYTHON_PYC_ONLY),y) find $(TARGET_DIR)/usr/lib/ -name '*.py' -exec rm {} \; endif +ifneq ($(BR2_PACKAGE_PYTHON_DEV),y) + rm -rf $(TARGET_DIR)/usr/include/python$(PYTHON_VERSION_SHORT) + rm -rf $(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_SHORT)/config + find $(TARGET_DIR)/usr/lib/ -name '*.py' -exec rm {} \; +endif +ifneq ($(BR2_PACKAGE_PYTHON_BSDDB),y) + rm -rf $(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_SHORT)/bsddb +endif +ifneq ($(BR2_PACKAGE_PYTHON_CURSES),y) + rm -rf $(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_SHORT)/curses +endif +ifneq ($(BR2_PACKAGE_PYTHON_TKINTER),y) + rm -rf $(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_SHORT)/lib-tk +endif python: uclibc $(PYTHON_DEPS) $(TARGET_DIR)/$(PYTHON_TARGET_BINARY) -- cgit v1.2.3