summaryrefslogtreecommitdiffstats
path: root/pym/emergehelp.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-10-27 08:05:54 +0000
committerZac Medico <zmedico@gentoo.org>2006-10-27 08:05:54 +0000
commitd105a7744b07f5d2274cbacf198115950bfed986 (patch)
treec44018b4ed6dee9d3337a799371ebb0b60d3a081 /pym/emergehelp.py
parent15c0dbd7d1ce490e2c8fa6c84358e59da3c07c73 (diff)
downloadportage-d105a7744b07f5d2274cbacf198115950bfed986.tar.gz
portage-d105a7744b07f5d2274cbacf198115950bfed986.tar.bz2
portage-d105a7744b07f5d2274cbacf198115950bfed986.zip
Add --with-bdeps to emerge --help output.
svn path=/main/trunk/; revision=4851
Diffstat (limited to 'pym/emergehelp.py')
-rw-r--r--pym/emergehelp.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/pym/emergehelp.py b/pym/emergehelp.py
index 9b1c9032a..50521ca33 100644
--- a/pym/emergehelp.py
+++ b/pym/emergehelp.py
@@ -17,6 +17,7 @@ def shorthelp():
print " "+turquoise("emerge")+" "+turquoise("--help")+" [ "+green("system")+" | "+green("world")+" | "+green("config")+" | "+green("--sync")+" ] "
print bold("Options:")+" "+green("-")+"["+green("abBcCdDefgGhikKlnNoOpqPsStuvV")+"] ["+green("--oneshot")+"] ["+green("--newuse")+"] ["+green("--noconfmem")+"]"
print " ["+green("--columns")+"] ["+green("--nocolor")+"] ["+green("--nospinner")+"]"
+ print " [ "+green("--deep")+" ] [" + green("--with-bdeps")+" < " + turquoise("y") + " | "+ turquoise("n")+" > ]"
print bold("Actions:")+" [ "+green("--clean")+" | "+green("--depclean")+" | "+green("--prune")+" | "+green("--regen")+" | "+green("--search")+" | "+green("--unmerge")+" ]"
print
@@ -313,6 +314,13 @@ def help(myaction,myopts,havecolor=1):
print " Effects vary, but the general outcome is an increased or expanded"
print " display of content in portage's displays."
print
+ print " "+green("--with-bdeps")+" < " + turquoise("y") + " | "+ turquoise("n")+" >"
+ print " In dependency calculations, pull in build time dependencies that"
+ print " are not strictly required. This defaults to 'n' for installation"
+ print " actions and 'y' for the --depclean action. This setting can be"
+ print " added to EMERGE_DEFAULT_OPTS (see make.conf(5)) and later"
+ print " overridden via the command line."
+ print
elif myaction == "sync":
print
print bold("Usage: ")+turquoise("emerge")+" "+turquoise("--sync")