add maintainer to package metadata
[openwrt/svn-archive/archive.git] / include / package.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 ifneq ($(DUMP),)
8 all: dumpinfo
9 else
10 all: compile
11 endif
12
13 include $(INCLUDE_DIR)/prereq.mk
14 include $(INCLUDE_DIR)/host.mk
15 include $(INCLUDE_DIR)/unpack.mk
16
17 PKG_CONFIG_PATH:=.
18 export CONFIG_SITE:=$(INCLUDE_DIR)/site/$(REAL_GNU_TARGET_NAME)
19
20 define Build/DefaultTargets
21 ifeq ($(DUMP),)
22 ifeq ($(CONFIG_AUTOREBUILD),y)
23 _INFO:=
24 ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p $(PKG_BUILD_DIR) . $(PKG_FILE_DEPEND)),$(PKG_BUILD_DIR))
25 _INFO+=$(subst $(TOPDIR)/,,$(PKG_BUILD_DIR))
26 $(PKG_BUILD_DIR)/.prepared: package-clean
27 endif
28 endif
29 endif
30
31 $(PKG_BUILD_DIR)/.prepared:
32 @-rm -rf $(PKG_BUILD_DIR)
33 @mkdir -p $(PKG_BUILD_DIR)
34 $(call Build/Prepare)
35 touch $$@
36
37 $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
38 $(call Build/Configure)
39 touch $$@
40
41 $(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured
42 $(call Build/Compile)
43 touch $$@
44
45 ifdef Build/InstallDev
46 ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p -x ipkg -x ipkg-install $(STAGING_DIR)/stampfiles/.$(PKG_NAME)-installed $(PKG_BUILD_DIR)),$(STAGING_DIR)/stampfiles/.$(PKG_NAME)-installed)
47 $(PKG_BUILD_DIR)/.built: package-rebuild
48 endif
49
50 $(STAGING_DIR)/stampfiles/.$(PKG_NAME)-installed: $(PKG_BUILD_DIR)/.built
51 mkdir -p $(STAGING_DIR)/stampfiles
52 $(call Build/InstallDev)
53 touch $$@
54
55 compile-targets: $(STAGING_DIR)/stampfiles/.$(PKG_NAME)-installed
56 endif
57
58 package-clean: FORCE
59 $(call Build/Clean)
60 $(call Build/UninstallDev)
61 -rm -f $(STAGING_DIR)/stampfiles/.$(PKG_NAME)-installed
62
63 package-rebuild: FORCE
64 @-rm -f $(PKG_BUILD_DIR)/.built
65
66 define Build/DefaultTargets
67 endef
68 endef
69
70 define Package/Default
71 CONFIGFILE:=
72 SECTION:=opt
73 CATEGORY:=Extra packages
74 DEPENDS:=
75 PROVIDES:=
76 EXTRA_DEPENDS:=
77 MAINTAINER:=OpenWrt Developers Team <openwrt-devel@openwrt.org>
78 SOURCE:=$(patsubst $(TOPDIR)/%,%,${shell pwd})
79 ifneq ($(PKG_VERSION),)
80 ifneq ($(PKG_RELEASE),)
81 VERSION:=$(PKG_VERSION)-$(PKG_RELEASE)
82 else
83 VERSION:=$(PKG_VERSION)
84 endif
85 else
86 VERSION:=$(PKG_RELEASE)
87 endif
88 PKGARCH:=$(ARCH)
89 PRIORITY:=optional
90 DEFAULT:=
91 MENU:=
92 SUBMENU:=
93 SUBMENUDEP:=
94 TITLE:=
95 DESCRIPTION:=
96 endef
97
98 define BuildDescription
99 ifneq ($(DESCRIPTION),)
100 DESCRIPTION:=$(TITLE)\\ $(DESCRIPTION)
101 else
102 DESCRIPTION:=$(TITLE)
103 endif
104 endef
105
106 define BuildIPKGVariable
107 $(call shexport,Package/$(1)/$(2))
108 $(1)_COMMANDS += var2file "$(call shvar,Package/$(1)/$(2))" $(2);
109 endef
110
111 define BuildPackage
112 $(eval $(call Package/Default))
113 $(eval $(call Package/$(1)))
114 $(eval $(call BuildDescription))
115
116 $(foreach FIELD, TITLE CATEGORY PRIORITY SECTION VERSION,
117 ifeq ($($(FIELD)),)
118 $$(error Package/$(1) is missing the $(FIELD) field)
119 endif
120 )
121
122 IPKG_$(1):=$(PACKAGE_DIR)/$(1)_$(VERSION)_$(PKGARCH).ipk
123 IDIR_$(1):=$(PKG_BUILD_DIR)/ipkg/$(1)
124 INFO_$(1):=$(IPKG_STATE_DIR)/info/$(1).list
125
126 ifdef Package/$(1)/install
127 ifeq ($(CONFIG_PACKAGE_$(1)),y)
128 install-targets: $$(INFO_$(1))
129 endif
130
131 ifneq ($(CONFIG_PACKAGE_$(1))$(DEVELOPER)$(SDK),)
132 compile-targets: $$(IPKG_$(1))
133 else
134 compile-targets: $(1)-disabled
135 $(1)-disabled:
136 @echo "WARNING: skipping $(1) -- package not selected"
137 endif
138 endif
139
140 ifeq ($(FORCEREBUILD),y)
141 $$(IPKG_$(1)): FORCE
142 endif
143
144 IDEPEND_$(1):=$$(strip $$(DEPENDS))
145
146 ifneq ($(DUMP),)
147 dumpinfo: dumpinfo-$(1)
148 dumpinfo-$(1): FORCE
149 @$$(DUMPINFO_$(call shvar,$(1)))
150
151 DUMPINFO_$(call shvar,$(1)) += \
152 echo "Package: $(1)";
153
154 ifneq ($(MENU),)
155 DUMPINFO_$(call shvar,$(1)) += \
156 echo "Menu: $(MENU)";
157 endif
158
159 ifneq ($(SUBMENU),)
160 DUMPINFO_$(call shvar,$(1)) += \
161 echo "Submenu: $(SUBMENU)";
162 ifneq ($(SUBMENUDEP),)
163 DUMPINFO_$(call shvar,$(1)) += \
164 echo "Submenu-Depends: $(SUBMENUDEP)";
165 endif
166 endif
167
168 ifneq ($(DEFAULT),)
169 DUMPINFO_$(call shvar,$(1)) += \
170 echo "Default: $(DEFAULT)";
171 endif
172
173 $(call shexport,Package/$(1)/description)
174
175 DUMPINFO_$(call shvar,$(1)) += \
176 if [ "$$$$PREREQ_CHECK" = 1 ]; then echo "Prereq-Check: 1"; fi; \
177 echo "Version: $(VERSION)"; \
178 echo "Depends: $$(IDEPEND_$(1))"; \
179 echo "Provides: $(PROVIDES)"; \
180 echo "Build-Depends: $(PKG_BUILDDEP)"; \
181 echo "Category: $(CATEGORY)"; \
182 echo "Title: $(TITLE)"; \
183 echo "Maintainer: $(MAINTAINER)"; \
184 if isset $(call shvar,Package/$(1)/description); then \
185 echo -n "Description: "; \
186 getvar $(call shvar,Package/$(1)/description); \
187 else \
188 echo "Description: $(patsubst \\,\\\\,$(DESCRIPTION))" | perl -ne 's/\\/\n/g, print'; \
189 fi;
190
191 ifneq ($(URL),)
192 DUMPINFO_$(call shvar,$(1)) += \
193 echo; \
194 echo "$(URL)";
195 endif
196
197 DUMPINFO_$(call shvar,$(1)) += \
198 echo "@@";
199
200 $(call shexport,Package/$(1)/config)
201 DUMPINFO_$(call shvar,$(1)) += \
202 if isset $(call shvar,Package/$(1)/config); then \
203 echo "Config: "; \
204 getvar $(call shvar,Package/$(1)/config); \
205 echo "@@"; \
206 fi;
207
208 endif
209
210 $(eval $(call BuildIPKGVariable,$(1),conffiles))
211 $(eval $(call BuildIPKGVariable,$(1),preinst))
212 $(eval $(call BuildIPKGVariable,$(1),postinst))
213 $(eval $(call BuildIPKGVariable,$(1),prerm))
214 $(eval $(call BuildIPKGVariable,$(1),postrm))
215 $$(IDIR_$(1))/CONTROL/control: $(PKG_BUILD_DIR)/.version-$(1)_$(VERSION)_$(PKGARCH)
216 mkdir -p $$(IDIR_$(1))/CONTROL
217 echo "Package: $(1)" > $$(IDIR_$(1))/CONTROL/control
218 echo "Version: $(VERSION)" >> $$(IDIR_$(1))/CONTROL/control
219 ( \
220 DEPENDS='$(EXTRA_DEPENDS)'; \
221 for depend in $$(filter-out @%,$$(IDEPEND_$(1))); do \
222 DEPENDS=$$$${DEPENDS:+$$$$DEPENDS, }$$$${depend##+}; \
223 done; \
224 echo "Depends: $$$$DEPENDS" >> $$(IDIR_$(1))/CONTROL/control; \
225 )
226 echo "Source: $(SOURCE)" >> $$(IDIR_$(1))/CONTROL/control
227 echo "Section: $(SECTION)" >> $$(IDIR_$(1))/CONTROL/control
228 echo "Priority: $(PRIORITY)" >> $$(IDIR_$(1))/CONTROL/control
229 echo "Maintainer: $(MAINTAINER)" >> $$(IDIR_$(1))/CONTROL/control
230 echo "Architecture: $(PKGARCH)" >> $$(IDIR_$(1))/CONTROL/control
231 echo "Description: $(DESCRIPTION)" | sed -e 's,\\,\n,g' | sed -e 's,^[[:space:]]*$$$$, .,g' >> $$(IDIR_$(1))/CONTROL/control
232 chmod 644 $$(IDIR_$(1))/CONTROL/control
233 (cd $$(IDIR_$(1))/CONTROL; \
234 $($(1)_COMMANDS) \
235 )
236
237 $$(IPKG_$(1)): $(PKG_BUILD_DIR)/.built $$(IDIR_$(1))/CONTROL/control
238 $(call Package/$(1)/install,$$(IDIR_$(1)))
239 mkdir -p $(PACKAGE_DIR)
240 -find $$(IDIR_$(1)) -name CVS | xargs rm -rf
241 -find $$(IDIR_$(1)) -name .svn | xargs rm -rf
242 -find $$(IDIR_$(1)) -name '.#*' | xargs rm -f
243 $(RSTRIP) $$(IDIR_$(1))
244 $(IPKG_BUILD) $$(IDIR_$(1)) $(PACKAGE_DIR)
245 @[ -f $$(IPKG_$(1)) ] || false
246
247 $$(INFO_$(1)): $$(IPKG_$(1))
248 $(IPKG) install $$(IPKG_$(1))
249
250 $(1)-clean:
251 rm -f $(PACKAGE_DIR)/$(1)_*
252
253 clean: $(1)-clean
254
255 $(PKG_BUILD_DIR)/.version-$(1)_$(VERSION)_$(PKGARCH): $(PKG_BUILD_DIR)/.prepared
256 -@rm -f $(PKG_BUILD_DIR)/.version-$(1)_* 2>/dev/null
257 @touch $$@
258
259 $$(eval $$(call Build/DefaultTargets,$(1)))
260
261 ifdef Package/$(1)/install
262 ifneq ($$(CONFIG_PACKAGE_$(1))$(DEVELOPER)$(SDK),)
263 ifneq ($(MAKECMDGOALS),prereq)
264 ifneq ($(DUMP),1)
265 ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p -x ipkg -x ipkg-install '$$(IPKG_$(1))' '$(PKG_BUILD_DIR)'),$$(IPKG_$(1)))
266 _INFO+=$(subst $(TOPDIR)/,,$$(IPKG_$(1)))
267 $(PKG_BUILD_DIR)/.built: package-rebuild
268 endif
269
270 ifneq ($$(_INFO),)
271 $$(info Rebuilding $$(_INFO))
272 endif
273 endif
274 endif
275 endif
276 endif
277 endef
278
279 ifneq ($(strip $(PKG_UNPACK)),)
280 define Build/Prepare/Default
281 $(PKG_UNPACK)
282 @if [ -d ./patches -a "$$$$(ls ./patches | wc -l)" -gt 0 ]; then \
283 $(PATCH) $(PKG_BUILD_DIR) ./patches; \
284 fi
285 endef
286 endif
287
288 define Build/Prepare
289 $(call Build/Prepare/Default,)
290 endef
291
292 define Build/Configure/Default
293 (cd $(PKG_BUILD_DIR)/$(strip $(3)); \
294 if [ -x configure ]; then \
295 $(TARGET_CONFIGURE_OPTS) \
296 CFLAGS="$(TARGET_CFLAGS)" \
297 CXXFLAGS="$(TARGET_CFLAGS)" \
298 CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
299 LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
300 PKG_CONFIG_LIBDIR="$(STAGING_DIR)/usr/lib/pkgconfig" \
301 $(2) \
302 $(PKG_CONFIG_PATH)/configure \
303 --target=$(GNU_TARGET_NAME) \
304 --host=$(GNU_TARGET_NAME) \
305 --build=$(GNU_HOST_NAME) \
306 --program-prefix="" \
307 --program-suffix="" \
308 --prefix=/usr \
309 --exec-prefix=/usr \
310 --bindir=/usr/bin \
311 --sbindir=/usr/sbin \
312 --libexecdir=/usr/lib \
313 --sysconfdir=/etc \
314 --datadir=/usr/share \
315 --localstatedir=/var \
316 --mandir=/usr/man \
317 --infodir=/usr/info \
318 $(DISABLE_NLS) \
319 $(1); \
320 fi; \
321 )
322 endef
323
324 define Build/Configure
325 $(call Build/Configure/Default,)
326 endef
327
328 define Build/Compile/Default
329 $(MAKE) -C $(PKG_BUILD_DIR) \
330 $(TARGET_CONFIGURE_OPTS) \
331 CROSS="$(TARGET_CROSS)" \
332 EXTRA_CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include " \
333 EXTRA_LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib " \
334 ARCH="$(ARCH)" \
335 $(1);
336 endef
337
338 define Build/Compile
339 $(call Build/Compile/Default,)
340 endef
341
342 ifneq ($(DUMP),)
343 dumpinfo:
344 else
345 $(PACKAGE_DIR):
346 mkdir -p $@
347
348 ifneq ($(strip $(PKG_SOURCE_URL)),)
349 download: $(DL_DIR)/$(PKG_SOURCE)
350
351 $(DL_DIR)/$(PKG_SOURCE):
352 mkdir -p $(DL_DIR)
353 $(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(PKG_SOURCE)" "$(PKG_MD5SUM)" $(PKG_SOURCE_URL)
354
355 $(PKG_BUILD_DIR)/.prepared: $(DL_DIR)/$(PKG_SOURCE)
356 endif
357
358 download:
359 prepare: $(PKG_BUILD_DIR)/.prepared
360 configure: $(PKG_BUILD_DIR)/.configured
361
362 compile-targets:
363 compile: compile-targets
364
365 install-targets:
366 install: install-targets
367
368 clean-targets:
369 clean: FORCE
370 @$(MAKE) clean-targets
371 $(call Build/Clean)
372 rm -rf $(PKG_BUILD_DIR)
373 endif