Add <PKG>_STRIP_COMPONENTS for packages with non-standard tarballs
[buildroot-gz.git] / package / pkg-generic.mk
blob700097598de3e10fb9feb7ccb14cae5ba20b0bd4
1 ################################################################################
2 # Generic package infrastructure
4 # This file implements an infrastructure that eases development of
5 # package .mk files. It should be used for packages that do not rely
6 # on a well-known build system for which Buildroot has a dedicated
7 # infrastructure (so far, Buildroot has special support for
8 # autotools-based and CMake-based packages).
10 # See the Buildroot documentation for details on the usage of this
11 # infrastructure
13 # In terms of implementation, this generic infrastructure requires the
14 # .mk file to specify:
16 # 1. Metadata information about the package: name, version,
17 # download URL, etc.
19 # 2. Description of the commands to be executed to configure, build
20 # and install the package
21 ################################################################################
23 ################################################################################
24 # Helper functions to catch start/end of each step
25 ################################################################################
27 # Those two functions are called by each step below.
28 # They are responsible for calling all hooks defined in
29 # $(GLOBAL_INSTRUMENTATION_HOOKS) and pass each of them
30 # three arguments:
31 # $1: either 'start' or 'end'
32 # $2: the name of the step
33 # $3: the name of the package
35 # Start step
36 # $1: step name
37 define step_start
38 $(foreach hook,$(GLOBAL_INSTRUMENTATION_HOOKS),$(call $(hook),start,$(1),$($(PKG)_NAME))$(sep))
39 endef
41 # End step
42 # $1: step name
43 define step_end
44 $(foreach hook,$(GLOBAL_INSTRUMENTATION_HOOKS),$(call $(hook),end,$(1),$($(PKG)_NAME))$(sep))
45 endef
47 #######################################
48 # Actual steps hooks
50 # Time steps
51 define step_time
52 printf "%s:%-5.5s:%-20.20s: %s\n" \
53 "$$(date +%s)" "$(1)" "$(2)" "$(3)" \
54 >>"$(BUILD_DIR)/build-time.log"
55 endef
56 GLOBAL_INSTRUMENTATION_HOOKS += step_time
58 # User-supplied script
59 ifneq ($(BR2_INSTRUMENTATION_SCRIPTS),)
60 define step_user
61 @$(foreach user_hook, $(BR2_INSTRUMENTATION_SCRIPTS), \
62 $(EXTRA_ENV) $(user_hook) "$(1)" "$(2)" "$(3)"$(sep))
63 endef
64 GLOBAL_INSTRUMENTATION_HOOKS += step_user
65 endif
67 ################################################################################
68 # Implicit targets -- produce a stamp file for each step of a package build
69 ################################################################################
71 # Retrieve the archive
72 $(BUILD_DIR)/%/.stamp_downloaded:
73 $(foreach hook,$($(PKG)_PRE_DOWNLOAD_HOOKS),$(call $(hook))$(sep))
74 # Only show the download message if it isn't already downloaded
75 $(Q)for p in $($(PKG)_ALL_DOWNLOADS); do \
76 if test ! -e $(DL_DIR)/`basename $$p` ; then \
77 $(call MESSAGE,"Downloading") ; \
78 break ; \
79 fi ; \
80 done
81 $(foreach p,$($(PKG)_ALL_DOWNLOADS),$(call DOWNLOAD,$(p))$(sep))
82 $(foreach hook,$($(PKG)_POST_DOWNLOAD_HOOKS),$(call $(hook))$(sep))
83 $(Q)mkdir -p $(@D)
84 $(Q)touch $@
86 # Unpack the archive
87 $(BUILD_DIR)/%/.stamp_extracted:
88 @$(call step_start,extract)
89 @$(call MESSAGE,"Extracting")
90 $(foreach hook,$($(PKG)_PRE_EXTRACT_HOOKS),$(call $(hook))$(sep))
91 $(Q)mkdir -p $(@D)
92 $($(PKG)_EXTRACT_CMDS)
93 # some packages have messed up permissions inside
94 $(Q)chmod -R +rw $(@D)
95 $(foreach hook,$($(PKG)_POST_EXTRACT_HOOKS),$(call $(hook))$(sep))
96 $(Q)touch $@
97 @$(call step_end,extract)
99 # Rsync the source directory if the <pkg>_OVERRIDE_SRCDIR feature is
100 # used.
101 $(BUILD_DIR)/%/.stamp_rsynced:
102 @$(call MESSAGE,"Syncing from source dir $(SRCDIR)")
103 @test -d $(SRCDIR) || (echo "ERROR: $(SRCDIR) does not exist" ; exit 1)
104 $(foreach hook,$($(PKG)_PRE_RSYNC_HOOKS),$(call $(hook))$(sep))
105 rsync -au $(RSYNC_VCS_EXCLUSIONS) $(call qstrip,$(SRCDIR))/ $(@D)
106 $(foreach hook,$($(PKG)_POST_RSYNC_HOOKS),$(call $(hook))$(sep))
107 $(Q)touch $@
109 # Patch
111 # The RAWNAME variable is the lowercased package name, which allows to
112 # find the package directory (typically package/<pkgname>) and the
113 # prefix of the patches
115 # For BR2_GLOBAL_PATCH_DIR, only generate if it is defined
116 $(BUILD_DIR)/%/.stamp_patched: NAMEVER = $(RAWNAME)-$($(PKG)_VERSION)
117 $(BUILD_DIR)/%/.stamp_patched: PATCH_BASE_DIRS = $(PKGDIR)
118 $(BUILD_DIR)/%/.stamp_patched: PATCH_BASE_DIRS += $(addsuffix /$(RAWNAME),$(call qstrip,$(BR2_GLOBAL_PATCH_DIR)))
119 $(BUILD_DIR)/%/.stamp_patched:
120 @$(call step_start,patch)
121 @$(call MESSAGE,"Patching")
122 $(foreach hook,$($(PKG)_PRE_PATCH_HOOKS),$(call $(hook))$(sep))
123 $(foreach p,$($(PKG)_PATCH),$(APPLY_PATCHES) $(@D) $(DL_DIR) $(notdir $(p))$(sep))
124 $(Q)( \
125 for D in $(PATCH_BASE_DIRS); do \
126 if test -d $${D}; then \
127 if test -d $${D}/$($(PKG)_VERSION); then \
128 $(APPLY_PATCHES) $(@D) $${D}/$($(PKG)_VERSION) \*.patch \*.patch.$(ARCH) || exit 1; \
129 else \
130 $(APPLY_PATCHES) $(@D) $${D} \*.patch \*.patch.$(ARCH) || exit 1; \
131 fi; \
132 fi; \
133 done; \
135 $(foreach hook,$($(PKG)_POST_PATCH_HOOKS),$(call $(hook))$(sep))
136 $(Q)touch $@
137 @$(call step_end,patch)
139 # Check that all directories specified in BR2_GLOBAL_PATCH_DIR exist.
140 $(foreach dir,$(call qstrip,$(BR2_GLOBAL_PATCH_DIR)),\
141 $(if $(wildcard $(dir)),,\
142 $(error BR2_GLOBAL_PATCH_DIR contains nonexistent directory $(dir))))
144 # Configure
145 $(BUILD_DIR)/%/.stamp_configured:
146 @$(call step_start,configure)
147 @$(call MESSAGE,"Configuring")
148 $(foreach hook,$($(PKG)_PRE_CONFIGURE_HOOKS),$(call $(hook))$(sep))
149 $($(PKG)_CONFIGURE_CMDS)
150 $(foreach hook,$($(PKG)_POST_CONFIGURE_HOOKS),$(call $(hook))$(sep))
151 $(Q)touch $@
152 @$(call step_end,configure)
154 # Build
155 $(BUILD_DIR)/%/.stamp_built::
156 @$(call step_start,build)
157 @$(call MESSAGE,"Building")
158 $(foreach hook,$($(PKG)_PRE_BUILD_HOOKS),$(call $(hook))$(sep))
159 +$($(PKG)_BUILD_CMDS)
160 $(foreach hook,$($(PKG)_POST_BUILD_HOOKS),$(call $(hook))$(sep))
161 $(Q)touch $@
162 @$(call step_end,build)
164 # Install to host dir
165 $(BUILD_DIR)/%/.stamp_host_installed:
166 @$(call step_start,install-host)
167 @$(call MESSAGE,"Installing to host directory")
168 $(foreach hook,$($(PKG)_PRE_INSTALL_HOOKS),$(call $(hook))$(sep))
169 +$($(PKG)_INSTALL_CMDS)
170 $(foreach hook,$($(PKG)_POST_INSTALL_HOOKS),$(call $(hook))$(sep))
171 $(Q)touch $@
172 @$(call step_end,install-host)
174 # Install to staging dir
175 $(BUILD_DIR)/%/.stamp_staging_installed:
176 @$(call step_start,install-staging)
177 @$(call MESSAGE,"Installing to staging directory")
178 $(foreach hook,$($(PKG)_PRE_INSTALL_STAGING_HOOKS),$(call $(hook))$(sep))
179 +$($(PKG)_INSTALL_STAGING_CMDS)
180 $(foreach hook,$($(PKG)_POST_INSTALL_STAGING_HOOKS),$(call $(hook))$(sep))
181 $(Q)if test -n "$($(PKG)_CONFIG_SCRIPTS)" ; then \
182 $(call MESSAGE,"Fixing package configuration files") ;\
183 $(SED) "s,$(BASE_DIR),@BASE_DIR@,g" \
184 -e "s,$(STAGING_DIR),@STAGING_DIR@,g" \
185 -e "s,^\(exec_\)\?prefix=.*,\1prefix=@STAGING_DIR@/usr,g" \
186 -e "s,-I/usr/,-I@STAGING_DIR@/usr/,g" \
187 -e "s,-L/usr/,-L@STAGING_DIR@/usr/,g" \
188 -e "s,@STAGING_DIR@,$(STAGING_DIR),g" \
189 -e "s,@BASE_DIR@,$(BASE_DIR),g" \
190 $(addprefix $(STAGING_DIR)/usr/bin/,$($(PKG)_CONFIG_SCRIPTS)) ;\
192 $(Q)touch $@
193 @$(call step_end,install-staging)
195 # Install to images dir
196 $(BUILD_DIR)/%/.stamp_images_installed:
197 @$(call step_start,install-image)
198 $(foreach hook,$($(PKG)_PRE_INSTALL_IMAGES_HOOKS),$(call $(hook))$(sep))
199 @$(call MESSAGE,"Installing to images directory")
200 +$($(PKG)_INSTALL_IMAGES_CMDS)
201 $(foreach hook,$($(PKG)_POST_INSTALL_IMAGES_HOOKS),$(call $(hook))$(sep))
202 $(Q)touch $@
203 @$(call step_end,install-image)
205 # Install to target dir
206 $(BUILD_DIR)/%/.stamp_target_installed:
207 @$(call step_start,install-target)
208 @$(call MESSAGE,"Installing to target")
209 $(foreach hook,$($(PKG)_PRE_INSTALL_TARGET_HOOKS),$(call $(hook))$(sep))
210 +$($(PKG)_INSTALL_TARGET_CMDS)
211 $(if $(BR2_INIT_SYSTEMD),\
212 $($(PKG)_INSTALL_INIT_SYSTEMD))
213 $(if $(BR2_INIT_SYSV)$(BR2_INIT_BUSYBOX),\
214 $($(PKG)_INSTALL_INIT_SYSV))
215 $(foreach hook,$($(PKG)_POST_INSTALL_TARGET_HOOKS),$(call $(hook))$(sep))
216 $(Q)if test -n "$($(PKG)_CONFIG_SCRIPTS)" ; then \
217 $(RM) -f $(addprefix $(TARGET_DIR)/usr/bin/,$($(PKG)_CONFIG_SCRIPTS)) ; \
219 $(Q)touch $@
220 @$(call step_end,install-target)
222 # Remove package sources
223 $(BUILD_DIR)/%/.stamp_dircleaned:
224 rm -Rf $(@D)
226 ################################################################################
227 # virt-provides-single -- check that provider-pkg is the declared provider for
228 # the virtual package virt-pkg
230 # argument 1 is the lower-case name of the virtual package
231 # argument 2 is the upper-case name of the virtual package
232 # argument 3 is the lower-case name of the provider
234 # example:
235 # $(call virt-provides-single,libegl,LIBEGL,rpi-userland)
236 ################################################################################
237 define virt-provides-single
238 ifneq ($$(call qstrip,$$(BR2_PACKAGE_PROVIDES_$(2))),$(3))
239 $$(error Configuration error: both "$(3)" and $$(BR2_PACKAGE_PROVIDES_$(2))\
240 are selected as providers for virtual package "$(1)". Only one provider can\
241 be selected at a time. Please fix your configuration)
242 endif
243 endef
245 ################################################################################
246 # inner-generic-package -- generates the make targets needed to build a
247 # generic package
249 # argument 1 is the lowercase package name
250 # argument 2 is the uppercase package name, including a HOST_ prefix
251 # for host packages
252 # argument 3 is the uppercase package name, without the HOST_ prefix
253 # for host packages
254 # argument 4 is the type (target or host)
256 # Note about variable and function references: inside all blocks that are
257 # evaluated with $(eval), which includes all 'inner-xxx-package' blocks,
258 # specific rules apply with respect to variable and function references.
259 # - Numbered variables (parameters to the block) can be referenced with a single
260 # dollar sign: $(1), $(2), $(3), etc.
261 # - pkgdir and pkgname should be referenced with a single dollar sign too. These
262 # functions rely on 'the most recently parsed makefile' which is supposed to
263 # be the package .mk file. If we defer the evaluation of these functions using
264 # double dollar signs, then they may be evaluated too late, when other
265 # makefiles have already been parsed. One specific case is when $$(pkgdir) is
266 # assigned to a variable using deferred evaluation with '=' and this variable
267 # is used in a target rule outside the eval'ed inner block. In this case, the
268 # pkgdir will be that of the last makefile parsed by buildroot, which is not
269 # the expected value. This mechanism is for example used for the TARGET_PATCH
270 # rule.
271 # - All other variables should be referenced with a double dollar sign:
272 # $$(TARGET_DIR), $$($(2)_VERSION), etc. Also all make functions should be
273 # referenced with a double dollar sign: $$(subst), $$(call), $$(filter-out),
274 # etc. This rule ensures that these variables and functions are only expanded
275 # during the $(eval) step, and not earlier. Otherwise, unintuitive and
276 # undesired behavior occurs with respect to these variables and functions.
278 ################################################################################
280 define inner-generic-package
282 # Define default values for various package-related variables, if not
283 # already defined. For some variables (version, source, site and
284 # subdir), if they are undefined, we try to see if a variable without
285 # the HOST_ prefix is defined. If so, we use such a variable, so that
286 # this information has only to be specified once, for both the
287 # target and host packages of a given .mk file.
289 $(2)_TYPE = $(4)
290 $(2)_NAME = $(1)
291 $(2)_RAWNAME = $$(patsubst host-%,%,$(1))
293 # Keep the package version that may contain forward slashes in the _DL_VERSION
294 # variable, then replace all forward slashes ('/') by underscores ('_') to
295 # sanitize the package version that is used in paths, directory and file names.
296 # Forward slashes may appear in the package's version when pointing to a
297 # version control system branch or tag, for example remotes/origin/1_10_stable.
298 # Similar for spaces and colons (:) that may appear in date-based revisions for
299 # CVS.
300 ifndef $(2)_VERSION
301 ifdef $(3)_DL_VERSION
302 $(2)_DL_VERSION := $$($(3)_DL_VERSION)
303 else ifdef $(3)_VERSION
304 $(2)_DL_VERSION := $$($(3)_VERSION)
305 else
306 $(2)_DL_VERSION = undefined
307 endif
308 else
309 $(2)_DL_VERSION := $$(strip $$($(2)_VERSION))
310 endif
311 $(2)_VERSION := $$(call sanitize,$$($(2)_DL_VERSION))
313 $(2)_BASE_NAME = $(1)-$$($(2)_VERSION)
314 $(2)_DL_DIR = $$(DL_DIR)/$$($(2)_BASE_NAME)
315 $(2)_DIR = $$(BUILD_DIR)/$$($(2)_BASE_NAME)
317 ifndef $(2)_SUBDIR
318 ifdef $(3)_SUBDIR
319 $(2)_SUBDIR = $$($(3)_SUBDIR)
320 else
321 $(2)_SUBDIR ?=
322 endif
323 endif
325 ifndef $(2)_STRIP_COMPONENTS
326 ifdef $(3)_STRIP_COMPONENTS
327 $(2)_STRIP_COMPONENTS = $$($(3)_STRIP_COMPONENTS)
328 else
329 $(2)_STRIP_COMPONENTS ?= 1
330 endif
331 endif
333 $(2)_SRCDIR = $$($(2)_DIR)/$$($(2)_SUBDIR)
334 $(2)_BUILDDIR ?= $$($(2)_SRCDIR)
336 ifneq ($$($(2)_OVERRIDE_SRCDIR),)
337 $(2)_VERSION = custom
338 endif
340 ifndef $(2)_SOURCE
341 ifdef $(3)_SOURCE
342 $(2)_SOURCE = $$($(3)_SOURCE)
343 else
344 $(2)_SOURCE ?= $$($(2)_RAWNAME)-$$($(2)_VERSION).tar.gz
345 endif
346 endif
348 ifndef $(2)_PATCH
349 ifdef $(3)_PATCH
350 $(2)_PATCH = $$($(3)_PATCH)
351 endif
352 endif
354 $(2)_ALL_DOWNLOADS = \
355 $$(foreach p,$$($(2)_SOURCE) $$($(2)_PATCH) $$($(2)_EXTRA_DOWNLOADS),\
356 $$(if $$(findstring ://,$$(p)),$$(p),\
357 $$($(2)_SITE:/=)/$$(p)))
359 ifndef $(2)_SITE
360 ifdef $(3)_SITE
361 $(2)_SITE = $$($(3)_SITE)
362 endif
363 endif
365 ifndef $(2)_SITE_METHOD
366 ifdef $(3)_SITE_METHOD
367 $(2)_SITE_METHOD = $$($(3)_SITE_METHOD)
368 else
369 # Try automatic detection using the scheme part of the URI
370 $(2)_SITE_METHOD = $$(call geturischeme,$$($(2)_SITE))
371 endif
372 endif
374 ifeq ($$($(2)_SITE_METHOD),local)
375 ifeq ($$($(2)_OVERRIDE_SRCDIR),)
376 $(2)_OVERRIDE_SRCDIR = $$($(2)_SITE)
377 endif
378 endif
380 ifndef $(2)_LICENSE
381 ifdef $(3)_LICENSE
382 $(2)_LICENSE = $$($(3)_LICENSE)
383 endif
384 endif
386 $(2)_LICENSE ?= unknown
388 ifndef $(2)_LICENSE_FILES
389 ifdef $(3)_LICENSE_FILES
390 $(2)_LICENSE_FILES = $$($(3)_LICENSE_FILES)
391 endif
392 endif
394 ifndef $(2)_REDISTRIBUTE
395 ifdef $(3)_REDISTRIBUTE
396 $(2)_REDISTRIBUTE = $$($(3)_REDISTRIBUTE)
397 endif
398 endif
400 $(2)_REDISTRIBUTE ?= YES
402 # When a target package is a toolchain dependency set this variable to
403 # 'NO' so the 'toolchain' dependency is not added to prevent a circular
404 # dependency
405 $(2)_ADD_TOOLCHAIN_DEPENDENCY ?= YES
407 ifeq ($(4),host)
408 $(2)_DEPENDENCIES ?= $$(filter-out host-toolchain $(1),\
409 $$(patsubst host-host-%,host-%,$$(addprefix host-,$$($(3)_DEPENDENCIES))))
410 endif
411 ifeq ($(4),target)
412 ifeq ($$($(2)_ADD_TOOLCHAIN_DEPENDENCY),YES)
413 $(2)_DEPENDENCIES += toolchain
414 endif
415 endif
417 # Eliminate duplicates in dependencies
418 $(2)_FINAL_DEPENDENCIES = $$(sort $$($(2)_DEPENDENCIES))
419 $(2)_FINAL_PATCH_DEPENDENCIES = $$(sort $$($(2)_PATCH_DEPENDENCIES))
420 $(2)_FINAL_ALL_DEPENDENCIES = $$(sort $$($(2)_FINAL_DEPENDENCIES) $$($(2)_FINAL_PATCH_DEPENDENCIES))
422 $(2)_INSTALL_STAGING ?= NO
423 $(2)_INSTALL_IMAGES ?= NO
424 $(2)_INSTALL_TARGET ?= YES
426 # define sub-target stamps
427 $(2)_TARGET_INSTALL_TARGET = $$($(2)_DIR)/.stamp_target_installed
428 $(2)_TARGET_INSTALL_STAGING = $$($(2)_DIR)/.stamp_staging_installed
429 $(2)_TARGET_INSTALL_IMAGES = $$($(2)_DIR)/.stamp_images_installed
430 $(2)_TARGET_INSTALL_HOST = $$($(2)_DIR)/.stamp_host_installed
431 $(2)_TARGET_BUILD = $$($(2)_DIR)/.stamp_built
432 $(2)_TARGET_CONFIGURE = $$($(2)_DIR)/.stamp_configured
433 $(2)_TARGET_RSYNC = $$($(2)_DIR)/.stamp_rsynced
434 $(2)_TARGET_PATCH = $$($(2)_DIR)/.stamp_patched
435 $(2)_TARGET_EXTRACT = $$($(2)_DIR)/.stamp_extracted
436 $(2)_TARGET_SOURCE = $$($(2)_DIR)/.stamp_downloaded
437 $(2)_TARGET_DIRCLEAN = $$($(2)_DIR)/.stamp_dircleaned
439 # default extract command
440 $(2)_EXTRACT_CMDS ?= \
441 $$(if $$($(2)_SOURCE),$$(INFLATE$$(suffix $$($(2)_SOURCE))) $$(DL_DIR)/$$($(2)_SOURCE) | \
442 $$(TAR) $$(TAR_STRIP_COMPONENTS)=$$($(2)_STRIP_COMPONENTS) -C $$($(2)_DIR) $$(TAR_OPTIONS) -)
444 # pre/post-steps hooks
445 $(2)_PRE_DOWNLOAD_HOOKS ?=
446 $(2)_POST_DOWNLOAD_HOOKS ?=
447 $(2)_PRE_EXTRACT_HOOKS ?=
448 $(2)_POST_EXTRACT_HOOKS ?=
449 $(2)_PRE_RSYNC_HOOKS ?=
450 $(2)_POST_RSYNC_HOOKS ?=
451 $(2)_PRE_PATCH_HOOKS ?=
452 $(2)_POST_PATCH_HOOKS ?=
453 $(2)_PRE_CONFIGURE_HOOKS ?=
454 $(2)_POST_CONFIGURE_HOOKS ?=
455 $(2)_PRE_BUILD_HOOKS ?=
456 $(2)_POST_BUILD_HOOKS ?=
457 $(2)_PRE_INSTALL_HOOKS ?=
458 $(2)_POST_INSTALL_HOOKS ?=
459 $(2)_PRE_INSTALL_STAGING_HOOKS ?=
460 $(2)_POST_INSTALL_STAGING_HOOKS ?=
461 $(2)_PRE_INSTALL_TARGET_HOOKS ?=
462 $(2)_POST_INSTALL_TARGET_HOOKS ?=
463 $(2)_PRE_INSTALL_IMAGES_HOOKS ?=
464 $(2)_POST_INSTALL_IMAGES_HOOKS ?=
465 $(2)_PRE_LEGAL_INFO_HOOKS ?=
466 $(2)_POST_LEGAL_INFO_HOOKS ?=
468 # human-friendly targets and target sequencing
469 $(1): $(1)-install
471 ifeq ($$($(2)_TYPE),host)
472 $(1)-install: $(1)-install-host
473 else
474 $(1)-install: $(1)-install-staging $(1)-install-target $(1)-install-images
475 endif
477 ifeq ($$($(2)_INSTALL_TARGET),YES)
478 $(1)-install-target: $$($(2)_TARGET_INSTALL_TARGET)
479 $$($(2)_TARGET_INSTALL_TARGET): $$($(2)_TARGET_BUILD)
480 else
481 $(1)-install-target:
482 endif
484 ifeq ($$($(2)_INSTALL_STAGING),YES)
485 $(1)-install-staging: $$($(2)_TARGET_INSTALL_STAGING)
486 $$($(2)_TARGET_INSTALL_STAGING): $$($(2)_TARGET_BUILD)
487 # Some packages use install-staging stuff for install-target
488 $$($(2)_TARGET_INSTALL_TARGET): $$($(2)_TARGET_INSTALL_STAGING)
489 else
490 $(1)-install-staging:
491 endif
493 ifeq ($$($(2)_INSTALL_IMAGES),YES)
494 $(1)-install-images: $$($(2)_TARGET_INSTALL_IMAGES)
495 $$($(2)_TARGET_INSTALL_IMAGES): $$($(2)_TARGET_BUILD)
496 else
497 $(1)-install-images:
498 endif
500 $(1)-install-host: $$($(2)_TARGET_INSTALL_HOST)
501 $$($(2)_TARGET_INSTALL_HOST): $$($(2)_TARGET_BUILD)
503 $(1)-build: $$($(2)_TARGET_BUILD)
504 $$($(2)_TARGET_BUILD): $$($(2)_TARGET_CONFIGURE)
506 # Since $(2)_FINAL_DEPENDENCIES are phony targets, they are always "newer"
507 # than $(2)_TARGET_CONFIGURE. This would force the configure step (and
508 # therefore the other steps as well) to be re-executed with every
509 # invocation of make. Therefore, make $(2)_FINAL_DEPENDENCIES an order-only
510 # dependency by using |.
512 $(1)-configure: $$($(2)_TARGET_CONFIGURE)
513 $$($(2)_TARGET_CONFIGURE): | $$($(2)_FINAL_DEPENDENCIES)
515 $$($(2)_TARGET_SOURCE) $$($(2)_TARGET_RSYNC): | dirs prepare
516 ifeq ($$(filter $(1),$$(DEPENDENCIES_HOST_PREREQ)),)
517 $$($(2)_TARGET_SOURCE) $$($(2)_TARGET_RSYNC): | dependencies
518 endif
520 ifeq ($$($(2)_OVERRIDE_SRCDIR),)
521 # In the normal case (no package override), the sequence of steps is
522 # source, by downloading
523 # depends
524 # extract
525 # patch
526 # configure
527 $$($(2)_TARGET_CONFIGURE): $$($(2)_TARGET_PATCH)
529 $(1)-patch: $$($(2)_TARGET_PATCH)
530 $$($(2)_TARGET_PATCH): $$($(2)_TARGET_EXTRACT)
531 # Order-only dependency
532 $$($(2)_TARGET_PATCH): | $$(patsubst %,%-patch,$$($(2)_FINAL_PATCH_DEPENDENCIES))
534 $(1)-extract: $$($(2)_TARGET_EXTRACT)
535 $$($(2)_TARGET_EXTRACT): $$($(2)_TARGET_SOURCE)
537 $(1)-depends: $$($(2)_FINAL_DEPENDENCIES)
539 $(1)-source: $$($(2)_TARGET_SOURCE)
541 $(1)-source-check:
542 $$(foreach p,$$($(2)_ALL_DOWNLOADS),$$(call SOURCE_CHECK,$$(p))$$(sep))
544 $(1)-external-deps:
545 @for p in $$($(2)_SOURCE) $$($(2)_PATCH) $$($(2)_EXTRA_DOWNLOADS) ; do \
546 echo `basename $$$$p` ; \
547 done
548 else
549 # In the package override case, the sequence of steps
550 # source, by rsyncing
551 # depends
552 # configure
554 # Use an order-only dependency so the "<pkg>-clean-for-rebuild" rule
555 # can remove the stamp file without triggering the configure step.
556 $$($(2)_TARGET_CONFIGURE): | $$($(2)_TARGET_RSYNC)
558 $(1)-depends: $$($(2)_FINAL_DEPENDENCIES)
560 $(1)-patch: $(1)-rsync
561 $(1)-extract: $(1)-rsync
563 $(1)-rsync: $$($(2)_TARGET_RSYNC)
565 $(1)-source:
567 $(1)-source-check:
568 test -d $$($(2)_OVERRIDE_SRCDIR)
570 $(1)-external-deps:
571 @echo "file://$$($(2)_OVERRIDE_SRCDIR)"
572 endif
574 $(1)-show-version:
575 @echo $$($(2)_VERSION)
577 $(1)-show-depends:
578 @echo $$($(2)_FINAL_ALL_DEPENDENCIES)
580 $(1)-graph-depends: graph-depends-requirements
581 @$$(INSTALL) -d $$(GRAPHS_DIR)
582 @cd "$$(CONFIG_DIR)"; \
583 $$(TOPDIR)/support/scripts/graph-depends -p $(1) $$(BR2_GRAPH_DEPS_OPTS) \
584 |tee $$(GRAPHS_DIR)/$$(@).dot \
585 |dot $$(BR2_GRAPH_DOT_OPTS) -T$$(BR_GRAPH_OUT) -o $$(GRAPHS_DIR)/$$(@).$$(BR_GRAPH_OUT)
587 $(1)-all-source: $(1)-source
588 $(1)-all-source: $$(foreach p,$$($(2)_FINAL_ALL_DEPENDENCIES),$$(p)-all-source)
590 $(1)-all-source-check: $(1)-source-check
591 $(1)-all-source-check: $$(foreach p,$$($(2)_FINAL_ALL_DEPENDENCIES),$$(p)-all-source-check)
593 $(1)-all-external-deps: $(1)-external-deps
594 $(1)-all-external-deps: $$(foreach p,$$($(2)_FINAL_ALL_DEPENDENCIES),$$(p)-all-external-deps)
596 $(1)-all-legal-info: $(1)-legal-info
597 $(1)-all-legal-info: $$(foreach p,$$($(2)_FINAL_ALL_DEPENDENCIES),$$(p)-all-legal-info)
599 $(1)-dirclean: $$($(2)_TARGET_DIRCLEAN)
601 $(1)-clean-for-reinstall:
602 ifneq ($$($(2)_OVERRIDE_SRCDIR),)
603 rm -f $$($(2)_TARGET_RSYNC)
604 endif
605 rm -f $$($(2)_TARGET_INSTALL_STAGING)
606 rm -f $$($(2)_TARGET_INSTALL_TARGET)
607 rm -f $$($(2)_TARGET_INSTALL_IMAGES)
608 rm -f $$($(2)_TARGET_INSTALL_HOST)
610 $(1)-reinstall: $(1)-clean-for-reinstall $(1)
612 $(1)-clean-for-rebuild: $(1)-clean-for-reinstall
613 rm -f $$($(2)_TARGET_BUILD)
615 $(1)-rebuild: $(1)-clean-for-rebuild $(1)
617 $(1)-clean-for-reconfigure: $(1)-clean-for-rebuild
618 rm -f $$($(2)_TARGET_CONFIGURE)
620 $(1)-reconfigure: $(1)-clean-for-reconfigure $(1)
622 # define the PKG variable for all targets, containing the
623 # uppercase package variable prefix
624 $$($(2)_TARGET_INSTALL_TARGET): PKG=$(2)
625 $$($(2)_TARGET_INSTALL_STAGING): PKG=$(2)
626 $$($(2)_TARGET_INSTALL_IMAGES): PKG=$(2)
627 $$($(2)_TARGET_INSTALL_HOST): PKG=$(2)
628 $$($(2)_TARGET_BUILD): PKG=$(2)
629 $$($(2)_TARGET_CONFIGURE): PKG=$(2)
630 $$($(2)_TARGET_RSYNC): SRCDIR=$$($(2)_OVERRIDE_SRCDIR)
631 $$($(2)_TARGET_RSYNC): PKG=$(2)
632 $$($(2)_TARGET_PATCH): PKG=$(2)
633 $$($(2)_TARGET_PATCH): RAWNAME=$$(patsubst host-%,%,$(1))
634 $$($(2)_TARGET_PATCH): PKGDIR=$(pkgdir)
635 $$($(2)_TARGET_EXTRACT): PKG=$(2)
636 $$($(2)_TARGET_SOURCE): PKG=$(2)
637 $$($(2)_TARGET_SOURCE): PKGDIR=$(pkgdir)
638 $$($(2)_TARGET_DIRCLEAN): PKG=$(2)
640 # Compute the name of the Kconfig option that correspond to the
641 # package being enabled. We handle three cases: the special Linux
642 # kernel case, the bootloaders case, and the normal packages case.
643 ifeq ($(1),linux)
644 $(2)_KCONFIG_VAR = BR2_LINUX_KERNEL
645 else ifneq ($$(filter boot/%,$(pkgdir)),)
646 $(2)_KCONFIG_VAR = BR2_TARGET_$(2)
647 else ifneq ($$(filter toolchain/%,$(pkgdir)),)
648 $(2)_KCONFIG_VAR = BR2_$(2)
649 else
650 $(2)_KCONFIG_VAR = BR2_PACKAGE_$(2)
651 endif
653 # legal-info: declare dependencies and set values used later for the manifest
654 ifneq ($$($(2)_LICENSE_FILES),)
655 $(2)_MANIFEST_LICENSE_FILES = $$($(2)_LICENSE_FILES)
656 endif
657 $(2)_MANIFEST_LICENSE_FILES ?= not saved
659 # If the package declares _LICENSE_FILES, we need to extract it,
660 # for overriden, local or normal remote packages alike, whether
661 # we want to redistribute it or not.
662 ifneq ($$($(2)_LICENSE_FILES),)
663 $(1)-legal-info: $(1)-patch
664 endif
666 # We only save the sources of packages we want to redistribute, that are
667 # non-local, and non-overriden. So only store, in the manifest, the tarball
668 # name of those packages.
669 ifeq ($$($(2)_REDISTRIBUTE),YES)
670 ifneq ($$($(2)_SITE_METHOD),local)
671 ifneq ($$($(2)_SITE_METHOD),override)
672 # Packages that have a tarball need it downloaded beforehand
673 $(1)-legal-info: $(1)-source $$(REDIST_SOURCES_DIR_$$(call UPPERCASE,$(4)))
674 $(2)_MANIFEST_TARBALL = $$($(2)_SOURCE)
675 $(2)_MANIFEST_SITE = $$(call qstrip,$$($(2)_SITE))
676 endif
677 endif
678 endif
680 # legal-info: produce legally relevant info.
681 $(1)-legal-info:
682 # Packages without a source are assumed to be part of Buildroot, skip them.
683 $$(foreach hook,$$($(2)_PRE_LEGAL_INFO_HOOKS),$$(call $$(hook))$$(sep))
684 ifneq ($$(call qstrip,$$($(2)_SOURCE)),)
686 # Save license files if defined
687 # We save the license files for any kind of package: normal, local,
688 # overridden, or non-redistributable alike.
689 # The reason to save license files even for no-redistribute packages
690 # is that the license still applies to the files distributed as part
691 # of the rootfs, even if the sources are not themselves redistributed.
692 ifeq ($$(call qstrip,$$($(2)_LICENSE_FILES)),)
693 @$$(call legal-license-nofiles,$$($(2)_RAWNAME),$$(call UPPERCASE,$(4)))
694 @$$(call legal-warning-pkg,$$($(2)_RAWNAME),cannot save license ($(2)_LICENSE_FILES not defined))
695 else
696 @$$(foreach F,$$($(2)_LICENSE_FILES),$$(call legal-license-file,$$($(2)_RAWNAME),$$(F),$$($(2)_DIR)/$$(F),$$(call UPPERCASE,$(4)))$$(sep))
697 endif # license files
699 ifeq ($$($(2)_SITE_METHOD),local)
700 # Packages without a tarball: don't save and warn
701 @$$(call legal-warning-nosource,$$($(2)_RAWNAME),local)
703 else ifneq ($$($(2)_OVERRIDE_SRCDIR),)
704 @$$(call legal-warning-nosource,$$($(2)_RAWNAME),override)
706 else
707 # Other packages
709 ifeq ($$($(2)_REDISTRIBUTE),YES)
710 # Copy the source tarball (just hardlink if possible)
711 @cp -l $$(DL_DIR)/$$($(2)_SOURCE) $$(REDIST_SOURCES_DIR_$$(call UPPERCASE,$(4))) 2>/dev/null || \
712 cp $$(DL_DIR)/$$($(2)_SOURCE) $$(REDIST_SOURCES_DIR_$$(call UPPERCASE,$(4)))
713 endif # redistribute
715 endif # other packages
716 @$$(call legal-manifest,$$($(2)_RAWNAME),$$($(2)_VERSION),$$($(2)_LICENSE),$$($(2)_MANIFEST_LICENSE_FILES),$$($(2)_MANIFEST_TARBALL),$$($(2)_MANIFEST_SITE),$$(call UPPERCASE,$(4)))
717 endif # ifneq ($$(call qstrip,$$($(2)_SOURCE)),)
718 $$(foreach hook,$$($(2)_POST_LEGAL_INFO_HOOKS),$$(call $$(hook))$$(sep))
720 # add package to the general list of targets if requested by the buildroot
721 # configuration
722 ifeq ($$($$($(2)_KCONFIG_VAR)),y)
724 # Ensure the calling package is the declared provider for all the virtual
725 # packages it claims to be an implementation of.
726 ifneq ($$($(2)_PROVIDES),)
727 $$(foreach pkg,$$($(2)_PROVIDES),\
728 $$(eval $$(call virt-provides-single,$$(pkg),$$(call UPPERCASE,$$(pkg)),$(1))$$(sep)))
729 endif
731 # Ensure unified variable name conventions between all packages Some
732 # of the variables are used by more than one infrastructure; so,
733 # rather than duplicating the checks in each infrastructure, we check
734 # all variables here in pkg-generic, even though pkg-generic should
735 # have no knowledge of infra-specific variables.
736 $(eval $(call check-deprecated-variable,$(2)_MAKE_OPT,$(2)_MAKE_OPTS))
737 $(eval $(call check-deprecated-variable,$(2)_INSTALL_OPT,$(2)_INSTALL_OPTS))
738 $(eval $(call check-deprecated-variable,$(2)_INSTALL_TARGET_OPT,$(2)_INSTALL_TARGET_OPTS))
739 $(eval $(call check-deprecated-variable,$(2)_INSTALL_STAGING_OPT,$(2)_INSTALL_STAGING_OPTS))
740 $(eval $(call check-deprecated-variable,$(2)_INSTALL_HOST_OPT,$(2)_INSTALL_HOST_OPTS))
741 $(eval $(call check-deprecated-variable,$(2)_AUTORECONF_OPT,$(2)_AUTORECONF_OPTS))
742 $(eval $(call check-deprecated-variable,$(2)_CONF_OPT,$(2)_CONF_OPTS))
743 $(eval $(call check-deprecated-variable,$(2)_BUILD_OPT,$(2)_BUILD_OPTS))
744 $(eval $(call check-deprecated-variable,$(2)_GETTEXTIZE_OPT,$(2)_GETTEXTIZE_OPTS))
745 $(eval $(call check-deprecated-variable,$(2)_KCONFIG_OPT,$(2)_KCONFIG_OPTS))
747 PACKAGES += $(1)
749 ifneq ($$($(2)_PERMISSIONS),)
750 PACKAGES_PERMISSIONS_TABLE += $$($(2)_PERMISSIONS)$$(sep)
751 endif
752 ifneq ($$($(2)_DEVICES),)
753 PACKAGES_DEVICES_TABLE += $$($(2)_DEVICES)$$(sep)
754 endif
755 ifneq ($$($(2)_USERS),)
756 PACKAGES_USERS += $$($(2)_USERS)$$(sep)
757 endif
759 ifeq ($$($(2)_SITE_METHOD),svn)
760 DL_TOOLS_DEPENDENCIES += svn
761 else ifeq ($$($(2)_SITE_METHOD),git)
762 DL_TOOLS_DEPENDENCIES += git
763 else ifeq ($$($(2)_SITE_METHOD),bzr)
764 DL_TOOLS_DEPENDENCIES += bzr
765 else ifeq ($$($(2)_SITE_METHOD),scp)
766 DL_TOOLS_DEPENDENCIES += scp ssh
767 else ifeq ($$($(2)_SITE_METHOD),hg)
768 DL_TOOLS_DEPENDENCIES += hg
769 else ifeq ($$($(2)_SITE_METHOD),cvs)
770 DL_TOOLS_DEPENDENCIES += cvs
771 endif # SITE_METHOD
773 # $(firstword) is used here because the extractor can have arguments, like
774 # ZCAT="gzip -d -c", and to check for the dependency we only want 'gzip'.
775 # Do not add xzcat to the list of required dependencies, as it gets built
776 # automatically if it isn't found.
777 ifneq ($$(call suitable-extractor,$$($(2)_SOURCE)),$$(XZCAT))
778 DL_TOOLS_DEPENDENCIES += $$(firstword $$(call suitable-extractor,$$($(2)_SOURCE)))
779 endif
781 # Ensure all virtual targets are PHONY. Listed alphabetically.
782 .PHONY: $(1) \
783 $(1)-all-external-deps \
784 $(1)-all-legal-info \
785 $(1)-all-source \
786 $(1)-all-source-check \
787 $(1)-build \
788 $(1)-clean-for-rebuild \
789 $(1)-clean-for-reconfigure \
790 $(1)-clean-for-reinstall \
791 $(1)-configure \
792 $(1)-depends \
793 $(1)-dirclean \
794 $(1)-external-deps \
795 $(1)-extract \
796 $(1)-graph-depends \
797 $(1)-install \
798 $(1)-install-host \
799 $(1)-install-images \
800 $(1)-install-staging \
801 $(1)-install-target \
802 $(1)-legal-info \
803 $(1)-patch \
804 $(1)-rebuild \
805 $(1)-reconfigure \
806 $(1)-reinstall \
807 $(1)-rsync \
808 $(1)-show-depends \
809 $(1)-show-version \
810 $(1)-source \
811 $(1)-source-check
813 endif # $(2)_KCONFIG_VAR
814 endef # inner-generic-package
816 ################################################################################
817 # generic-package -- the target generator macro for generic packages
818 ################################################################################
820 # In the case of target packages, keep the package name "pkg"
821 generic-package = $(call inner-generic-package,$(pkgname),$(call UPPERCASE,$(pkgname)),$(call UPPERCASE,$(pkgname)),target)
822 # In the case of host packages, turn the package name "pkg" into "host-pkg"
823 host-generic-package = $(call inner-generic-package,host-$(pkgname),$(call UPPERCASE,host-$(pkgname)),$(call UPPERCASE,$(pkgname)),host)
825 # :mode=makefile: