mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
273
tool/ports/mk/install.mk
Normal file
273
tool/ports/mk/install.mk
Normal file
@@ -0,0 +1,273 @@
|
||||
#
|
||||
# \brief Download and patch port of 3rd-party source code
|
||||
# \author Norman Feske
|
||||
# \date 2014-05-07
|
||||
#
|
||||
# This makefile must be invoked from the port directory.
|
||||
#
|
||||
# Arguments:
|
||||
#
|
||||
# PORT - port description file
|
||||
#
|
||||
# This makefile includes the port description file. The namespace for variables
|
||||
# is organized as follows: Variables and functions that are private to the
|
||||
# prepare_port tool are prefixed with '_'. Port description files must not
|
||||
# declare any variable with a leading '_'. Variables that interface the
|
||||
# prepare_port tool with the port description file are written uppercase. Local
|
||||
# helper variables in the port description files should be written lowercase.
|
||||
#
|
||||
|
||||
# XXX remove this line when the tool has stabilized
|
||||
STRICT_HASH ?= no
|
||||
|
||||
default:
|
||||
|
||||
# repository that contains the port description, used to look up patch files
|
||||
REP_DIR := $(realpath $(dir $(PORT))/..)
|
||||
|
||||
#
|
||||
# Check presence of argument $1. Back out with error message $2 if not defined.
|
||||
#
|
||||
_assert = $(if $(strip $1),$1,$(info Error: $(strip $2))$(error ))
|
||||
|
||||
#
|
||||
# Helper function that returns $1 if defined, otherwise it returns $2
|
||||
#
|
||||
_prefer = $(if $1,$1,$2)
|
||||
|
||||
#
|
||||
# Include definitions provided by the port description file
|
||||
#
|
||||
include $(PORT)
|
||||
|
||||
#
|
||||
# Common environment
|
||||
#
|
||||
SHELL := bash
|
||||
VERBOSE ?= @
|
||||
ECHO := echo -e
|
||||
HASHSUM := sha1sum
|
||||
|
||||
BRIGHT_COL ?= \033[01;33m
|
||||
DARK_COL ?= \033[00;33m
|
||||
DEFAULT_COL ?= \033[0m
|
||||
|
||||
MSG_PREFIX := $(ECHO) "$(DARK_COL)$(notdir $(PORT:.port=)) $(DEFAULT_COL)"
|
||||
MSG_DOWNLOAD := $(MSG_PREFIX)"download "
|
||||
MSG_APPLY := $(MSG_PREFIX)"apply "
|
||||
MSG_UPDATE := $(MSG_PREFIX)"update "
|
||||
MSG_INSTALL := $(MSG_PREFIX)"install "
|
||||
MSG_GENERATE := $(MSG_PREFIX)"generate "
|
||||
MSG_EXTRACT := $(MSG_PREFIX)"extract "
|
||||
|
||||
#
|
||||
# Assertion for the presence of a LICENSE and VERSION declarations in the port
|
||||
# description
|
||||
#
|
||||
ifeq ($(LICENSE),)
|
||||
default: license_undefined
|
||||
license_undefined:
|
||||
@$(ECHO) "Error: License undefined"; false
|
||||
endif
|
||||
|
||||
ifeq ($(VERSION),)
|
||||
default: version_undefined
|
||||
version_undefined:
|
||||
@$(ECHO) "Error: Version undefined"; false
|
||||
endif
|
||||
|
||||
|
||||
_PATCHES_IN_REP_DIR := $(foreach P,$(PATCHES),$(wildcard $(REP_DIR)/$(P)))
|
||||
|
||||
_DST_HASH_FILE := $(notdir $(PORT:.port=)).hash
|
||||
|
||||
|
||||
#
|
||||
# Default rule that triggers the actual preparation steps
|
||||
#
|
||||
default: $(DOWNLOADS) _patch $(_DST_HASH_FILE) _dirs
|
||||
|
||||
_dirs: $(DOWNLOADS)
|
||||
|
||||
|
||||
##
|
||||
## Generate the HASH file
|
||||
##
|
||||
|
||||
# The hash depends on the content of the port description file and the
|
||||
# patches originating from REP_DIR. Patches that are downloaded are already
|
||||
# captured by the hash sums of the downloaded files, which are declared in the
|
||||
# port description file.
|
||||
#
|
||||
# During development when the files of MAKEFILE_LIST often change, the
|
||||
# keeping all port hashes up to date is an inconvenience. By setting
|
||||
# STRICT_HASH to 'no', the MAKEFILE_LIST can be exluded.
|
||||
#
|
||||
|
||||
HASH_INPUT += $(_PATCHES_IN_REP_DIR) $(PORT)
|
||||
ifneq ($(STRICT_HASH),no)
|
||||
HASH_INPUT += $(MAKEFILE_LIST)
|
||||
endif
|
||||
|
||||
$(_DST_HASH_FILE): $(HASH_INPUT) $(MAKEFILE_LIST)
|
||||
@$(MSG_GENERATE)$(notdir $@)
|
||||
$(VERBOSE)cat $(HASH_INPUT) | $(HASHSUM) | sed "s/ .*//" > $@
|
||||
|
||||
_check_hash: $(_DST_HASH_FILE)
|
||||
ifneq ($(CHECK_HASH),no)
|
||||
$(VERBOSE)diff $< $(HASH_FILE) > /dev/null ||\
|
||||
($(ECHO) "Error: $(_REL_HASH_FILE) is out of date, expected" `cat $<` ""; false)
|
||||
endif
|
||||
|
||||
|
||||
##
|
||||
## Apply patches
|
||||
##
|
||||
|
||||
# default arguments for the patch command
|
||||
PATCH_OPT ?= -p0
|
||||
|
||||
#
|
||||
# Helper function to obtain options for applying a patch
|
||||
#
|
||||
_patch_opt = $(call _prefer,$(PATCH_OPT($1)),$(PATCH_OPT))
|
||||
|
||||
#
|
||||
# Helper function to look up the input file for a patch
|
||||
#
|
||||
_patch_input = $(wildcard $1 $(REP_DIR)/$1)
|
||||
|
||||
#
|
||||
# Rules for applying patches
|
||||
#
|
||||
# The 'patch' rule is a phony rule that is used as default rule. It triggers
|
||||
# all other steps such as downloading and hash-sum checks. For each patch, there
|
||||
# dependency to a phony rule.
|
||||
#
|
||||
_PATCH_TARGETS := $(addprefix phony/patches/,$(PATCHES))
|
||||
|
||||
_patch: $(_PATCH_TARGETS)
|
||||
|
||||
$(_PATCH_TARGETS): $(DOWNLOADS)
|
||||
|
||||
phony/patches/%:
|
||||
@$(MSG_APPLY)$*
|
||||
$(VERBOSE)test -f $(firstword $(call _patch_input,$*) fail) ||\
|
||||
($(ECHO) "Error: Could not find patch $*"; false)
|
||||
$(VERBOSE)for i in $(call _patch_input,$*); do\
|
||||
patch -s $(call _patch_opt,$*) < $$i; done
|
||||
|
||||
|
||||
##
|
||||
## Assemble custom directory structures within the port directory
|
||||
##
|
||||
|
||||
_DIR_TARGETS := $(addprefix phony/dirs/,$(DIRS))
|
||||
|
||||
_dirs: $(_DIR_TARGETS)
|
||||
|
||||
$(_DIR_TARGETS): _patch
|
||||
|
||||
_dir_content = $(call _assert,$(DIR_CONTENT($1)), \
|
||||
Missing declaration of DIR_CONTENT($1))
|
||||
|
||||
phony/dirs/%:
|
||||
@$(MSG_INSTALL)$*
|
||||
$(VERBOSE)mkdir -p $*
|
||||
$(VERBOSE)cp -Lrf $(call _dir_content,$*) $*
|
||||
|
||||
|
||||
##
|
||||
## Obtain source codes from a Git repository
|
||||
##
|
||||
|
||||
_git_dir = $(call _assert,$(DIR($1)),Missing declaration of DIR($*))
|
||||
|
||||
%.git:
|
||||
$(VERBOSE)test -n "$(REV($*))" ||\
|
||||
($(ECHO) "Error: Undefined revision for $*"; false);
|
||||
$(VERBOSE)test -n "$(URL($*))" ||\
|
||||
($(ECHO) "Error: Undefined URL for $*"; false);
|
||||
$(VERBOSE)dir=$(call _git_dir,$*);\
|
||||
test -d $$dir || $(MSG_DOWNLOAD)$(URL($*)); \
|
||||
test -d $$dir || git clone $(URL($*)) $$dir; \
|
||||
$(MSG_UPDATE)$$dir; \
|
||||
cd $$dir && git fetch && git reset -q --hard HEAD && git checkout -q $(REV($*))
|
||||
|
||||
|
||||
##
|
||||
## Obtain source codes from Subversion repository
|
||||
##
|
||||
|
||||
_svn_dir = $(call _assert,$(DIR($1)),Missing declaration of DIR($*))
|
||||
|
||||
%.svn:
|
||||
$(VERBOSE)test -n "$(REV($*))" ||\
|
||||
($(ECHO) "Error: Undefined revision for $*"; false);
|
||||
$(VERBOSE)test -n "$(URL($*))" ||\
|
||||
($(ECHO) "Error: Undefined URL for $*"; false);
|
||||
$(VERBOSE)dir=$(call _svn_dir,$*);\
|
||||
rm -rf $$dir; \
|
||||
$(MSG_DOWNLOAD)$(URL($*)); \
|
||||
svn export -q $(URL($*))@$(REV($*)) $$dir;
|
||||
|
||||
|
||||
##
|
||||
## Download a plain file
|
||||
##
|
||||
|
||||
_file_name = $(call _prefer,$(NAME($1)),$(notdir $(URL($1))))
|
||||
|
||||
%.file:
|
||||
$(VERBOSE)test -n "$(URL($*))" ||\
|
||||
($(ECHO) "Error: Undefined URL for $(call _file_name,$*)"; false);
|
||||
$(VERBOSE)name=$(call _file_name,$*);\
|
||||
(test -f $$name || $(MSG_DOWNLOAD)$(URL($*))); \
|
||||
(test -f $$name || wget --quiet $(URL($*)) -O $$name);
|
||||
$(VERBOSE)\
|
||||
($(ECHO) "$(SHA($*)) $(call _file_name,$*)" |\
|
||||
$(HASHSUM) -c > /dev/null 2> /dev/null) || \
|
||||
($(ECHO) Error: Hash sum check for $* failed; false)
|
||||
|
||||
|
||||
##
|
||||
## Download and unpack an archive
|
||||
##
|
||||
|
||||
_archive_name = $(call _prefer,$(NAME($1)),$(notdir $(URL($1))))
|
||||
_archive_dir = $(call _assert,$(DIR($1)),Missing definition of DIR($*) in $(PORT))
|
||||
|
||||
_tar_opt = $(call _prefer,$(TAR_OPT($1)),--strip-components=1)
|
||||
|
||||
#
|
||||
# Archive extraction functions for various archive types
|
||||
#
|
||||
_extract_function(tgz) = tar xfz $(ARCHIVE) -C $(DIR) $(call _tar_opt,$1)
|
||||
_extract_function(tar.gz) = tar xfz $(ARCHIVE) -C $(DIR) $(call _tar_opt,$1)
|
||||
_extract_function(tar.xz) = tar xfJ $(ARCHIVE) -C $(DIR) $(call _tar_opt,$1)
|
||||
_extract_function(tar.bz2) = tar xfj $(ARCHIVE) -C $(DIR) $(call _tar_opt,$1)
|
||||
_extract_function(zip) = unzip -o -q -d $(DIR) $(ARCHIVE)
|
||||
|
||||
_ARCHIVE_EXTS := tar.gz tar.xz tgz tar.bz2 zip
|
||||
|
||||
#
|
||||
# Function that returns the matching extraction function for a given archive
|
||||
#
|
||||
# Because this function refers to the 'ARCHIVE' variable, it is only supposed
|
||||
# to work from the scope of the %.archive rule.
|
||||
#
|
||||
_extract_function = $(call _assert,\
|
||||
$(foreach E,$(_ARCHIVE_EXTS),\
|
||||
$(if $(filter %.$E,$(ARCHIVE)),\
|
||||
$(_extract_function($E)),)),\
|
||||
Don't know how to extract $(ARCHIVE))
|
||||
|
||||
%.archive: ARCHIVE = $(call _archive_name,$*)
|
||||
%.archive: DIR = $(call _archive_dir,$*)
|
||||
|
||||
%.archive: %.file
|
||||
@$(MSG_EXTRACT)$(ARCHIVE)
|
||||
$(VERBOSE)\
|
||||
mkdir -p $(DIR);\
|
||||
$(call _extract_function,$*)
|
||||
|
||||
Reference in New Issue
Block a user