clean up package titles/descriptions
[oweals/openwrt.git] / openwrt / package / rules.mk
1 ifneq ($(DUMP),)
2 all: dumpinfo
3 else
4 all: compile
5 endif
6
7 define Build/DefaultTargets
8 $(PKG_BUILD_DIR)/.prepared:
9         rm -rf $(PKG_BUILD_DIR)
10         mkdir -p $(PKG_BUILD_DIR)
11         $(call Build/Prepare)
12         touch $$@
13
14 $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
15         $(call Build/Configure)
16         touch $$@
17
18 ifeq ($(shell $(SCRIPT_DIR)/timestamp.pl -p $(PKG_BUILD_DIR) .),.)
19 $(PKG_BUILD_DIR)/.prepared: clean
20 endif
21
22 $(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured
23         $(call Build/Compile)
24         touch $$@
25
26 package-clean:
27         $(call Build/Clean)
28         rm -f $(PKG_BUILD_DIR)/.built
29
30 package-recompile:
31         rm -f $(PKG_BUILD_DIR)/.built
32
33 .PHONY: package-clean package-recompile
34
35 define Build/DefaultTargets
36 endef
37 endef
38
39 define Package/Default
40 CONFIGFILE:=
41 SECTION:=opt
42 CATEGORY:=Extra packages
43 DEPENDS:=
44 MAINTAINER:=OpenWrt Developers Team <openwrt-devel@openwrt.org>
45 SOURCE:=$(patsubst $(TOPDIR)/%,%,${shell pwd})
46 VERSION:=$(PKG_VERSION)-$(PKG_RELEASE)
47 PKGARCH:=$(ARCH)
48 PRIORITY:=optional
49 DEFAULT:=
50 MENU:=
51 TITLE:=
52 DESCRIPTION:=
53 endef
54
55 define BuildPackage
56 $(eval $(call Package/Default))
57 $(eval $(call Package/$(1)))
58
59 ifeq ($(TITLE),)
60 $$(error Package $(1) has no TITLE)
61 endif
62 ifeq ($(CATEGORY),)
63 $$(error Package $(1) has no CATEGORY)
64 endif
65 ifeq ($(PRIORITY),)
66 $$(error Package $(1) has no PRIORITY)
67 endif
68 ifeq ($(VERSION),)
69 $$(error Package $(1) has no VERSION)
70 endif
71 ifeq ($(PKGARCH),)
72 PKGARCH:=$(ARCH)
73 endif
74 $(eval 
75 ifeq ($(DESCRIPTION),)
76 DESCRIPTION:=$(TITLE)
77 endif
78 )
79
80 IPKG_$(1):=$(PACKAGE_DIR)/$(1)_$(VERSION)_$(PKGARCH).ipk
81 IDIR_$(1):=$(PKG_BUILD_DIR)/ipkg/$(1)
82 INFO_$(1):=$(IPKG_STATE_DIR)/info/$(1).list
83
84 ifneq ($(PACKAGE_$(1)),)
85 COMPILE_$(1):=1
86 endif
87 ifneq ($(DEVELOPER),)
88 COMPILE_$(1):=1
89 endif
90 ifeq ($(PACKAGE_$(1)),y)
91 install-targets: $$(INFO_$(1))
92 endif
93
94 ifneq ($$(COMPILE_$(1)),)
95 ifeq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p -x ipkg $$(IPKG_$(1)) $(PKG_BUILD_DIR)),$(PKG_BUILD_DIR))
96 $(PKG_BUILD_DIR)/.built: package-recompile
97 endif
98
99 compile-targets: $$(IPKG_$(1))
100 endif
101
102
103 IDEPEND_$(1):=$$(strip $$(DEPENDS))
104
105 DUMPINFO += \
106         echo "Package: $(1)"; 
107 ifneq ($(MENU),)
108 DUMPINFO += \
109         echo "Menu: $(MENU)";
110 endif
111 ifneq ($(DEFAULT),)
112 DUMPINFO += \
113         echo "Default: $(DEFAULT)";
114 endif
115 DUMPINFO += \
116         echo "Version: $(VERSION)"; \
117         echo "Depends: $$(IDEPEND_$(1))"; \
118         echo "Category: $(CATEGORY)"; \
119         echo "Title: $(TITLE)"; \
120         echo "Description: $(DESCRIPTION)" | sed -e 's,\\,\n,g'; \
121         echo; \
122         echo "$(URL)"; \
123         echo "@@";
124
125
126 $$(IDIR_$(1))/CONTROL/control: $(PKG_BUILD_DIR)/.prepared
127         mkdir -p $$(IDIR_$(1))/CONTROL
128         echo "Package: $(1)" > $$(IDIR_$(1))/CONTROL/control
129         echo "Version: $(VERSION)" >> $$(IDIR_$(1))/CONTROL/control
130         echo "Depends: $$(IDEPEND_$(1))" >> $$(IDIR_$(1))/CONTROL/control
131         echo "Source: $(SOURCE)" >> $$(IDIR_$(1))/CONTROL/control
132         echo "Section: $(SECTION)" >> $$(IDIR_$(1))/CONTROL/control
133         echo "Priority: $(PRIORITY)" >> $$(IDIR_$(1))/CONTROL/control
134         echo "Maintainer: $(MAINTAINER)" >> $$(IDIR_$(1))/CONTROL/control
135         echo "Architecture: $(PKGARCH)" >> $$(IDIR_$(1))/CONTROL/control
136         echo "Description: $(DESCRIPTION)" | sed -e 's,\\,\n ,g' >> $$(IDIR_$(1))/CONTROL/control
137         chmod 644 $$(IDIR_$(1))/CONTROL/control
138         for file in conffiles preinst postinst prerm postrm; do \
139                 [ -f ./ipkg/$(1).$$$$file ] && cp ./ipkg/$(1).$$$$file $$(IDIR_$(1))/CONTROL/$$$$file || true; \
140         done
141
142 $$(IPKG_$(1)): $$(IDIR_$(1))/CONTROL/control $(PKG_BUILD_DIR)/.built
143         $(call Package/$(1)/install,$$(IDIR_$(1)))
144         mkdir -p $(PACKAGE_DIR)
145         $(IPKG_BUILD) $$(IDIR_$(1)) $(PACKAGE_DIR)
146
147 $$(INFO_$(1)): $$(IPKG_$(1))
148         $(IPKG) install $$(IPKG_$(1))
149
150 $(1)-clean:
151         rm -f $(PACKAGE_DIR)/$(1)_*
152 clean: $(1)-clean
153
154 ifneq ($(__DEFAULT_TARGETS),1)
155 $(eval $(call Build/DefaultTargets))
156 endif
157
158 endef
159
160 ifneq ($(strip $(PKG_SOURCE)),)
161 $(DL_DIR)/$(PKG_SOURCE):
162         @$(CMD_TRACE) "downloading... "
163         $(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(PKG_SOURCE)" "$(PKG_MD5SUM)" $(PKG_SOURCE_URL) $(MAKE_TRACE) 
164         
165 $(PKG_BUILD_DIR)/.prepared: $(DL_DIR)/$(PKG_SOURCE)
166 endif
167
168 ifneq ($(strip $(PKG_CAT)),)
169 define Build/Prepare/Default
170         if [ "$(PKG_CAT)" = "unzip" ]; then \
171                 unzip -d $(PKG_BUILD_DIR) $(DL_DIR)/$(PKG_SOURCE) ; \
172         else \
173                 $(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(PKG_BUILD_DIR)/.. $(TAR_OPTIONS) - ; \
174         fi                                                
175         if [ -d ./patches ]; then \
176                 $(PATCH) $(PKG_BUILD_DIR) ./patches ; \
177         fi
178 endef
179 endif
180
181 define Build/Prepare
182 $(call Build/Prepare/Default)
183 endef
184
185 define Build/Configure/Default
186 # TODO: add configurable default command
187 endef
188
189 define Build/Configure
190 $(call Build/Configure/Default)
191 endef
192
193 define Build/Compile/Default
194 # TODO: add configurable default command
195 endef
196
197 define Build/Compile
198 $(call Build/Compile/Default)
199 endef
200
201 define Build/Clean
202         $(MAKE) clean
203 endef
204
205 ifneq ($(DUMP),)
206 dumpinfo:
207         $(DUMPINFO)
208 else
209
210 source: $(DL_DIR)/$(PKG_SOURCE)
211 prepare: source
212         @[ -f $(PKG_BUILD_DIR)/.prepared ] || { \
213                 $(CMD_TRACE) "preparing... "; \
214                 $(MAKE) $(PKG_BUILD_DIR)/.prepared $(MAKE_TRACE); \
215         }
216
217 configure: prepare
218         @[ -f $(PKG_BUILD_DIR)/.configured ] || { \
219                 $(CMD_TRACE) "configuring... "; \
220                 $(MAKE) $(PKG_BUILD_DIR)/.configured $(MAKE_TRACE); \
221         }
222
223 compile-targets:
224 compile: configure
225         @$(CMD_TRACE) "compiling... " 
226         @$(MAKE) compile-targets $(MAKE_TRACE)
227
228 install-targets:
229 install:
230         @$(CMD_TRACE) "installing... "
231         @$(MAKE) install-targets $(MAKE_TRACE)
232
233 rebuild:
234         $(CMD_TRACE) "rebuilding... "
235         $(MAKE) package-clean compile $(MAKE_TRACE)
236
237 $(PACKAGE_DIR):
238         mkdir -p $@
239
240 clean-targets:
241 clean: 
242         @$(CMD_TRACE) "cleaning... " 
243         @$(MAKE) clean-targets $(MAKE_TRACE)
244         rm -rf $(PKG_BUILD_DIR)
245 endif
246
247 .PHONY: all source prepare compile install clean rebuild dumpinfo compile-targets install-targets clean-targets