fix ppc compile
[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 export CONFIG_SITE:=$(INCLUDE_DIR)/site/$(REAL_GNU_TARGET_NAME)
18
19 define Build/DefaultTargets
20 ifeq ($(DUMP),)
21 ifeq ($(CONFIG_AUTOREBUILD),y)
22 _INFO:=
23 ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p $(PKG_BUILD_DIR) .),$(PKG_BUILD_DIR))
24 _INFO+=$(subst $(TOPDIR)/,,$(PKG_BUILD_DIR))
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)),)
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_BUILDDEP)"; \
180 echo "Category: $(CATEGORY)"; \
181 echo "Title: $(TITLE)"; \
182 if isset $(call shvar,Package/$(1)/description); then \
183 echo -n "Description: "; \
184 getvar $(call shvar,Package/$(1)/description); \
185 else \
186 echo "Description: $(patsubst \\,\\\\,$(DESCRIPTION))" | perl -ne 's/\\/\n/g, print'; \
187 fi;
188
189 ifneq ($(URL),)
190 DUMPINFO_$(call shvar,$(1)) += \
191 echo; \
192 echo "$(URL)";
193 endif
194
195 DUMPINFO_$(call shvar,$(1)) += \
196 echo "@@";
197
198 $(call shexport,Package/$(1)/config)
199 DUMPINFO_$(call shvar,$(1)) += \
200 if isset $(call shvar,Package/$(1)/config); then \
201 echo "Config: "; \
202 getvar $(call shvar,Package/$(1)/config); \
203 echo "@@"; \
204 fi;
205
206 endif
207
208 $(eval $(call BuildIPKGVariable,$(1),conffiles))
209 $(eval $(call BuildIPKGVariable,$(1),preinst))
210 $(eval $(call BuildIPKGVariable,$(1),postinst))
211 $(eval $(call BuildIPKGVariable,$(1),prerm))
212 $(eval $(call BuildIPKGVariable,$(1),postrm))
213 $$(IDIR_$(1))/CONTROL/control: $(PKG_BUILD_DIR)/.version-$(1)_$(VERSION)_$(PKGARCH)
214 mkdir -p $$(IDIR_$(1))/CONTROL
215 echo "Package: $(1)" > $$(IDIR_$(1))/CONTROL/control
216 echo "Version: $(VERSION)" >> $$(IDIR_$(1))/CONTROL/control
217 ( \
218 DEPENDS='$(EXTRA_DEPENDS)'; \
219 for depend in $$(filter-out @%,$$(IDEPEND_$(1))); do \
220 DEPENDS=$$$${DEPENDS:+$$$$DEPENDS, }$$$${depend##+}; \
221 done; \
222 echo "Depends: $$$$DEPENDS" >> $$(IDIR_$(1))/CONTROL/control; \
223 )
224 echo "Source: $(SOURCE)" >> $$(IDIR_$(1))/CONTROL/control
225 echo "Section: $(SECTION)" >> $$(IDIR_$(1))/CONTROL/control
226 echo "Priority: $(PRIORITY)" >> $$(IDIR_$(1))/CONTROL/control
227 echo "Maintainer: $(MAINTAINER)" >> $$(IDIR_$(1))/CONTROL/control
228 echo "Architecture: $(PKGARCH)" >> $$(IDIR_$(1))/CONTROL/control
229 echo "Description: $(DESCRIPTION)" | sed -e 's,\\,\n,g' | sed -e 's,^[[:space:]]*$$$$, .,g' >> $$(IDIR_$(1))/CONTROL/control
230 chmod 644 $$(IDIR_$(1))/CONTROL/control
231 (cd $$(IDIR_$(1))/CONTROL; \
232 $($(1)_COMMANDS) \
233 )
234
235 $$(IPKG_$(1)): $(PKG_BUILD_DIR)/.built $$(IDIR_$(1))/CONTROL/control
236 $(call Package/$(1)/install,$$(IDIR_$(1)))
237 mkdir -p $(PACKAGE_DIR)
238 -find $$(IDIR_$(1)) -name CVS | xargs rm -rf
239 -find $$(IDIR_$(1)) -name .svn | xargs rm -rf
240 -find $$(IDIR_$(1)) -name '.#*' | xargs rm -f
241 $(RSTRIP) $$(IDIR_$(1))
242 $(IPKG_BUILD) $$(IDIR_$(1)) $(PACKAGE_DIR)
243 @[ -f $$(IPKG_$(1)) ] || false
244
245 $$(INFO_$(1)): $$(IPKG_$(1))
246 $(IPKG) install $$(IPKG_$(1))
247
248 $(1)-clean:
249 rm -f $(PACKAGE_DIR)/$(1)_*
250
251 clean: $(1)-clean
252
253 $(PKG_BUILD_DIR)/.version-$(1)_$(VERSION)_$(PKGARCH): $(PKG_BUILD_DIR)/.prepared
254 -@rm -f $(PKG_BUILD_DIR)/.version-$(1)_* 2>/dev/null
255 @touch $$@
256
257 $$(eval $$(call Build/DefaultTargets,$(1)))
258
259 ifdef Package/$(1)/install
260 ifneq ($$(CONFIG_PACKAGE_$(1)),)
261 ifneq ($(MAKECMDGOALS),prereq)
262 ifneq ($(DUMP),1)
263 ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p -x ipkg -x ipkg-install '$$(IPKG_$(1))' '$(PKG_BUILD_DIR)'),$$(IPKG_$(1)))
264 _INFO+=$(subst $(TOPDIR)/,,$$(IPKG_$(1)))
265 $(PKG_BUILD_DIR)/.built: package-rebuild
266 endif
267
268 ifneq ($$(_INFO),)
269 $$(info Rebuilding $$(_INFO))
270 endif
271 endif
272 endif
273 endif
274 endif
275 endef
276
277 ifneq ($(strip $(PKG_UNPACK)),)
278 define Build/Prepare/Default
279 $(PKG_UNPACK)
280 @if [ -d ./patches -a "$$$$(ls ./patches | wc -l)" -gt 0 ]; then \
281 $(PATCH) $(PKG_BUILD_DIR) ./patches; \
282 fi
283 endef
284 endif
285
286 define Build/Prepare
287 $(call Build/Prepare/Default,)
288 endef
289
290 define Build/Configure/Default
291 (cd $(PKG_BUILD_DIR)/$(strip $(3)); \
292 if [ -x configure ]; then \
293 $(TARGET_CONFIGURE_OPTS) \
294 CFLAGS="$(TARGET_CFLAGS)" \
295 CXXFLAGS="$(TARGET_CFLAGS)" \
296 CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
297 LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
298 PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig" \
299 $(2) \
300 ./configure \
301 --target=$(GNU_TARGET_NAME) \
302 --host=$(GNU_TARGET_NAME) \
303 --build=$(GNU_HOST_NAME) \
304 --program-prefix="" \
305 --program-suffix="" \
306 --prefix=/usr \
307 --exec-prefix=/usr \
308 --bindir=/usr/bin \
309 --sbindir=/usr/sbin \
310 --libexecdir=/usr/lib \
311 --sysconfdir=/etc \
312 --datadir=/usr/share \
313 --localstatedir=/var \
314 --mandir=/usr/man \
315 --infodir=/usr/info \
316 $(DISABLE_NLS) \
317 $(1); \
318 fi; \
319 )
320 endef
321
322 define Build/Configure
323 $(call Build/Configure/Default,)
324 endef
325
326 define Build/Compile/Default
327 $(MAKE) -C $(PKG_BUILD_DIR) \
328 $(TARGET_CONFIGURE_OPTS) \
329 CROSS="$(TARGET_CROSS)" \
330 EXTRA_CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include " \
331 EXTRA_LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib " \
332 ARCH="$(ARCH)" \
333 $(1);
334 endef
335
336 define Build/Compile
337 $(call Build/Compile/Default,)
338 endef
339
340 ifneq ($(DUMP),)
341 dumpinfo:
342 else
343 $(PACKAGE_DIR):
344 mkdir -p $@
345
346 ifneq ($(strip $(PKG_SOURCE_URL)),)
347 download: $(DL_DIR)/$(PKG_SOURCE)
348
349 $(DL_DIR)/$(PKG_SOURCE):
350 mkdir -p $(DL_DIR)
351 $(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(PKG_SOURCE)" "$(PKG_MD5SUM)" $(PKG_SOURCE_URL)
352
353 $(PKG_BUILD_DIR)/.prepared: $(DL_DIR)/$(PKG_SOURCE)
354 endif
355
356 download:
357 prepare: $(PKG_BUILD_DIR)/.prepared
358 configure: $(PKG_BUILD_DIR)/.configured
359
360 compile-targets:
361 compile: compile-targets
362
363 install-targets:
364 install: install-targets
365
366 clean-targets:
367 clean: FORCE
368 @$(MAKE) clean-targets
369 $(call Build/Clean)
370 rm -rf $(PKG_BUILD_DIR)
371 endif