summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--man/emerge.16
-rw-r--r--pym/_emerge/help.py8
2 files changed, 14 insertions, 0 deletions
diff --git a/man/emerge.1 b/man/emerge.1
index 29c40da08..fbf668d71 100644
--- a/man/emerge.1
+++ b/man/emerge.1
@@ -353,6 +353,12 @@ listed in the dependencies of a package. Also see \fB\-\-with\-bdeps\fR for
behavior with respect to build time dependencies that are not strictly
required.
.TP
+.BR "\-\-depclean\-lib\-check[=n]"
+Account for library link-level dependencies during
+\fB-\-depclean\fR and \fB-\-prune\fR actions. This
+option is enabled by default. In some cases this can
+be somewhat time\-consuming.
+.TP
.BR "\-\-emptytree " (\fB\-e\fR)
Reinstalls target atoms and their entire deep
dependency tree, as though no packages are currently
diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py
index fd49adeb9..fe616ca95 100644
--- a/pym/_emerge/help.py
+++ b/pym/_emerge/help.py
@@ -378,6 +378,14 @@ def help(myopts, havecolor=1):
print(" Also see --with-bdeps for behavior with respect to build time")
print(" dependencies that are not strictly required.")
print()
+ print(" " + green("--depclean-lib-check") + "[=%s]" % turquoise("n"))
+ desc = "Account for library link-level dependencies during " + \
+ "--depclean and --prune actions. This " + \
+ "option is enabled by default. In some cases this can " + \
+ "be somewhat time-consuming."
+ for line in wrap(desc, desc_width):
+ print(desc_indent + line)
+ print()
print(" "+green("--emptytree")+" ("+green("-e")+" short option)")
desc = "Reinstalls target atoms and their entire deep " + \
"dependency tree, as though no packages are currently " + \