Root/include/package-dumpinfo.mk

1#
2# Copyright (C) 2006 OpenWrt.org
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8ifneq ($(DUMP),)
9
10dumpinfo: FORCE
11
12define Config/template
13Preconfig: $(1)
14Preconfig-Type: $(2)
15Preconfig-Default: $(3)
16Preconfig-Label: $(4)
17
18endef
19
20define Config
21  Preconfig/$(1) = $$(call Config/template,$(1),$(2),$(3),$(4))
22  preconfig_$$(1) += $(1)
23endef
24
25define Dumpinfo/Package
26$(info Package: $(1)
27$(if $(MENU),Menu: $(MENU)
28)$(if $(SUBMENU),Submenu: $(SUBMENU)
29)$(if $(SUBMENUDEP),Submenu-Depends: $(SUBMENUDEP)
30)$(if $(DEFAULT),Default: $(DEFAULT)
31)$(if $(findstring $(PREREQ_CHECK),1),Prereq-Check: 1
32)Version: $(VERSION)
33Depends: $(DEPENDS)
34Menu-Depends: $(MDEPENDS)
35Provides: $(PROVIDES)
36$(if $(VARIANT),Build-Variant: $(VARIANT)
37)$(if $(PKG_BUILD_DEPENDS),Build-Depends: $(PKG_BUILD_DEPENDS)
38)$(if $(HOST_BUILD_DEPENDS),Build-Depends/host: $(HOST_BUILD_DEPENDS)
39)$(if $(BUILD_TYPES),Build-Types: $(BUILD_TYPES)
40)Section: $(SECTION)
41Category: $(CATEGORY)
42Title: $(TITLE)
43Maintainer: $(MAINTAINER)
44Source: $(PKG_SOURCE)
45Type: $(if $(Package/$(1)/targets),$(Package/$(1)/targets),$(if $(PKG_TARGETS),$(PKG_TARGETS),ipkg))
46$(if $(KCONFIG),Kernel-Config: $(KCONFIG)
47)$(if $(BUILDONLY),Build-Only: $(BUILDONLY)
48)Description: $(if $(Package/$(1)/description),$(Package/$(1)/description),$(TITLE))
49$(if $(URL),$(URL)
50)$(MAINTAINER)
51@@
52$(if $(Package/$(1)/config),Config:
53$(Package/$(1)/config)
54@@
55)$(foreach pc,$(preconfig_$(1)),
56$(Preconfig/$(pc))))
57endef
58
59define Feature/Default
60  TARGET_NAME:=
61  TARGET_TITLE:=
62  PRIORITY:=
63  NAME:=
64endef
65
66define Feature
67  $(eval $(Feature/Default))
68  $(eval $(Feature/$(1)))
69  $(if $(DUMP),$(call Dumpinfo/Feature,$(1)))
70endef
71
72define Dumpinfo/Feature
73$(info Feature: $(TARGET_NAME)_$(1)
74Target-Name: $(TARGET_NAME)
75Target-Title: $(TARGET_TITLE)
76Feature-Name: $(NAME)
77$(if $(PRIORITY),Feature-Priority: $(PRIORITY)
78)Feature-Description:
79$(Feature/$(1)/description)
80@@
81)
82endef
83
84endif
85

Archive Download this file



interactive