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