adding python bindings for the "Enlightenment Foundation Libraries (EFL)"

git-svn-id: svn://svn.openwrt.org/openwrt/packages@13858 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
mirko
2009-01-04 13:26:36 +00:00
parent 83a7db5e07
commit 00a0f21868
10 changed files with 356 additions and 0 deletions

49
lang/python-etk/Makefile Normal file
View File

@ -0,0 +1,49 @@
#
# Copyright (C) 2008 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# $Id: Makefile 13786 2008-12-31 15:02:25Z lars $
include $(TOPDIR)/rules.mk
PKG_NAME:=python-etk
PKG_REV:=37637
PKG_VERSION:=r$(PKG_REV)
PKG_RELEASE:=1
PKG_SOURCE_PROTO:=svn
PKG_SOURCE_VERSION:=$(PKG_REV)
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://svn.enlightenment.org/svn/e/trunk/BINDINGS/python/$(PKG_NAME)
include $(INCLUDE_DIR)/package.mk
-include $(if $(DUMP),,$(STAGING_DIR)/mk/python-package.mk)
define Package/python-etk
SUBMENU:=Python
SECTION:=lang
CATEGORY:=Languages
TITLE:=python-etk
DEPENDS:=python-core etk
endef
define Package/python-etk/description
etk python bindings
endef
define Build/Compile
$(call Build/Compile/PyMod,,install --prefix="$(PKG_INSTALL_DIR)/usr")
endef
define Package/python-etk/install
$(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
$(CP) \
$(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
$(1)$(PYTHON_PKG_DIR)
endef
$(eval $(call BuildPackage,python-etk))

View File

@ -0,0 +1,24 @@
diff -ruN python-etk-r37637.orig/setup.py python-etk-r37637/setup.py
--- python-etk-r37637.orig/setup.py 2009-01-04 12:54:25.000000000 +0100
+++ python-etk-r37637/setup.py 2009-01-04 12:57:48.000000000 +0100
@@ -1,10 +1,7 @@
import sys
import os
-from ez_setup import use_setuptools
-use_setuptools('0.6c3')
-
-from setuptools import setup, find_packages, Extension
+from distutils.core import setup, Extension
from distutils.sysconfig import get_python_inc
from glob import glob
import commands
@@ -74,7 +71,7 @@
long_description = long_description,
keywords = 'wrapper binding ui etk graphics',
classifiers = trove_classifiers,
- packages = find_packages(),
+ packages = ['etk'],
install_requires = ['python-evas>=0.2.1', 'python-ecore>=0.2.1'],
setup_requires = ['python-evas>=0.2.1', 'python-ecore>=0.2.1'],
headers = headers,