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