From: Florian Fainelli Date: Tue, 28 Aug 2007 12:42:11 +0000 (+0000) Subject: Use this new PyMod template X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=fd6cb98fbfe28edd1cbbf4ffee63c09e4404cb84 Use this new PyMod template SVN-Revision: 8523 --- diff --git a/lang/kid/Makefile b/lang/kid/Makefile index bf12535eee..936f3417d8 100644 --- a/lang/kid/Makefile +++ b/lang/kid/Makefile @@ -25,11 +25,7 @@ define Package/kid endef define Build/Compile - cd $(PKG_BUILD_DIR); \ - CFLAGS='-I$(STAGING_DIR)/usr/include' \ - LDFLAGS='$(TARGET_LDFLAGS) -L$(STAGING_DIR)/usr/lib' \ - $(STAGING_DIR)/usr/bin/hostpython ./setup.py install \ - --prefix=$(PKG_INSTALL_DIR)/usr + $(call Build/Compile/PyMod,,install) endef define Package/kid/install diff --git a/libs/pyevent/Makefile b/libs/pyevent/Makefile index 8a0896e1ee..251fc4e81d 100644 --- a/libs/pyevent/Makefile +++ b/libs/pyevent/Makefile @@ -26,12 +26,11 @@ define Package/pyevent endef define Build/Compile - cd $(PKG_BUILD_DIR); \ - LIBEVENT_HOME='$(STAGING_DIR)/usr/lib' \ - CFLAGS='-I$(STAGING_DIR)/usr/include' \ - LDFLAGS='$(TARGET_LDFLAGS)' \ - $(STAGING_DIR)/usr/bin/hostpython ./setup.py install \ - --prefix=$(PKG_INSTALL_DIR)/usr + $(call Build/Compile/PyMod,\ + LIBEVENT_HOME='$(STAGING_DIR)/usr/lib' \ + ,\ + install \ + ) endef define Package/pyevent/install diff --git a/net/pypcap/Makefile b/net/pypcap/Makefile index 84c5fccdb1..f4d7642d5c 100644 --- a/net/pypcap/Makefile +++ b/net/pypcap/Makefile @@ -24,9 +24,11 @@ define Package/pypcap endef define Build/Compile - cd $(PKG_BUILD_DIR); \ - PCAP_HOME=$(STAGING_DIR)/usr \ - $(STAGING_DIR)/usr/bin/hostpython ./setup.py build + $(call Build/Compile/PyMod,\ + PCAP_HOME=$(STAGING_DIR)/usr \ + ,\ + install \ + ) endef define Package/pypcap/install