4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
21 # Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved.
24 GPATCH
= /usr
/gnu
/bin
/patch
26 GPATCH_BACKUP
= --backup
--version-control
=numbered
27 GPATCH_FLAGS
= --strip=$(PATCH_LEVEL
) $(GPATCH_BACKUP
)
30 # Rules for patching source that is downloaded and unpacked or pulled from
31 # a source repository. Patches should be named
32 # patches/{patch-file-name}.patch{version} where {patch-file-name} is a
33 # meaningful name for the patch contents and {version} corresponds to the
34 # COMPONENT_NAME{version} of the source to be patched. Typically, version
35 # would be something like "_1", "_2", ... After all {version} patches have
36 # been applied, a final set of patches without a {version} suffix may be
39 # PATCH_DIR can be overridden to move patches to a different location
40 # PATCH_PATTERN can be overridden to adjust the patch naming scheme that the
42 # EXTRA_PATCHES{version} can be defined in the component Makefile to include
46 PATCH_PATTERN ?
= *.patch
*
49 # patches specific to parfait builds.
50 ifeq ($(strip $(PARFAIT_BUILD
)),yes
)
51 PARFAIT_PATCH_DIR
= parfait
54 PATCHES
= $(shell find
$(PATCH_DIR
) $(PARFAIT_PATCH_DIR
) -type f \
55 -name
'$(PATCH_PATTERN)' 2>/dev
/null | \
58 PCH_SUFFIXES
= $(patsubst .patch_
%,%, $(filter-out .patch
,$(suffix $(PATCHES
))))
63 PATCH_PATTERN
$(1) ?
= %.patch
64 PATCHES
$(1) = $(filter %.patch
,$(PATCHES
))
66 PATCH_PATTERN
$(1) ?
= %.patch
$(1)
67 PATCHES
$(1) = $(filter %.patch
$(1),$(PATCHES
))
70 ifneq ($$(PATCHES
$(1)),)
71 PATCH_STAMPS
$(1) += $$(PATCHES
$(1):$(PATCH_DIR
)/%=$$(SOURCE_DIR
$(1))/.patched-
%)
72 ifeq ($(strip $(PARFAIT_BUILD
)),yes
)
73 PATCH_STAMPS
$(1) += $$(PATCHES
$(1):$(PARFAIT_PATCH_DIR
)/%=$$(SOURCE_DIR
$(1))/.patched-
%)
76 # We should unpack the source that we patch before we patch it.
77 $$(PATCH_STAMPS
$(1):: $$(UNPACK_STAMP
$(1)) unpack
79 # Adding MAKEFILE_PREREQ because gmake seems to evaluate the need to patch
80 # before re-unpacking if the Makefile changed. The various stamps are
81 # removed as part of the unpacking process, and it doesn't appear to
82 # re-evaluate the need for patching. If we ever move the stamps to the build
83 # directory, we may not need the dependency any more.
84 $$(SOURCE_DIR
$(1))/.patched-
%: $(PATCH_DIR
)/% $(MAKEFILE_PREREQ
)
85 $(GPATCH
) -d
$$(@D
) $$(GPATCH_FLAGS
) < $$<
88 $$(SOURCE_DIR
$(1))/.patched-
%: $(PARFAIT_PATCH_DIR
)/% $(MAKEFILE_PREREQ
)
89 $(GPATCH
) -d
$$(@D
) $$(GPATCH_FLAGS
) < $$<
92 $$(SOURCE_DIR
$(1))/.patched
: $$(PATCH_STAMPS
$(1))
95 patch
:: $$(SOURCE_DIR
$(1))/.patched
97 REQUIRED_PACKAGES
+= text
/gnu-patch
103 # Define the rules required to download any source archives and augment any
106 $(foreach suffix, $(PCH_SUFFIXES
), $(eval
$(call patch-rule
,_
$(suffix))))
107 $(eval
$(call patch-rule
,)) # this must be last so we don't drop *.patch_%.