summaryrefslogtreecommitdiffstats
path: root/include/package-dumpinfo.mk
blob: effb8637bd972da77d7017c9aceaabc4c2379089 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 
# 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 Config
    preconfig_$$(1) += echo "Preconfig: $(1)"; echo "Preconfig-Type: $(2)"; echo "Preconfig-Default: $(3)"; echo "Preconfig-Label: $(4)";
  endef

  define Dumpinfo
    dumpinfo: dumpinfo-$(1)
    .SILENT: 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 "@@"; ) \
		$$(if $$(preconfig_$(1)),$$(preconfig_$(1)) echo "")
  endef
endif