summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2014-05-23 19:56:25 +0200
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2014-05-23 19:56:44 +0200
commitc20a83257863f06e3b0ab2aeabcd705b82c481ab (patch)
tree6a99e066f4a6bd888013addd8594bc21325e75be
parent1340537107aef67bcecf7cfaad916b6a05769075 (diff)
downloadembtoolkit-c20a83257863f06e3b0ab2aeabcd705b82c481ab.tar.gz
embtoolkit-c20a83257863f06e3b0ab2aeabcd705b82c481ab.tar.bz2
embtoolkit-c20a83257863f06e3b0ab2aeabcd705b82c481ab.tar.xz
BUild system: also display package category when available
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
-rw-r--r--core/mk/pkg-macros/download.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/mk/pkg-macros/download.mk b/core/mk/pkg-macros/download.mk
index e2a65be..242a24d 100644
--- a/core/mk/pkg-macros/download.mk
+++ b/core/mk/pkg-macros/download.mk
@@ -78,6 +78,8 @@ define __embtk_download_pkg_from_svn
$(call embtk_echo_blue,"\tIn : $(or $(__embtk_pkg_refspec),src)")
$(call embtk_echo_blue,"\tCheckout URL : $(__embtk_pkg_svnsite)")
$(call embtk_echo_blue,"\tPatched : $(__embtk_pkg_needpatch_yesno)")
+ $(if $(__embtk_$(pkgv)_category),
+ $(call embtk_echo_blue,"\tCategory : $(__embtk_$(pkgv)_category)"))
$(call embtk_echo_blue,"\tDependency of : $(or $(__embtk_pkg_depof),N/A)")
test -e $(__embtk_pkg_localsvn) || \
$(call __embtk_svncheckout_pkg,$(1)) || \
@@ -107,6 +109,8 @@ define __embtk_download_pkg_from_git
$(call embtk_echo_blue,"\tIn : $(or $(__embtk_pkg_refspec),src)")
$(call embtk_echo_blue,"\tClone URL : $(__embtk_pkg_gitsite)")
$(call embtk_echo_blue,"\tPatched : $(__embtk_pkg_needpatch_yesno)")
+ $(if $(__embtk_$(pkgv)_category),
+ $(call embtk_echo_blue,"\tCategory : $(__embtk_$(pkgv)_category)"))
$(call embtk_echo_blue,"\tDependency of : $(or $(__embtk_pkg_depof),N/A)")
test -e $(__embtk_pkg_localgit) || $(call __embtk_gitclone_pkg,$(1))
endef
@@ -117,6 +121,8 @@ define __embtk_download_pkg_from_tarball
$(call embtk_echo_blue,"\tFrom : $(__embtk_pkg_site)")
$(call embtk_echo_blue,"\tIn : $(__embtk_pkg_package_f)")
$(call embtk_echo_blue,"\tPatched : $(__embtk_pkg_needpatch_yesno)")
+ $(if $(__embtk_$(pkgv)_category),
+ $(call embtk_echo_blue,"\tCategory : $(__embtk_$(pkgv)_category)"))
$(call embtk_echo_blue,"\tDependency of : $(or $(__embtk_pkg_depof),N/A)")
test -e $(__embtk_pkg_package_f) || \
$(call embtk_wget, \