move python packages to 'Python' submenu and make them depends on 'python'

git-svn-id: svn://svn.openwrt.org/openwrt/packages@8988 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2007-09-23 18:08:06 +00:00
parent d777c90321
commit c8b481f5da
2 changed files with 3 additions and 1 deletions

View File

@ -26,6 +26,7 @@ PY_DISABLED_MODULES=\
_curses _curses_panel _tkinter nis
define Package/python
SUBMENU:=Python
SECTION:=lang
CATEGORY:=Languages
DEPENDS:=+libexpat +libopenssl +libpthread +libreadline +uclibcxx

View File

@ -24,10 +24,11 @@ define PyPackage
$(eval $(call PyPackage/$(1)))
define Package/$(1)
SUBMENU:=Python
TITLE:=$(TITLE)
SECTION:=lang
CATEGORY:=Languages
DEPENDS:=+python
DEPENDS:=python
$(call PyPackage/$(1))
endef