split package.mk and clean up build system code (based on patch by mbm), makes the code more readable and speeds up metadata scan

SVN-Revision: 6571
This commit is contained in:
Felix Fietkau
2007-03-15 23:57:18 +00:00
parent 568c026623
commit 7b1a36cab4
4 changed files with 339 additions and 360 deletions

View File

@@ -0,0 +1,32 @@
#
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
ifneq ($(DUMP),)
define Dumpinfo
dumpinfo: dumpinfo-$(1)
dumpinfo-$(1): FORCE
@echo "Package: $(1)" ; \
$(if $(MENU),echo "Menu: $(MENU)";) \
$(if $(SUBMENU),echo "Submenu: $(SUBMENU)";) \
$(if $(SUBMENUDEP),echo "Submenu-Depends: $(SUBMENUDEP)";) \
$(if $(DEFAULT),echo "Default: $(DEFAULT)";) \
if [ "$$$$PREREQ_CHECK" = 1 ]; then echo "Prereq-Check: 1"; fi; \
echo "Version: $(VERSION)"; \
echo "Depends: $(DEPENDS)"; \
echo "Provides: $(PROVIDES)"; \
echo "Build-Depends: $(PKG_BUILD_DEPENDS)"; \
echo "Section: $(SECTION)"; \
echo "Category: $(CATEGORY)"; \
echo "Title: $(TITLE)"; \
echo "Maintainer: $(MAINTAINER)"; \
echo -n "Description: "; \
getvar $(call shvar,Package/$(1)/description); \
$(if $(URL),echo;echo "$(URL)";) \
echo "@@" ; \
$$(if $$(Package/$(1)/config),echo "Config: "; getvar $(call shvar,Package/$(1)/config); echo "@@")
endef
endif